/*
abstracts
*/
/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
base
*/
/*
buttons
*/
.wp-block-button .wp-block-button__link {
  text-transform: uppercase;
}
.wp-block-button:hover, .wp-block-button:active, .wp-block-button:focus, .wp-block-button:focus-visible {
  animation-name: pulse;
  animation-duration: 500ms;
  background-color: var(--wp--preset--color--tertiary) !important;
}
.wp-block-button:hover .wp-block-button__link, .wp-block-button:active .wp-block-button__link, .wp-block-button:focus .wp-block-button__link, .wp-block-button:focus-visible .wp-block-button__link {
  background-color: var(--wp--preset--color--tertiary);
  color: var(--wp--preset--color--white);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:active, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button.is-style-outline .wp-block-button__link:focus-visible {
  background-color: var(--wp--preset--color--primary) !important;
  color: var(--wp--preset--color--white) !important;
  border-color: var(--wp--preset--color--primary);
}
.wp-block-button.is-style-btn-secondary .wp-block-button__link {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
}
.wp-block-button.is-style-btn-secondary .wp-block-button__link:hover, .wp-block-button.is-style-btn-secondary .wp-block-button__link:active, .wp-block-button.is-style-btn-secondary .wp-block-button__link:focus, .wp-block-button.is-style-btn-secondary .wp-block-button__link:focus-visible {
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
}
.wp-block-button.is-style-btn-tertiary .wp-block-button__link {
  animation-name: pulse;
  animation-duration: 250ms;
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
}
.wp-block-button.is-style-btn-tertiary .wp-block-button__link:hover, .wp-block-button.is-style-btn-tertiary .wp-block-button__link:active, .wp-block-button.is-style-btn-tertiary .wp-block-button__link:focus, .wp-block-button.is-style-btn-tertiary .wp-block-button__link:focus-visible {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
}
.wp-block-button.is-style-btn-quaternery .wp-block-button__link {
  animation-name: pulse;
  animation-duration: 250ms;
  background-color: var(--wp--preset--color--tertiary);
  color: var(--wp--preset--color--white);
}
.wp-block-button.is-style-btn-quaternery .wp-block-button__link:hover, .wp-block-button.is-style-btn-quaternery .wp-block-button__link:active, .wp-block-button.is-style-btn-quaternery .wp-block-button__link:focus, .wp-block-button.is-style-btn-quaternery .wp-block-button__link:focus-visible {
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
}

/*
query blocks
*/
.wp-block-query .wp-block-post-title a {
  text-decoration: none;
}

/*
tables
*/
figure.wp-block-table table a {
  text-decoration: none;
  text-transform: uppercase;
}
figure.wp-block-table table thead {
  font-weight: 500;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
}
figure.wp-block-table.is-style-stripes tr:hover, figure.wp-block-table.is-style-stripes tr:active, figure.wp-block-table.is-style-stripes tr:focus, figure.wp-block-table.is-style-stripes tr:focus-visible {
  background-color: var(--wp--preset--color--primary) !important;
  color: var(--wp--preset--color--tertiary);
}
figure.wp-block-table.is-style-stripes tr td {
  padding: 2rem;
  font-weight: 500;
}

table {
  /*
  document tables
  */
}
table.document-table {
  /*
  general documents
  */
}
table.document-table.governance thead, table.document-table.scint thead, table.document-table.assays thead, table.document-table.tech-reports thead {
  display: none;
}
table.document-table.governance tbody, table.document-table.scint tbody, table.document-table.assays tbody, table.document-table.tech-reports tbody {
  border-bottom: none;
}
table.document-table.governance tbody tr, table.document-table.scint tbody tr, table.document-table.assays tbody tr, table.document-table.tech-reports tbody tr {
  background-color: var(--wp--preset--color--quaternery);
}
table.document-table.governance tbody tr:nth-child(2n), table.document-table.scint tbody tr:nth-child(2n), table.document-table.assays tbody tr:nth-child(2n), table.document-table.tech-reports tbody tr:nth-child(2n) {
  background-color: var(--wp--preset--color--white);
}
table.document-table.governance tbody tr td a:hover, table.document-table.scint tbody tr td a:hover, table.document-table.assays tbody tr td a:hover, table.document-table.tech-reports tbody tr td a:hover {
  background-color: var(--wp--preset--color--tertiary) !important;
}

/*
table tabs
*/
.block-document-table {
  overflow-x: hidden;
}
.block-document-table #table-nav div {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
  text-transform: uppercase;
  font-weight: 500;
}
.block-document-table #table-nav div[aria-selected=true] {
  background: var(--wp--preset--color--primary) !important;
  color: var(--wp--preset--color--white) !important;
}
.block-document-table #table-nav div:hover, .block-document-table #table-nav div:active, .block-document-table #table-nav div:focus, .block-document-table #table-nav div:focus-visible {
  animation: pulse;
  animation-duration: 250ms;
  background: var(--wp--preset--color--secondary) !important;
  color: var(--wp--preset--color--white) !important;
}
@media (max-width: 767px) {
  .block-document-table {
    overflow-x: scroll;
  }
}

/*
seperator
*/
hr.wp-block-separator:is(.is-style-default) {
  width: 50% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/*
tabs
*/
.pro-block.block-tabs .block-tabs__tabs .block-tabs__tab {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
  text-transform: uppercase;
  font-weight: 500;
}
.pro-block.block-tabs .block-tabs__tabs .block-tabs__tab[aria-selected=true] {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
}
.pro-block.block-tabs .block-tabs__tabs .block-tabs__tab:hover, .pro-block.block-tabs .block-tabs__tabs .block-tabs__tab:active, .pro-block.block-tabs .block-tabs__tabs .block-tabs__tab:focus, .pro-block.block-tabs .block-tabs__tabs .block-tabs__tab:focus-visible {
  animation: pulse;
  animation-duration: 250ms;
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
}

/*
select
*/
select {
  padding: 1rem;
  border: solid 0.1rem var(--wp--preset--color--primary);
}

/*
social links
*/
.wp-block-social-links .wp-social-link:nth-child(1) {
  background-color: var(--wp--preset--color--tertiary) !important;
}
.wp-block-social-links .wp-social-link:nth-child(1):hover, .wp-block-social-links .wp-social-link:nth-child(1):active, .wp-block-social-links .wp-social-link:nth-child(1):focus, .wp-block-social-links .wp-social-link:nth-child(1):focus-visible {
  background-color: var(--wp--preset--color--secondary) !important;
}
.wp-block-social-links .wp-social-link:nth-child(2) {
  background-color: var(--wp--preset--color--secondary) !important;
}
.wp-block-social-links .wp-social-link:nth-child(2):hover, .wp-block-social-links .wp-social-link:nth-child(2):active, .wp-block-social-links .wp-social-link:nth-child(2):focus, .wp-block-social-links .wp-social-link:nth-child(2):focus-visible {
  background-color: var(--wp--preset--color--tertiary) !important;
}
.wp-block-social-links .wp-social-link:nth-child(3) {
  background-color: #4ec6db !important;
}
.wp-block-social-links .wp-social-link:nth-child(3):hover, .wp-block-social-links .wp-social-link:nth-child(3):active, .wp-block-social-links .wp-social-link:nth-child(3):focus, .wp-block-social-links .wp-social-link:nth-child(3):focus-visible {
  background-color: var(--wp--preset--color--secondary) !important;
}
.wp-block-social-links .wp-social-link:nth-child(4) {
  background-color: var(--wp--preset--color--quaternery) !important;
}
.wp-block-social-links .wp-social-link:nth-child(4):hover, .wp-block-social-links .wp-social-link:nth-child(4):active, .wp-block-social-links .wp-social-link:nth-child(4):focus, .wp-block-social-links .wp-social-link:nth-child(4):focus-visible {
  background-color: var(--wp--preset--color--tertiary) !important;
}

/*
accordions
*/
.wp-block-proactive-accordion .wp-block-proactive-accordion-item {
  border-bottom: 0;
}
.wp-block-proactive-accordion .wp-block-proactive-accordion-item button .accordion-item__title,
.wp-block-proactive-accordion .wp-block-proactive-accordion-item button .accordion-item__icon {
  --accordion--icon-size: 18px;
  font-size: var(--wp--preset--font-size--normal);
  text-transform: none;
  font-weight: 500;
}
.wp-block-proactive-accordion .wp-block-proactive-accordion-item button .accordion-item__icon {
  left: 0;
}

/*
tabs
*/
.wp-block-proactive-tabs .tabs-button {
  padding: 0.8rem;
  font-size: var(--wp--preset--font-size--normal);
}

/*
file block
*/
.wp-block-file .wp-block-file__button {
  margin-left: 0;
  background-color: var(--wp--preset--color--secondary);
}
.wp-block-file .wp-block-file__button:hover, .wp-block-file .wp-block-file__button:active, .wp-block-file .wp-block-file__button:focus, .wp-block-file .wp-block-file__button:focus-visible {
  animation-name: pulse;
  animation-duration: 500ms;
  background-color: var(--wp--preset--color--tertiary) !important;
}

/*
form - subscribe / unsubscribe
*/
.gform_required_legend {
  display: none;
}

.formNewsletterSubscribe .gform_fields,
.formNewsletterUnsubscribe .gform_fields {
  grid-row-gap: 1rem !important;
}
.formNewsletterSubscribe input,
.formNewsletterUnsubscribe input {
  background-color: transparent !important;
}
.formNewsletterSubscribe button,
.formNewsletterUnsubscribe button {
  margin-top: 2rem !important;
  background-color: var(--wp--preset--color--primary) !important;
  color: var(--wp--preset--color--white) !important;
  text-transform: uppercase !important;
}
.formNewsletterSubscribe button:hover, .formNewsletterSubscribe button:active, .formNewsletterSubscribe button:focus, .formNewsletterSubscribe button:focus-visible,
.formNewsletterUnsubscribe button:hover,
.formNewsletterUnsubscribe button:active,
.formNewsletterUnsubscribe button:focus,
.formNewsletterUnsubscribe button:focus-visible {
  animation-name: pulse;
  animation-duration: 250ms;
  background-color: var(--wp--preset--color--secondary) !important;
  color: var(--wp--preset--color--white) !important;
}

/*
contact
*/
.formContact input,
.formContact textarea {
  padding: 2rem !important;
}
.formContact button {
  width: 5cm !important;
  margin-top: 2rem !important;
  background-color: var(--wp--preset--color--primary) !important;
  color: var(--wp--preset--color--white) !important;
  text-transform: uppercase !important;
}
.formContact button:hover, .formContact button:active, .formContact button:focus, .formContact button:focus-visible {
  animation-name: pulse;
  animation-duration: 250ms;
  background-color: var(--wp--preset--color--secondary) !important;
  color: var(--wp--preset--color--white) !important;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
  background-color: var(--wp--preset--color--primary) !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
  background-color: var(--wp--preset--color--secondary) !important;
  border-radius: 0px;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton:hover, #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton:active, #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton:focus, #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton:focus-visible,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton:hover,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton:active,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton:focus,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton:focus-visible {
  animation-name: pulse;
  animation-duration: 1s;
  color: #ffffff !important;
  background-color: var(--wp--preset--color--tertiary) !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.change-settings-button:hover, #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.change-settings-button:active, #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.change-settings-button:focus, #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.change-settings-button:focus-visible {
  color: var(--wp--preset--color--secondary) !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content a:hover, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content a:active, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content a:focus, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content a:focus-visible {
  color: var(--wp--preset--color--secondary) !important;
}
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected a,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected button {
  background-color: var(--wp--preset--color--primary) !important;
}
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected a span,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected button span {
  color: #ffffff !important;
}
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton:hover, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton:active, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton:focus, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton:focus-visible,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton:hover,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton:active,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton:focus,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton:focus-visible {
  border-color: var(--wp--preset--color--secondary) !important;
  background-color: var(--wp--preset--color--secondary) !important;
  color: #ffffff !important;
}
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close i:hover, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close i:active, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close i:focus, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close i:focus-visible,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close span.gdpr-icon:hover,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close span.gdpr-icon:active,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close span.gdpr-icon:focus,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close span.gdpr-icon:focus-visible {
  color: #ffffff !important;
}
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:hover i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:hover span.gdpr-icon, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:active i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:active span.gdpr-icon, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:focus i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:focus span.gdpr-icon, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:focus-visible i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:focus-visible span.gdpr-icon {
  background-color: var(--wp--preset--color--secondary) !important;
  border-color: var(--wp--preset--color--secondary) !important;
}

.wp-site-blocks {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.wp-site-blocks .wp-block-template-part {
  margin-top: 0 !important;
}
@media (max-width: 1023px) {
  .wp-site-blocks .wp-block-columns .wp-block-column:has(.sidebar) {
    order: 0;
  }
}
@media (max-width: 767px) {
  .wp-site-blocks .wp-block-columns .wp-block-column:has(.sidebar) {
    order: 1;
  }
}
.wp-site-blocks .entry-content {
  width: 100%;
}

.sidebar {
  position: sticky;
  top: 3.5rem;
  padding-left: 0;
}
@media (max-width: 767px) {
  .sidebar {
    width: 100vw;
    border: none !important;
    border-top: solid 0 var(--wp--preset--color--primary) !important;
    margin-top: 1px;
    margin-left: calc(0px - var(--wp--preset--spacing--normal));
  }
  .sidebar.aside {
    margin-bottom: var(--wp--preset--spacing--normal) !important;
  }
}
.sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 1000%;
  height: 100%;
  background-color: var(--wp--preset--color--primary);
}
.sidebar nav {
  width: 100%;
}
.sidebar ul.wp-block-archives-list, .sidebar ul.wp-block-page-list, .sidebar ul.wp-block-navigation {
  padding-left: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .sidebar ul.wp-block-archives-list, .sidebar ul.wp-block-page-list, .sidebar ul.wp-block-navigation {
    padding-left: var(--wp--preset--spacing--normal) !important;
    text-align: center;
  }
}
.sidebar ul.wp-block-archives-list li, .sidebar ul.wp-block-page-list li, .sidebar ul.wp-block-navigation li {
  width: 100% !important;
  margin-block-start: var(--wp--preset--spacing--normal) !important;
}
.sidebar ul.wp-block-archives-list li:first-child, .sidebar ul.wp-block-page-list li:first-child, .sidebar ul.wp-block-navigation li:first-child {
  margin-block-start: 0rem !important;
}
.sidebar ul.wp-block-archives-list li.current-menu-item a, .sidebar ul.wp-block-page-list li.current-menu-item a, .sidebar ul.wp-block-navigation li.current-menu-item a {
  color: var(--wp--preset--color--tertiary) !important;
}
.sidebar ul.wp-block-archives-list li button.wp-block-navigation-submenu__toggle, .sidebar ul.wp-block-page-list li button.wp-block-navigation-submenu__toggle, .sidebar ul.wp-block-navigation li button.wp-block-navigation-submenu__toggle {
  margin-left: 1rem !important;
}
.sidebar ul.wp-block-archives-list li ul.wp-block-navigation__submenu-container, .sidebar ul.wp-block-page-list li ul.wp-block-navigation__submenu-container, .sidebar ul.wp-block-navigation li ul.wp-block-navigation__submenu-container {
  width: calc(100% + 5.8rem) !important;
  padding-left: 5rem;
  padding-top: 1rem;
  padding-bottom: var(--wp--preset--spacing--normal);
  left: -4rem;
  border: none;
  background-color: var(--wp--preset--color--primary);
}
.sidebar ul.wp-block-archives-list li ul.wp-block-navigation__submenu-container li a, .sidebar ul.wp-block-page-list li ul.wp-block-navigation__submenu-container li a, .sidebar ul.wp-block-navigation li ul.wp-block-navigation__submenu-container li a {
  color: white;
}
.sidebar ul.wp-block-archives-list.wp-block-page-list ul.wp-block-navigation__submenu-container, .sidebar ul.wp-block-page-list.wp-block-page-list ul.wp-block-navigation__submenu-container, .sidebar ul.wp-block-navigation.wp-block-page-list ul.wp-block-navigation__submenu-container {
  display: none !important;
}

/*
tables
*/
/*
standard table
*/
.wp-site-blocks .entry-content div:has(table) {
  overflow: clip;
}
@media (max-width: 767px) {
  .wp-site-blocks .entry-content div:has(table) {
    overflow-x: scroll;
  }
}
.wp-site-blocks .entry-content table {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-spacing: 10px;
}
@media (max-width: 767px) {
  .wp-site-blocks .entry-content table {
    width: 200% !important;
  }
}
.wp-site-blocks .entry-content table a {
  text-decoration: none;
  text-transform: uppercase;
}
.wp-site-blocks .entry-content table thead {
  font-weight: 500;
  background-color: var(--wp--preset--color--secondary);
  color: white;
  border: solid 1px var(--wp--preset--color--secondary);
}
.wp-site-blocks .entry-content table thead th {
  border-top: none;
  border-right: none;
  border-left: none;
  text-transform: none;
  font-weight: 700;
  vertical-align: middle;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.wp-site-blocks .entry-content table tfoot {
  border: 0 !important;
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--secondary);
  font-weight: 700 !important;
}
.wp-site-blocks .entry-content table tfoot td {
  border: solid 1px var(--wp--preset--color--secondary);
}
.wp-site-blocks .entry-content table tbody tr td {
  padding: 0.2rem;
  border: solid 1px black;
  vertical-align: middle;
  white-space: nowrap;
}
.wp-site-blocks .entry-content table tbody tr td b {
  display: initial !important;
  margin: 0;
}
.wp-site-blocks .entry-content table tbody tr td:only-child {
  border: none;
  white-space: nowrap;
}
.wp-site-blocks .entry-content table tbody tr:first-child td {
  text-transform: initial;
  vertical-align: middle;
  min-width: 2rem;
}
.wp-site-blocks .entry-content table tbody tr:first-child td span.prnews_span {
  font-size: var(--wp--preset--font-size-small);
  color: inherit;
}
.wp-site-blocks .entry-content table tbody tr td span.prnews_span {
  font-size: var(--wp--preset--font-size-small);
  color: inherit;
}

/*
wordpress table block
*/
@media (max-width: 767px) {
  figure.wp-block-table {
    overflow-x: scroll;
  }
}
figure.wp-block-table.shareStructure table thead tr th:first-child {
  text-align: left;
}
figure.wp-block-table.shareStructure table thead tr th:last-child {
  text-align: right;
}
figure.wp-block-table.shareStructure table tfoot tr {
  background-color: var(--wp--preset--color--secondary);
  color: white;
}
figure.wp-block-table.shareStructure table tfoot tr td {
  font-weight: 700 !important;
  border: solid 1px black;
}
@media (max-width: 767px) {
  figure.wp-block-table table {
    width: 200% !important;
  }
}
figure.wp-block-table table a {
  text-decoration: none;
  text-transform: uppercase;
}
figure.wp-block-table table thead {
  font-weight: 500;
  background-color: var(--wp--preset--color--white);
  color: white;
}
figure.wp-block-table table thead th {
  border-top: none;
  border: solid 1px black !important;
  text-transform: uppercase;
  font-weight: 700;
  vertical-align: middle;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
figure.wp-block-table table tfoot {
  border: none !important;
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
}
figure.wp-block-table table tr td {
  border-left: initial;
  border-right: initial;
  border-bottom-color: var(--wp--preset--color--secondary);
  vertical-align: middle;
}
figure.wp-block-table table tr:first-child td {
  text-transform: initial;
  vertical-align: middle;
  min-width: 2rem;
}
figure.wp-block-table table tr:first-child td span.prnews_span {
  font-size: var(--wp--preset--font-size-small);
  color: inherit;
}
figure.wp-block-table table tr td span.prnews_span {
  font-size: var(--wp--preset--font-size-small);
  color: inherit;
}
figure.wp-block-table.is-style-stripes tr:hover, figure.wp-block-table.is-style-stripes tr:active, figure.wp-block-table.is-style-stripes tr:focus, figure.wp-block-table.is-style-stripes tr:focus-visible {
  background-color: var(--wp--preset--color--primary) !important;
  color: var(--wp--preset--color--tertiary);
}
figure.wp-block-table.is-style-stripes tr td {
  padding: 2rem;
  font-weight: 500;
}
figure.wp-block-table.is-style-first-col-styled tbody tr td:first-child {
  font-weight: 700;
  color: white !important;
  background-color: var(--wp--preset--color--secondary);
  border: solid 1px white !important;
}
figure.wp-block-table.keyFacts thead tr th {
  border-right: 0 !important;
  border-left: 0 !important;
  text-align: left !important;
}
figure.wp-block-table.keyFacts tbody tr td {
  border: solid 1px var(--wp--preset--color--black);
}

/*
document tables
*/
table {
  font-size: smaller;
}
table th,
table td {
  white-space: nowrap;
}
table.document-table {
  /*
  general documents
  */
}
table.document-table.financials, table.document-table.governance, table.document-table.scint, table.document-table.assays, table.document-table.tech-reports, table.document-table.drill-results, table.document-table.technical-reports, table.document-table.pfic, table.document-table.estma, table.document-table.agm, table.document-table.corporate-governance-policies, table.document-table.board-of-director-mandate-and-committees-charters, table.document-table.role-descriptions, table.document-table.sustainability-reports, table.document-table.supplemental-data-tables, table.document-table.florida-canyon, table.document-table.delamar, table.document-table.nevada-north, table.document-table.form-8937, table.document-table.resources-reserves, table.document-table.modern-slavery-report {
  border: none;
  margin-top: 0;
  margin-bottom: 0;
}
table.document-table.financials th,
table.document-table.financials td, table.document-table.governance th,
table.document-table.governance td, table.document-table.scint th,
table.document-table.scint td, table.document-table.assays th,
table.document-table.assays td, table.document-table.tech-reports th,
table.document-table.tech-reports td, table.document-table.drill-results th,
table.document-table.drill-results td, table.document-table.technical-reports th,
table.document-table.technical-reports td, table.document-table.pfic th,
table.document-table.pfic td, table.document-table.estma th,
table.document-table.estma td, table.document-table.agm th,
table.document-table.agm td, table.document-table.corporate-governance-policies th,
table.document-table.corporate-governance-policies td, table.document-table.board-of-director-mandate-and-committees-charters th,
table.document-table.board-of-director-mandate-and-committees-charters td, table.document-table.role-descriptions th,
table.document-table.role-descriptions td, table.document-table.sustainability-reports th,
table.document-table.sustainability-reports td, table.document-table.supplemental-data-tables th,
table.document-table.supplemental-data-tables td, table.document-table.florida-canyon th,
table.document-table.florida-canyon td, table.document-table.delamar th,
table.document-table.delamar td, table.document-table.nevada-north th,
table.document-table.nevada-north td, table.document-table.form-8937 th,
table.document-table.form-8937 td, table.document-table.resources-reserves th,
table.document-table.resources-reserves td, table.document-table.modern-slavery-report th,
table.document-table.modern-slavery-report td {
  border: none;
}
table.document-table.financials th a,
table.document-table.financials td a, table.document-table.governance th a,
table.document-table.governance td a, table.document-table.scint th a,
table.document-table.scint td a, table.document-table.assays th a,
table.document-table.assays td a, table.document-table.tech-reports th a,
table.document-table.tech-reports td a, table.document-table.drill-results th a,
table.document-table.drill-results td a, table.document-table.technical-reports th a,
table.document-table.technical-reports td a, table.document-table.pfic th a,
table.document-table.pfic td a, table.document-table.estma th a,
table.document-table.estma td a, table.document-table.agm th a,
table.document-table.agm td a, table.document-table.corporate-governance-policies th a,
table.document-table.corporate-governance-policies td a, table.document-table.board-of-director-mandate-and-committees-charters th a,
table.document-table.board-of-director-mandate-and-committees-charters td a, table.document-table.role-descriptions th a,
table.document-table.role-descriptions td a, table.document-table.sustainability-reports th a,
table.document-table.sustainability-reports td a, table.document-table.supplemental-data-tables th a,
table.document-table.supplemental-data-tables td a, table.document-table.florida-canyon th a,
table.document-table.florida-canyon td a, table.document-table.delamar th a,
table.document-table.delamar td a, table.document-table.nevada-north th a,
table.document-table.nevada-north td a, table.document-table.form-8937 th a,
table.document-table.form-8937 td a, table.document-table.resources-reserves th a,
table.document-table.resources-reserves td a, table.document-table.modern-slavery-report th a,
table.document-table.modern-slavery-report td a {
  text-decoration: none;
  text-transform: initial;
}
table.document-table.financials thead, table.document-table.governance thead, table.document-table.scint thead, table.document-table.assays thead, table.document-table.tech-reports thead, table.document-table.drill-results thead, table.document-table.technical-reports thead, table.document-table.pfic thead, table.document-table.estma thead, table.document-table.agm thead, table.document-table.corporate-governance-policies thead, table.document-table.board-of-director-mandate-and-committees-charters thead, table.document-table.role-descriptions thead, table.document-table.sustainability-reports thead, table.document-table.supplemental-data-tables thead, table.document-table.florida-canyon thead, table.document-table.delamar thead, table.document-table.nevada-north thead, table.document-table.form-8937 thead, table.document-table.resources-reserves thead, table.document-table.modern-slavery-report thead {
  display: none;
}
table.document-table.financials tbody, table.document-table.governance tbody, table.document-table.scint tbody, table.document-table.assays tbody, table.document-table.tech-reports tbody, table.document-table.drill-results tbody, table.document-table.technical-reports tbody, table.document-table.pfic tbody, table.document-table.estma tbody, table.document-table.agm tbody, table.document-table.corporate-governance-policies tbody, table.document-table.board-of-director-mandate-and-committees-charters tbody, table.document-table.role-descriptions tbody, table.document-table.sustainability-reports tbody, table.document-table.supplemental-data-tables tbody, table.document-table.florida-canyon tbody, table.document-table.delamar tbody, table.document-table.nevada-north tbody, table.document-table.form-8937 tbody, table.document-table.resources-reserves tbody, table.document-table.modern-slavery-report tbody {
  border-bottom: none;
}
table.document-table.financials tbody tr, table.document-table.governance tbody tr, table.document-table.scint tbody tr, table.document-table.assays tbody tr, table.document-table.tech-reports tbody tr, table.document-table.drill-results tbody tr, table.document-table.technical-reports tbody tr, table.document-table.pfic tbody tr, table.document-table.estma tbody tr, table.document-table.agm tbody tr, table.document-table.corporate-governance-policies tbody tr, table.document-table.board-of-director-mandate-and-committees-charters tbody tr, table.document-table.role-descriptions tbody tr, table.document-table.sustainability-reports tbody tr, table.document-table.supplemental-data-tables tbody tr, table.document-table.florida-canyon tbody tr, table.document-table.delamar tbody tr, table.document-table.nevada-north tbody tr, table.document-table.form-8937 tbody tr, table.document-table.resources-reserves tbody tr, table.document-table.modern-slavery-report tbody tr {
  background-color: #f7f7f7;
}
table.document-table.financials tbody tr:nth-child(2n), table.document-table.governance tbody tr:nth-child(2n), table.document-table.scint tbody tr:nth-child(2n), table.document-table.assays tbody tr:nth-child(2n), table.document-table.tech-reports tbody tr:nth-child(2n), table.document-table.drill-results tbody tr:nth-child(2n), table.document-table.technical-reports tbody tr:nth-child(2n), table.document-table.pfic tbody tr:nth-child(2n), table.document-table.estma tbody tr:nth-child(2n), table.document-table.agm tbody tr:nth-child(2n), table.document-table.corporate-governance-policies tbody tr:nth-child(2n), table.document-table.board-of-director-mandate-and-committees-charters tbody tr:nth-child(2n), table.document-table.role-descriptions tbody tr:nth-child(2n), table.document-table.sustainability-reports tbody tr:nth-child(2n), table.document-table.supplemental-data-tables tbody tr:nth-child(2n), table.document-table.florida-canyon tbody tr:nth-child(2n), table.document-table.delamar tbody tr:nth-child(2n), table.document-table.nevada-north tbody tr:nth-child(2n), table.document-table.form-8937 tbody tr:nth-child(2n), table.document-table.resources-reserves tbody tr:nth-child(2n), table.document-table.modern-slavery-report tbody tr:nth-child(2n) {
  background-color: var(--wp--preset--color--white);
}
table.document-table.financials tbody tr td, table.document-table.governance tbody tr td, table.document-table.scint tbody tr td, table.document-table.assays tbody tr td, table.document-table.tech-reports tbody tr td, table.document-table.drill-results tbody tr td, table.document-table.technical-reports tbody tr td, table.document-table.pfic tbody tr td, table.document-table.estma tbody tr td, table.document-table.agm tbody tr td, table.document-table.corporate-governance-policies tbody tr td, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td, table.document-table.role-descriptions tbody tr td, table.document-table.sustainability-reports tbody tr td, table.document-table.supplemental-data-tables tbody tr td, table.document-table.florida-canyon tbody tr td, table.document-table.delamar tbody tr td, table.document-table.nevada-north tbody tr td, table.document-table.form-8937 tbody tr td, table.document-table.resources-reserves tbody tr td, table.document-table.modern-slavery-report tbody tr td {
  padding: 0.8rem;
  border: none;
  text-transform: initial !important;
  vertical-align: middle;
}
table.document-table.financials tbody tr td a:hover, table.document-table.financials tbody tr td a:active, table.document-table.financials tbody tr td a:focus, table.document-table.financials tbody tr td a:focus-visible, table.document-table.governance tbody tr td a:hover, table.document-table.governance tbody tr td a:active, table.document-table.governance tbody tr td a:focus, table.document-table.governance tbody tr td a:focus-visible, table.document-table.scint tbody tr td a:hover, table.document-table.scint tbody tr td a:active, table.document-table.scint tbody tr td a:focus, table.document-table.scint tbody tr td a:focus-visible, table.document-table.assays tbody tr td a:hover, table.document-table.assays tbody tr td a:active, table.document-table.assays tbody tr td a:focus, table.document-table.assays tbody tr td a:focus-visible, table.document-table.tech-reports tbody tr td a:hover, table.document-table.tech-reports tbody tr td a:active, table.document-table.tech-reports tbody tr td a:focus, table.document-table.tech-reports tbody tr td a:focus-visible, table.document-table.drill-results tbody tr td a:hover, table.document-table.drill-results tbody tr td a:active, table.document-table.drill-results tbody tr td a:focus, table.document-table.drill-results tbody tr td a:focus-visible, table.document-table.technical-reports tbody tr td a:hover, table.document-table.technical-reports tbody tr td a:active, table.document-table.technical-reports tbody tr td a:focus, table.document-table.technical-reports tbody tr td a:focus-visible, table.document-table.pfic tbody tr td a:hover, table.document-table.pfic tbody tr td a:active, table.document-table.pfic tbody tr td a:focus, table.document-table.pfic tbody tr td a:focus-visible, table.document-table.estma tbody tr td a:hover, table.document-table.estma tbody tr td a:active, table.document-table.estma tbody tr td a:focus, table.document-table.estma tbody tr td a:focus-visible, table.document-table.agm tbody tr td a:hover, table.document-table.agm tbody tr td a:active, table.document-table.agm tbody tr td a:focus, table.document-table.agm tbody tr td a:focus-visible, table.document-table.corporate-governance-policies tbody tr td a:hover, table.document-table.corporate-governance-policies tbody tr td a:active, table.document-table.corporate-governance-policies tbody tr td a:focus, table.document-table.corporate-governance-policies tbody tr td a:focus-visible, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td a:hover, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td a:active, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td a:focus, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td a:focus-visible, table.document-table.role-descriptions tbody tr td a:hover, table.document-table.role-descriptions tbody tr td a:active, table.document-table.role-descriptions tbody tr td a:focus, table.document-table.role-descriptions tbody tr td a:focus-visible, table.document-table.sustainability-reports tbody tr td a:hover, table.document-table.sustainability-reports tbody tr td a:active, table.document-table.sustainability-reports tbody tr td a:focus, table.document-table.sustainability-reports tbody tr td a:focus-visible, table.document-table.supplemental-data-tables tbody tr td a:hover, table.document-table.supplemental-data-tables tbody tr td a:active, table.document-table.supplemental-data-tables tbody tr td a:focus, table.document-table.supplemental-data-tables tbody tr td a:focus-visible, table.document-table.florida-canyon tbody tr td a:hover, table.document-table.florida-canyon tbody tr td a:active, table.document-table.florida-canyon tbody tr td a:focus, table.document-table.florida-canyon tbody tr td a:focus-visible, table.document-table.delamar tbody tr td a:hover, table.document-table.delamar tbody tr td a:active, table.document-table.delamar tbody tr td a:focus, table.document-table.delamar tbody tr td a:focus-visible, table.document-table.nevada-north tbody tr td a:hover, table.document-table.nevada-north tbody tr td a:active, table.document-table.nevada-north tbody tr td a:focus, table.document-table.nevada-north tbody tr td a:focus-visible, table.document-table.form-8937 tbody tr td a:hover, table.document-table.form-8937 tbody tr td a:active, table.document-table.form-8937 tbody tr td a:focus, table.document-table.form-8937 tbody tr td a:focus-visible, table.document-table.resources-reserves tbody tr td a:hover, table.document-table.resources-reserves tbody tr td a:active, table.document-table.resources-reserves tbody tr td a:focus, table.document-table.resources-reserves tbody tr td a:focus-visible, table.document-table.modern-slavery-report tbody tr td a:hover, table.document-table.modern-slavery-report tbody tr td a:active, table.document-table.modern-slavery-report tbody tr td a:focus, table.document-table.modern-slavery-report tbody tr td a:focus-visible {
  color: var(--wp--preset--color--secondary);
  background-color: transparent !important;
}
table.document-table.financials tbody tr td.file_name, table.document-table.governance tbody tr td.file_name, table.document-table.scint tbody tr td.file_name, table.document-table.assays tbody tr td.file_name, table.document-table.tech-reports tbody tr td.file_name, table.document-table.drill-results tbody tr td.file_name, table.document-table.technical-reports tbody tr td.file_name, table.document-table.pfic tbody tr td.file_name, table.document-table.estma tbody tr td.file_name, table.document-table.agm tbody tr td.file_name, table.document-table.corporate-governance-policies tbody tr td.file_name, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td.file_name, table.document-table.role-descriptions tbody tr td.file_name, table.document-table.sustainability-reports tbody tr td.file_name, table.document-table.supplemental-data-tables tbody tr td.file_name, table.document-table.florida-canyon tbody tr td.file_name, table.document-table.delamar tbody tr td.file_name, table.document-table.nevada-north tbody tr td.file_name, table.document-table.form-8937 tbody tr td.file_name, table.document-table.resources-reserves tbody tr td.file_name, table.document-table.modern-slavery-report tbody tr td.file_name {
  width: 100% !important;
  max-width: 500px;
  text-overflow: ellipsis;
  overflow: clip;
}
table.document-table.financials tbody tr td.file_name a, table.document-table.governance tbody tr td.file_name a, table.document-table.scint tbody tr td.file_name a, table.document-table.assays tbody tr td.file_name a, table.document-table.tech-reports tbody tr td.file_name a, table.document-table.drill-results tbody tr td.file_name a, table.document-table.technical-reports tbody tr td.file_name a, table.document-table.pfic tbody tr td.file_name a, table.document-table.estma tbody tr td.file_name a, table.document-table.agm tbody tr td.file_name a, table.document-table.corporate-governance-policies tbody tr td.file_name a, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td.file_name a, table.document-table.role-descriptions tbody tr td.file_name a, table.document-table.sustainability-reports tbody tr td.file_name a, table.document-table.supplemental-data-tables tbody tr td.file_name a, table.document-table.florida-canyon tbody tr td.file_name a, table.document-table.delamar tbody tr td.file_name a, table.document-table.nevada-north tbody tr td.file_name a, table.document-table.form-8937 tbody tr td.file_name a, table.document-table.resources-reserves tbody tr td.file_name a, table.document-table.modern-slavery-report tbody tr td.file_name a {
  text-overflow: ellipsis;
  overflow: clip;
}
table.document-table.financials tbody tr td.download, table.document-table.governance tbody tr td.download, table.document-table.scint tbody tr td.download, table.document-table.assays tbody tr td.download, table.document-table.tech-reports tbody tr td.download, table.document-table.drill-results tbody tr td.download, table.document-table.technical-reports tbody tr td.download, table.document-table.pfic tbody tr td.download, table.document-table.estma tbody tr td.download, table.document-table.agm tbody tr td.download, table.document-table.corporate-governance-policies tbody tr td.download, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td.download, table.document-table.role-descriptions tbody tr td.download, table.document-table.sustainability-reports tbody tr td.download, table.document-table.supplemental-data-tables tbody tr td.download, table.document-table.florida-canyon tbody tr td.download, table.document-table.delamar tbody tr td.download, table.document-table.nevada-north tbody tr td.download, table.document-table.form-8937 tbody tr td.download, table.document-table.resources-reserves tbody tr td.download, table.document-table.modern-slavery-report tbody tr td.download {
  width: 100% !important;
}
table.document-table.financials tbody tr td.download > a:hover, table.document-table.financials tbody tr td.download > a:active, table.document-table.financials tbody tr td.download > a:focus, table.document-table.financials tbody tr td.download > a:focus-visible, table.document-table.governance tbody tr td.download > a:hover, table.document-table.governance tbody tr td.download > a:active, table.document-table.governance tbody tr td.download > a:focus, table.document-table.governance tbody tr td.download > a:focus-visible, table.document-table.scint tbody tr td.download > a:hover, table.document-table.scint tbody tr td.download > a:active, table.document-table.scint tbody tr td.download > a:focus, table.document-table.scint tbody tr td.download > a:focus-visible, table.document-table.assays tbody tr td.download > a:hover, table.document-table.assays tbody tr td.download > a:active, table.document-table.assays tbody tr td.download > a:focus, table.document-table.assays tbody tr td.download > a:focus-visible, table.document-table.tech-reports tbody tr td.download > a:hover, table.document-table.tech-reports tbody tr td.download > a:active, table.document-table.tech-reports tbody tr td.download > a:focus, table.document-table.tech-reports tbody tr td.download > a:focus-visible, table.document-table.drill-results tbody tr td.download > a:hover, table.document-table.drill-results tbody tr td.download > a:active, table.document-table.drill-results tbody tr td.download > a:focus, table.document-table.drill-results tbody tr td.download > a:focus-visible, table.document-table.technical-reports tbody tr td.download > a:hover, table.document-table.technical-reports tbody tr td.download > a:active, table.document-table.technical-reports tbody tr td.download > a:focus, table.document-table.technical-reports tbody tr td.download > a:focus-visible, table.document-table.pfic tbody tr td.download > a:hover, table.document-table.pfic tbody tr td.download > a:active, table.document-table.pfic tbody tr td.download > a:focus, table.document-table.pfic tbody tr td.download > a:focus-visible, table.document-table.estma tbody tr td.download > a:hover, table.document-table.estma tbody tr td.download > a:active, table.document-table.estma tbody tr td.download > a:focus, table.document-table.estma tbody tr td.download > a:focus-visible, table.document-table.agm tbody tr td.download > a:hover, table.document-table.agm tbody tr td.download > a:active, table.document-table.agm tbody tr td.download > a:focus, table.document-table.agm tbody tr td.download > a:focus-visible, table.document-table.corporate-governance-policies tbody tr td.download > a:hover, table.document-table.corporate-governance-policies tbody tr td.download > a:active, table.document-table.corporate-governance-policies tbody tr td.download > a:focus, table.document-table.corporate-governance-policies tbody tr td.download > a:focus-visible, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td.download > a:hover, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td.download > a:active, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td.download > a:focus, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td.download > a:focus-visible, table.document-table.role-descriptions tbody tr td.download > a:hover, table.document-table.role-descriptions tbody tr td.download > a:active, table.document-table.role-descriptions tbody tr td.download > a:focus, table.document-table.role-descriptions tbody tr td.download > a:focus-visible, table.document-table.sustainability-reports tbody tr td.download > a:hover, table.document-table.sustainability-reports tbody tr td.download > a:active, table.document-table.sustainability-reports tbody tr td.download > a:focus, table.document-table.sustainability-reports tbody tr td.download > a:focus-visible, table.document-table.supplemental-data-tables tbody tr td.download > a:hover, table.document-table.supplemental-data-tables tbody tr td.download > a:active, table.document-table.supplemental-data-tables tbody tr td.download > a:focus, table.document-table.supplemental-data-tables tbody tr td.download > a:focus-visible, table.document-table.florida-canyon tbody tr td.download > a:hover, table.document-table.florida-canyon tbody tr td.download > a:active, table.document-table.florida-canyon tbody tr td.download > a:focus, table.document-table.florida-canyon tbody tr td.download > a:focus-visible, table.document-table.delamar tbody tr td.download > a:hover, table.document-table.delamar tbody tr td.download > a:active, table.document-table.delamar tbody tr td.download > a:focus, table.document-table.delamar tbody tr td.download > a:focus-visible, table.document-table.nevada-north tbody tr td.download > a:hover, table.document-table.nevada-north tbody tr td.download > a:active, table.document-table.nevada-north tbody tr td.download > a:focus, table.document-table.nevada-north tbody tr td.download > a:focus-visible, table.document-table.form-8937 tbody tr td.download > a:hover, table.document-table.form-8937 tbody tr td.download > a:active, table.document-table.form-8937 tbody tr td.download > a:focus, table.document-table.form-8937 tbody tr td.download > a:focus-visible, table.document-table.resources-reserves tbody tr td.download > a:hover, table.document-table.resources-reserves tbody tr td.download > a:active, table.document-table.resources-reserves tbody tr td.download > a:focus, table.document-table.resources-reserves tbody tr td.download > a:focus-visible, table.document-table.modern-slavery-report tbody tr td.download > a:hover, table.document-table.modern-slavery-report tbody tr td.download > a:active, table.document-table.modern-slavery-report tbody tr td.download > a:focus, table.document-table.modern-slavery-report tbody tr td.download > a:focus-visible {
  color: var(--wp--preset--color--secondary);
  background-color: transparent !important;
}
table.document-table.financials tbody tr td.download > a:hover svg, table.document-table.financials tbody tr td.download > a:active svg, table.document-table.financials tbody tr td.download > a:focus svg, table.document-table.financials tbody tr td.download > a:focus-visible svg, table.document-table.governance tbody tr td.download > a:hover svg, table.document-table.governance tbody tr td.download > a:active svg, table.document-table.governance tbody tr td.download > a:focus svg, table.document-table.governance tbody tr td.download > a:focus-visible svg, table.document-table.scint tbody tr td.download > a:hover svg, table.document-table.scint tbody tr td.download > a:active svg, table.document-table.scint tbody tr td.download > a:focus svg, table.document-table.scint tbody tr td.download > a:focus-visible svg, table.document-table.assays tbody tr td.download > a:hover svg, table.document-table.assays tbody tr td.download > a:active svg, table.document-table.assays tbody tr td.download > a:focus svg, table.document-table.assays tbody tr td.download > a:focus-visible svg, table.document-table.tech-reports tbody tr td.download > a:hover svg, table.document-table.tech-reports tbody tr td.download > a:active svg, table.document-table.tech-reports tbody tr td.download > a:focus svg, table.document-table.tech-reports tbody tr td.download > a:focus-visible svg, table.document-table.drill-results tbody tr td.download > a:hover svg, table.document-table.drill-results tbody tr td.download > a:active svg, table.document-table.drill-results tbody tr td.download > a:focus svg, table.document-table.drill-results tbody tr td.download > a:focus-visible svg, table.document-table.technical-reports tbody tr td.download > a:hover svg, table.document-table.technical-reports tbody tr td.download > a:active svg, table.document-table.technical-reports tbody tr td.download > a:focus svg, table.document-table.technical-reports tbody tr td.download > a:focus-visible svg, table.document-table.pfic tbody tr td.download > a:hover svg, table.document-table.pfic tbody tr td.download > a:active svg, table.document-table.pfic tbody tr td.download > a:focus svg, table.document-table.pfic tbody tr td.download > a:focus-visible svg, table.document-table.estma tbody tr td.download > a:hover svg, table.document-table.estma tbody tr td.download > a:active svg, table.document-table.estma tbody tr td.download > a:focus svg, table.document-table.estma tbody tr td.download > a:focus-visible svg, table.document-table.agm tbody tr td.download > a:hover svg, table.document-table.agm tbody tr td.download > a:active svg, table.document-table.agm tbody tr td.download > a:focus svg, table.document-table.agm tbody tr td.download > a:focus-visible svg, table.document-table.corporate-governance-policies tbody tr td.download > a:hover svg, table.document-table.corporate-governance-policies tbody tr td.download > a:active svg, table.document-table.corporate-governance-policies tbody tr td.download > a:focus svg, table.document-table.corporate-governance-policies tbody tr td.download > a:focus-visible svg, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td.download > a:hover svg, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td.download > a:active svg, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td.download > a:focus svg, table.document-table.board-of-director-mandate-and-committees-charters tbody tr td.download > a:focus-visible svg, table.document-table.role-descriptions tbody tr td.download > a:hover svg, table.document-table.role-descriptions tbody tr td.download > a:active svg, table.document-table.role-descriptions tbody tr td.download > a:focus svg, table.document-table.role-descriptions tbody tr td.download > a:focus-visible svg, table.document-table.sustainability-reports tbody tr td.download > a:hover svg, table.document-table.sustainability-reports tbody tr td.download > a:active svg, table.document-table.sustainability-reports tbody tr td.download > a:focus svg, table.document-table.sustainability-reports tbody tr td.download > a:focus-visible svg, table.document-table.supplemental-data-tables tbody tr td.download > a:hover svg, table.document-table.supplemental-data-tables tbody tr td.download > a:active svg, table.document-table.supplemental-data-tables tbody tr td.download > a:focus svg, table.document-table.supplemental-data-tables tbody tr td.download > a:focus-visible svg, table.document-table.florida-canyon tbody tr td.download > a:hover svg, table.document-table.florida-canyon tbody tr td.download > a:active svg, table.document-table.florida-canyon tbody tr td.download > a:focus svg, table.document-table.florida-canyon tbody tr td.download > a:focus-visible svg, table.document-table.delamar tbody tr td.download > a:hover svg, table.document-table.delamar tbody tr td.download > a:active svg, table.document-table.delamar tbody tr td.download > a:focus svg, table.document-table.delamar tbody tr td.download > a:focus-visible svg, table.document-table.nevada-north tbody tr td.download > a:hover svg, table.document-table.nevada-north tbody tr td.download > a:active svg, table.document-table.nevada-north tbody tr td.download > a:focus svg, table.document-table.nevada-north tbody tr td.download > a:focus-visible svg, table.document-table.form-8937 tbody tr td.download > a:hover svg, table.document-table.form-8937 tbody tr td.download > a:active svg, table.document-table.form-8937 tbody tr td.download > a:focus svg, table.document-table.form-8937 tbody tr td.download > a:focus-visible svg, table.document-table.resources-reserves tbody tr td.download > a:hover svg, table.document-table.resources-reserves tbody tr td.download > a:active svg, table.document-table.resources-reserves tbody tr td.download > a:focus svg, table.document-table.resources-reserves tbody tr td.download > a:focus-visible svg, table.document-table.modern-slavery-report tbody tr td.download > a:hover svg, table.document-table.modern-slavery-report tbody tr td.download > a:active svg, table.document-table.modern-slavery-report tbody tr td.download > a:focus svg, table.document-table.modern-slavery-report tbody tr td.download > a:focus-visible svg {
  fill: var(--wp--preset--color--secondary);
}

/*
table tabs
*/
.block-document-table #table-nav div {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--secondary);
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 500;
}
.block-document-table #table-nav div[aria-selected=true] {
  background: var(--wp--preset--color--secondary) !important;
  color: var(--wp--preset--color--white) !important;
}
.block-document-table #table-nav div:hover, .block-document-table #table-nav div:active, .block-document-table #table-nav div:focus, .block-document-table #table-nav div:focus-visible {
  animation: pulse;
  animation-duration: 250ms;
  background: var(--wp--preset--color--primary) !important;
  color: var(--wp--preset--color--white) !important;
}
@media (max-width: 767px) {
  .block-document-table {
    overflow-x: scroll;
  }
}

.page strong,
.blog strong,
.archive strong,
.single strong,
.category strong,
.tag strong {
  font-weight: 700;
}
.page em,
.blog em,
.archive em,
.single em,
.category em,
.tag em {
  font-style: italic;
}
.page s,
.blog s,
.archive s,
.single s,
.category s,
.tag s {
  text-decoration: line-through;
}
.page sub,
.blog sub,
.archive sub,
.single sub,
.category sub,
.tag sub {
  vertical-align: sub;
  font-size: smaller;
}
.page sup,
.blog sup,
.archive sup,
.single sup,
.category sup,
.tag sup {
  vertical-align: super;
  font-size: smaller;
}
.page ol,
.blog ol,
.archive ol,
.single ol,
.category ol,
.tag ol {
  list-style: decimal;
}
.page ul,
.blog ul,
.archive ul,
.single ul,
.category ul,
.tag ul {
  list-style: disc;
}
.page .wp-block-post-template,
.blog .wp-block-post-template,
.archive .wp-block-post-template,
.single .wp-block-post-template,
.category .wp-block-post-template,
.tag .wp-block-post-template {
  list-style: none !important;
}
.page .sidebar ul li,
.blog .sidebar ul li,
.archive .sidebar ul li,
.single .sidebar ul li,
.category .sidebar ul li,
.tag .sidebar ul li {
  list-style: none !important;
}
.page .sidebar ul li a,
.blog .sidebar ul li a,
.archive .sidebar ul li a,
.single .sidebar ul li a,
.category .sidebar ul li a,
.tag .sidebar ul li a {
  text-decoration: none;
}
.page .sidebar ul.wp-block-navigation li a:hover, .page .sidebar ul.wp-block-navigation li a:active, .page .sidebar ul.wp-block-navigation li a:focus, .page .sidebar ul.wp-block-navigation li a:focus-visible,
.blog .sidebar ul.wp-block-navigation li a:hover,
.blog .sidebar ul.wp-block-navigation li a:active,
.blog .sidebar ul.wp-block-navigation li a:focus,
.blog .sidebar ul.wp-block-navigation li a:focus-visible,
.archive .sidebar ul.wp-block-navigation li a:hover,
.archive .sidebar ul.wp-block-navigation li a:active,
.archive .sidebar ul.wp-block-navigation li a:focus,
.archive .sidebar ul.wp-block-navigation li a:focus-visible,
.single .sidebar ul.wp-block-navigation li a:hover,
.single .sidebar ul.wp-block-navigation li a:active,
.single .sidebar ul.wp-block-navigation li a:focus,
.single .sidebar ul.wp-block-navigation li a:focus-visible,
.category .sidebar ul.wp-block-navigation li a:hover,
.category .sidebar ul.wp-block-navigation li a:active,
.category .sidebar ul.wp-block-navigation li a:focus,
.category .sidebar ul.wp-block-navigation li a:focus-visible,
.tag .sidebar ul.wp-block-navigation li a:hover,
.tag .sidebar ul.wp-block-navigation li a:active,
.tag .sidebar ul.wp-block-navigation li a:focus,
.tag .sidebar ul.wp-block-navigation li a:focus-visible {
  color: var(--wp--preset--color--secondary);
}
.page .wp-block-post-title,
.page .wp-block-post-date,
.blog .wp-block-post-title,
.blog .wp-block-post-date,
.archive .wp-block-post-title,
.archive .wp-block-post-date,
.single .wp-block-post-title,
.single .wp-block-post-date,
.category .wp-block-post-title,
.category .wp-block-post-date,
.tag .wp-block-post-title,
.tag .wp-block-post-date {
  line-height: 1;
}
.page .wp-block-post-title a,
.page .wp-block-post-date a,
.blog .wp-block-post-title a,
.blog .wp-block-post-date a,
.archive .wp-block-post-title a,
.archive .wp-block-post-date a,
.single .wp-block-post-title a,
.single .wp-block-post-date a,
.category .wp-block-post-title a,
.category .wp-block-post-date a,
.tag .wp-block-post-title a,
.tag .wp-block-post-date a {
  text-decoration: none;
}
.page a,
.blog a,
.archive a,
.single a,
.category a,
.tag a {
  /*
  accessibliity
  */
}
.page a:focus, .page a:focus-visible, .page a:focus-within,
.blog a:focus,
.blog a:focus-visible,
.blog a:focus-within,
.archive a:focus,
.archive a:focus-visible,
.archive a:focus-within,
.single a:focus,
.single a:focus-visible,
.single a:focus-within,
.category a:focus,
.category a:focus-visible,
.category a:focus-within,
.tag a:focus,
.tag a:focus-visible,
.tag a:focus-within {
  /* 
  outline: solid 1px var(--wp--preset--color--white);
  */
  outline: none !important;
}

/*
pages
*/
/*
parts
*/
@media (max-width: 767px) {
  body.home .wp-site-blocks .wp-block-group:has(.banner) {
    min-height: 85vh !important;
  }
}
body.home .wp-site-blocks .banner {
  position: relative;
  z-index: 0;
  overflow-y: visible;
  overflow-x: clip;
  width: 100%;
}
@media (max-width: 767px) {
  body.home .wp-site-blocks .banner {
    min-height: 100vh !important;
  }
}
body.home .wp-site-blocks .banner h1 {
  font-size: 3.8rem !important;
  line-height: 3.8rem;
  font-weight: 700 !important;
}
body.home .wp-site-blocks .banner mark:first-child {
  font-size: var(--wp--preset--font-size--xl);
}

body .wp-site-blocks .bannerStaticNews {
  position: relative;
  z-index: 0;
  overflow: visible;
  width: 100%;
  max-height: 60vh;
}
body .wp-site-blocks .bannerStaticNews a {
  text-decoration: none;
}
body .wp-site-blocks .bannerStaticNews a:hover, body .wp-site-blocks .bannerStaticNews a:active, body .wp-site-blocks .bannerStaticNews a:focus, body .wp-site-blocks .bannerStaticNews a:focus-visible {
  color: var(--wp--preset--color--primary);
}
@media (max-width: 1023px) {
  body .wp-site-blocks .bannerStaticNews .wp-block-cover .wp-block-cover__image-background {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 100% 0%;
       object-position: 100% 0%;
  }
}

body .wp-site-blocks .bannerStatic {
  position: relative;
  z-index: 0;
  overflow: visible;
  width: 100%;
  max-height: 60vh;
}
body .wp-site-blocks .bannerStatic .wp-block-post-title,
body .wp-site-blocks .bannerStatic .wp-block-heading {
  margin-bottom: var(--wp--preset--spacing--normal) !important;
  font-size: var(--wp--preset--font-size--xl);
}
body .wp-site-blocks .bannerStatic .wp-block-cover__image-background {
  -o-object-fit: 50%;
     object-fit: 50%;
}
@media (max-width: 767px) {
  body .wp-site-blocks .bannerStatic .wp-block-cover__inner-container div {
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  body .wp-site-blocks .bannerStatic .wp-block-social-links {
    justify-content: flex-start;
    margin-bottom: var(--wp--preset--spacing--normal);
  }
}

/*
swiper variables
*/
:root {
  --swiper-theme-color: var(--wp--preset--color--white) !important;
  --swiper-navigation-sides-offset: 2vw;
  --swiper-pagination-top: auto;
  --swiper-pagination-bottom: 0px;
  --swiper-navigation-top-offset: 50%;
}

body .wp-site-blocks .bannerSlideshow {
  position: relative;
  z-index: 0;
  overflow: visible;
  width: 100%;
  /*
  swiper
  */
}
body .wp-site-blocks .bannerSlideshow a {
  text-decoration: none;
}
body .wp-site-blocks .bannerSlideshow .bannerSwiper {
  width: 100vw;
  height: 60vh;
  overflow: hidden;
  margin: 0px;
  /*
  title
  */
}
body .wp-site-blocks .bannerSlideshow .bannerSwiper h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  z-index: 1;
  text-align: center;
}
body .wp-site-blocks .bannerSlideshow .bannerSwiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 60vh;
  max-height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50%;
     object-position: 50%;
}
body .wp-site-blocks .bannerSlideshow .bannerSwiper .swiper-wrapper ::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  opacity: 0.2;
}
body .wp-site-blocks .bannerSlideshow .bannerSwiper .swiper-button-prev,
body .wp-site-blocks .bannerSlideshow .bannerSwiper .swiper-button-next {
  color: var(--wp--preset--color--white);
}
body .wp-site-blocks .bannerSlideshow .bannerSwiper .swiper-button-prev:hover,
body .wp-site-blocks .bannerSlideshow .bannerSwiper .swiper-button-next:hover {
  color: var(--wp--preset--color--primary);
}

body .wp-site-blocks {
  /*
  banner - video
  */
}
body .wp-site-blocks .bannerVideo {
  cursor: pointer;
  position: relative;
  z-index: 0;
  overflow: visible;
  width: 100%;
  max-height: 60vh;
  /*
  play icon
  */
}
body .wp-site-blocks .bannerVideo svg:hover path:first-child, body .wp-site-blocks .bannerVideo svg:active path:first-child, body .wp-site-blocks .bannerVideo svg:focus path:first-child, body .wp-site-blocks .bannerVideo svg:focus-visible path:first-child {
  fill: var(--wp--preset--color--primary) !important;
}
body .wp-site-blocks .bannerVideo svg:hover path:last-child, body .wp-site-blocks .bannerVideo svg:active path:last-child, body .wp-site-blocks .bannerVideo svg:focus path:last-child, body .wp-site-blocks .bannerVideo svg:focus-visible path:last-child {
  stroke: var(--wp--preset--color--primary) !important;
}

/*
footer
*/
footer ::-moz-selection {
  background: var(--wp--preset--color--primary);
}
footer ::selection {
  background: var(--wp--preset--color--primary);
}
footer a {
  text-decoration: none !important;
}
footer a:hover, footer a:active, footer a:focus, footer a:focus-visible {
  color: var(--wp--preset--color--tertiary) !important;
  text-decoration: underline !important;
}
footer a:focus, footer a:focus-visible, footer a:focus-within {
  outline: solid 1px var(--wp--preset--color--secondary);
}
footer .wp-block-social-links .wp-block-social-link:hover, footer .wp-block-social-links .wp-block-social-link:active, footer .wp-block-social-links .wp-block-social-link:focus, footer .wp-block-social-links .wp-block-social-link:focus-visible {
  background-color: initial !important;
}
footer .wp-block-social-links .wp-block-social-link:hover a.wp-block-social-link-anchor, footer .wp-block-social-links .wp-block-social-link:active a.wp-block-social-link-anchor, footer .wp-block-social-links .wp-block-social-link:focus a.wp-block-social-link-anchor, footer .wp-block-social-links .wp-block-social-link:focus-visible a.wp-block-social-link-anchor {
  color: var(--wp--preset--color--white) !important;
}
@media (max-width: 1023px) {
  footer .wp-block-columns {
    gap: var(--wp--preset--spacing--medium) 0 !important;
    flex-wrap: wrap !important;
  }
  footer .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:first-child {
    order: 3;
    flex-basis: 50% !important;
  }
  footer .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:nth-child(2) {
    order: 1;
    flex-basis: 50% !important;
  }
  footer .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:nth-child(3) {
    order: 2;
    flex-basis: 50% !important;
  }
  footer .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:last-child {
    order: 4;
    flex-basis: 50% !important;
  }
}
@media (max-width: 767px) {
  footer nav {
    align-content: center;
  }
  footer nav .wp-block-navigation {
    flex-direction: column;
  }
  footer .wp-block-social-links {
    justify-content: center !important;
  }
  footer .wp-block-columns {
    text-align: center;
  }
  footer .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:first-child {
    order: 4;
    flex-basis: 100% !important;
  }
  footer .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:nth-child(2) {
    order: 2;
    flex-basis: 25% !important;
  }
  footer .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:nth-child(3) {
    order: 3;
    flex-basis: 25% !important;
  }
  footer .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:last-child {
    order: 1;
    flex-basis: 100% !important;
  }
  footer .wp-block-columns .wp-block-site-logo img {
    max-width: 100%;
  }
}

/*
header - secondary
*/
header .headerSecondary {
  transition: all 500ms;
  position: fixed;
  top: 0px;
  width: 100%;
  /*
  site logo
  */
  /*
  navigation block
  */
  /*
  sticky
  */
}
header .headerSecondary .wp-block-site-logo,
header .headerSecondary .wp-block-image {
  padding-top: var(--wp--preset--spacing--small);
  padding-bottom: var(--wp--preset--spacing--small);
}
header .headerSecondary .wp-block-site-logo a,
header .headerSecondary .wp-block-image a {
  width: 250px;
}
header .headerSecondary .wp-block-site-logo a img,
header .headerSecondary .wp-block-image a img {
  width: 100%;
}
@media (max-width: 767px) {
  header .headerSecondary .wp-block-site-logo a,
  header .headerSecondary .wp-block-image a {
    width: 200px;
  }
  header .headerSecondary .wp-block-site-logo a img,
  header .headerSecondary .wp-block-image a img {
    width: 200px !important;
  }
}
header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
  /*
  top level navigation items
  */
}
header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item {
  background-color: transparent !important;
  /*
  top level current menu item
  */
  /*
  submenu
  */
}
header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:hover, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:active, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:focus, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:focus-visible {
  background-color: transparent !important;
  border-bottom: solid 0.2rem transparent !important;
}
header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item {
  color: var(--wp--preset--color--white) !important;
  background-color: transparent !important;
  border-bottom: solid 0.2rem transparent !important;
}
header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:hover, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:active, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:focus, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:focus-visible {
  background-color: transparent !important;
}
header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:hover, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:active {
  color: var(--wp--preset--color--secondary) !important;
}
header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:focus, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:focus-visible {
  color: var(--wp--preset--color--tertiary) !important;
}
header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu {
  border: none !important;
  left: 0;
  right: auto;
  /*
  submenu navigation item
  */
}
header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item {
  padding: 0;
  color: var(--wp--preset--color--white) !important;
  background-color: var(--wp--preset--color--primary);
  /*
  current menu item
  */
}
header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item:hover, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item:active, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item:focus, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item:focus-visible {
  background-color: var(--wp--preset--color--secondary) !important;
  border-bottom: solid 0.2rem transparent !important;
}
header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item a:hover, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item a:active {
  color: var(--wp--preset--color--white) !important;
}
header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item a:focus, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item a:focus-visible {
  color: var(--wp--preset--color--tertiary) !important;
}
header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.current-menu-item {
  color: var(--wp--preset--color--secondary) !important;
  border-bottom: solid 0.2rem transparent !important;
}
header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.current-menu-item:hover, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.current-menu-item:active, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.current-menu-item:focus, header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.current-menu-item:focus-visible {
  background-color: transparent !important;
}
header .headerSecondary .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item:last-child {
  border-bottom: solid 0.2rem transparent !important;
}
header .headerSecondary.sticky {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background-color: var(--wp--preset--color--primary) !important;
  /*
  site logo
  */
}
header .headerSecondary.sticky .wp-block-site-logo a,
header .headerSecondary.sticky .wp-block-image a {
  transition: all 500ms;
  width: 200px;
}
header .headerSecondary.sticky .wp-block-site-logo a img,
header .headerSecondary.sticky .wp-block-image a img {
  transition: all 500ms;
  width: 200px !important;
}
header .headerSecondary button {
  color: var(--wp--preset--color--white);
}

/*
mobile menu
*/
header {
  /*
  misc responsive rules
  */
}
header .headerSecondary .wp-block-navigation__responsive-container {
  /*
  search icon
  */
}
header .headerSecondary .wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content {
  align-items: center;
  gap: 0rem var(--wp--preset--spacing--normal);
}
header .headerSecondary .wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
  justify-content: flex-end;
}
header .headerSecondary .wp-block-navigation__responsive-container .wp-block-search {
  padding: 1.72rem 1rem;
}
header .headerSecondary .wp-block-navigation__responsive-container .wp-block-search:hover, header .headerSecondary .wp-block-navigation__responsive-container .wp-block-search:active, header .headerSecondary .wp-block-navigation__responsive-container .wp-block-search:focus, header .headerSecondary .wp-block-navigation__responsive-container .wp-block-search:focus-visible {
  background-color: var(--wp--preset--color--transparent) !important;
}
header .headerSecondary .wp-block-navigation__responsive-container .wp-block-search:hover .wp-block-search__button svg, header .headerSecondary .wp-block-navigation__responsive-container .wp-block-search:active .wp-block-search__button svg, header .headerSecondary .wp-block-navigation__responsive-container .wp-block-search:focus .wp-block-search__button svg, header .headerSecondary .wp-block-navigation__responsive-container .wp-block-search:focus-visible .wp-block-search__button svg {
  fill: var(--wp--preset--color--secondary);
}
header .headerSecondary .wp-block-navigation__responsive-container .wp-block-search .wp-block-search__button {
  padding: 0;
}
header .headerSecondary .wp-block-navigation__responsive-container .wp-block-search .wp-block-search__button[aria-expanded=true] {
  padding-left: var(--wp--preset--spacing--small);
  background-color: transparent;
}
header .headerSecondary .wp-block-navigation__responsive-container .wp-block-search .wp-block-search__button svg {
  fill: var(--wp--preset--color--white);
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open {
  animation: overlay-menu__slide-in-left-animation 500ms ease-out !important;
  width: 80%;
  height: 100%;
  padding: 2rem;
  margin-left: auto;
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close:hover, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close:active, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close:focus, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close:focus-visible {
  animation-name: unset;
  animation-duration: unset;
  color: var(--wp--preset--color--secondary);
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  padding: 0;
  /*
  site logo
  */
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .mobile-logo {
  display: block !important;
  order: 1;
  width: 60%;
  margin-right: auto;
  margin-bottom: var(--wp--preset--spacing--normal);
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
  order: 2;
  align-items: flex-start !important;
  gap: 0rem !important;
  width: 100%;
  /*
  top level navigation items
  */
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item {
  width: 100%;
  align-items: flex-start;
  padding: 1rem 0rem;
  /*
  submenu parent
  */
  /*
  download button
  */
  /*
  &:last-child {

  	width: 100%;
  	align-items: center;
  	margin-top: 1rem;
  	padding: 1rem;
  	color: var(--wp--preset--color--white) !important;
  	background-color: var(--wp--preset--color--primary) !important;
  	border: none !important;

  	a {

  		text-align: center;
  		font-size: var(--wp--preset--font-size--normal);

  		&:hover, &:active, &:focus, &:focus-visible {

  			color: unset !important;
  		}
  	}
  }
  */
  /*
  current menu item
  */
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:hover, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:active, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:focus, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:focus-visible {
  background-color: transparent !important;
  border-bottom: solid 0.2rem transparent !important;
  color: var(--wp--preset--color--secondary) !important;
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a {
  font-weight: 500 !important;
  font-size: var(--wp--preset--font-size--medium) !important;
  color: var(--wp--preset--color--white) !important;
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:hover, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:active, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:focus, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:focus-visible {
  color: var(--wp--preset--color--secondary) !important;
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child {
  position: relative;
  /*
  submenu
  */
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child::after {
  content: "+";
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: calc(1rem + 6px);
  font-size: var(--wp--preset--font-size--normal);
  color: var(--wp--preset--color--white);
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child:has(ul.is-submenu-open)::after {
  content: "-";
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container {
  display: none;
  padding: 1rem 1rem 0 1rem;
  align-items: flex-start;
  /*
  submenu items
  */
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container.is-submenu-open {
  display: block;
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item {
  align-items: flex-start;
  padding: 1rem 0;
  margin: 0;
  color: var(--wp--preset--color--white) !important;
  background-color: transparent !important;
  /*
  current submenu items
  */
  /*
  &:last-child {

  	padding-bottom: 0;
  	text-align: left !important;
  	background-color: transparent !important;
  }
  */
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item:hover, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item:active, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item:focus, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item:focus-visible {
  border-bottom: solid 0.2rem transparent !important;
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item a:hover, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item a:active header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item a:focus, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item a:focus-visible {
  color: var(--wp--preset--color--secondary) !important;
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.current-menu-item {
  color: var(--wp--preset--color--tertiary) !important;
  border-bottom: solid 0.2rem transparent !important;
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item:last-child {
  border-bottom: solid 0.2rem transparent !important;
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item {
  border-bottom: solid 0.2rem transparent !important;
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:hover, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:active, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:focus, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:focus-visible {
  border-bottom: solid 0.2rem transparent !important;
  background-color: transparent !important;
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item a {
  color: var(--wp--preset--color--white) !important;
}
header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item a:hover, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item a:active, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item a:focus, header .headerSecondary .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item a:focus-visible {
  color: var(--wp--preset--color--secondary) !important;
}
@media (max-width: 767px) {
  header {
    position: sticky;
    top: 0px;
    width: 100%;
  }
  header.sticky:has(.headerSecondary) {
    background-color: var(--wp--preset--color--white) !important;
  }
  header.sticky .headerSecondary {
    background-color: var(--wp--preset--color--white) !important;
  }
}

/*
general
*/
header {
  position: relative;
  z-index: 10;
  width: 100%;
  z-index: 10;
  /*
  navigation block
  */
  /*
  social media links
  */
  /*
  header - primary
  */
}
header ol.has-background,
header ul.has-background {
  padding: initial;
}
header .wp-block-site-logo,
header .wp-block-image {
  align-self: center;
  padding-top: 0;
  padding-bottom: 0;
}
header .wp-block-site-logo a,
header .wp-block-image a {
  width: 250px;
}
header .wp-block-site-logo a img,
header .wp-block-image a img {
  width: 100%;
}
@media (max-width: 767px) {
  header .wp-block-site-logo a,
  header .wp-block-image a {
    width: 200px;
  }
  header .wp-block-site-logo a img,
  header .wp-block-image a img {
    width: 200px !important;
  }
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content {
  gap: 0 !important;
  /*
  search icon
  */
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
  gap: 0rem !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item {
  transition: all 250ms;
  height: 100%;
  padding: 2rem 1rem;
  border-bottom: none !important;
  /*
  top level current menu item
  */
  /*
  submenu
  */
  /*
  &:last-child {

  	.wp-block-navigation-submenu {

  		left: auto;
  		right: 0;
  	}
  }
  */
  /*
  download button
  */
  /*
  &:last-child {

  	padding: 0.5rem 3rem;
  	color: var(--wp--preset--color--primary) !important;
  	background-color: var(--wp--preset--color--white);
  	border: none !important;

  	a {

  		&:hover, &:active, &:focus, &:focus-visible {

  			color: unset !important;
  		}
  	}

  	&:hover, &:active, &:focus, &:focus-visible {

  		color: var(--wp--preset--color--white) !important;
  		background-color: var(--wp--preset--color--primary);
  	}
  }
  */
}
@media (max-width: 1023px) {
  header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item {
    padding: 1rem;
  }
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:hover, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:active, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:focus, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:focus-visible {
  background-color: var(--wp--preset--color--secondary) !important;
  border-bottom: none !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a {
  /*
  accessibility
  */
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a.current-menu-ancestor {
  color: var(--wp--preset--color--tertiary) !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:hover, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:active {
  color: var(--wp--preset--color--white) !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:focus, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:focus-visible {
  color: var(--wp--preset--color--tertiary) !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:focus, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:focus-visible, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:focus-within {
  /* 
  outline: solid 1px var(--wp--preset--color--white);
  */
  outline: none !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item {
  color: var(--wp--preset--color--tertiary) !important;
  border-bottom: none !important;
  background-color: transparent;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:hover, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:active, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:focus, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:focus-visible {
  color: var(--wp--preset--color--white) !important;
  background-color: var(--wp--preset--color--secondary) !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu {
  border: none !important;
  left: 0;
  right: auto;
  /*
  submenu navigation item
  */
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item {
  padding: 0.25rem 1rem;
  color: var(--wp--preset--color--white) !important;
  background-color: var(--wp--preset--color--secondary);
  font-size: 0.9rem;
  white-space: nowrap;
  /*
  submenu title
  */
  /*
  current menu item
  */
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item:hover, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item:active, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item:focus, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item:focus-visible {
  background-color: var(--wp--preset--color--tertiary) !important;
  border-bottom: none !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item a {
  padding: 0;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item a:hover, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item a:active, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item a:focus, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item a:focus-visible {
  background-color: transparent !important;
  border-bottom: none !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.submenuTitle {
  color: var(--wp--preset--color--tertiary) !important;
  background-color: var(--wp--preset--color--secondary) !important;
  border-top: none !important;
  border-bottom: solid 0.2rem var(--wp--preset--color--tertiary) !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.submenuTitle a {
  padding: 1rem;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.submenuTitle a:hover, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.submenuTitle a:active, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.submenuTitle a:focus, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.submenuTitle a:focus-visible {
  color: var(--wp--preset--color--tertiary) !important;
  background-color: var(--wp--preset--color--secondary) !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.submenuTitle:hover, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.submenuTitle:active, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.submenuTitle:focus, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.submenuTitle:focus-visible {
  border-top: none !important;
  border-bottom: solid 0.2rem var(--wp--preset--color--tertiary) !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item a:hover, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item a:active {
  color: var(--wp--preset--color--white) !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item a:focus, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item a:focus-visible {
  color: var(--wp--preset--color--white) !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.current-menu-item {
  color: var(--wp--preset--color--tertiary) !important;
  border-bottom: solid 0.2rem transparent;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.current-menu-item:hover, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.current-menu-item:active, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.current-menu-item:focus, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item.current-menu-item:focus-visible {
  color: var(--wp--preset--color--white) !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item:last-child {
  border-bottom: solid 0.2rem transparent !important;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-search {
  padding: 2rem 1rem;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-search:hover, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-search:active, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-search:focus, header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-search:focus-visible {
  background-color: var(--wp--preset--color--secondary);
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-search .wp-block-search__button {
  padding: 0;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-search .wp-block-search__button[aria-expanded=true] {
  padding-left: var(--wp--preset--spacing--small);
  background-color: transparent;
}
header .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-search .wp-block-search__button svg {
  fill: var(--wp--preset--color--white);
}
header .wp-block-social-links .wp-block-social-link:hover, header .wp-block-social-links .wp-block-social-link:active, header .wp-block-social-links .wp-block-social-link:focus, header .wp-block-social-links .wp-block-social-link:focus-visible {
  background-color: var(--wp--preset--color--secondary) !important;
}
header .wp-block-social-links .wp-block-social-link:hover a, header .wp-block-social-links .wp-block-social-link:active a, header .wp-block-social-links .wp-block-social-link:focus a, header .wp-block-social-links .wp-block-social-link:focus-visible a {
  color: var(--wp--preset--color--white) !important;
}
header .headerPrimary {
  transition: all 500ms;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  /*
  sticky
  */
}
@media (max-width: 767px) {
  header .headerPrimary {
    padding: 2rem 1rem !important;
  }
}
header .headerPrimary.sticky {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background-color: var(--wp--preset--color--white) !important;
  box-shadow: 0px 6px 15px -6px rgba(0, 0, 0, 0.3);
  /*
  search icon
  */
}
@media (max-width: 767px) {
  header .headerPrimary.sticky {
    padding: 1rem !important;
  }
}
header .headerPrimary.sticky .wp-block-site-logo a {
  transition: all 500ms;
  width: 200px;
}
@media (max-width: 767px) {
  header .headerPrimary.sticky .wp-block-site-logo a {
    width: 150px;
    padding: 0 !important;
  }
}
header .headerPrimary.sticky .wp-block-site-logo a img {
  width: 100%;
}
header .headerPrimary.sticky .wp-block-navigation .wp-block-navigation__responsive-container-content {
  align-items: flex-end;
  gap: 0rem var(--wp--preset--spacing--normal);
}
header .headerPrimary.sticky .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
  /*
  top level navigation item
  */
}
header .headerPrimary.sticky .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item {
  padding: 1rem !important;
  color: var(--wp--preset--color--secondary);
  /*
  submenu
  */
  /*
  top level current menu item
  */
}
header .headerPrimary.sticky .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:hover, header .headerPrimary.sticky .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:active, header .headerPrimary.sticky .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:focus, header .headerPrimary.sticky .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:focus-visible {
  color: var(--wp--preset--color--white) !important;
}
@media (max-width: 767px) {
  header .headerPrimary.sticky .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:hover, header .headerPrimary.sticky .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:active, header .headerPrimary.sticky .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:focus, header .headerPrimary.sticky .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:focus-visible {
    color: var(--wp--preset--color--tertiary) !important;
  }
}
header .headerPrimary.sticky .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu {
  border: none !important;
  left: 0;
  right: auto;
  /*
  submenu navigation item
  */
}
header .headerPrimary.sticky .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-submenu .wp-block-navigation-item {
  padding: 0.25rem 1rem !important;
}
header .headerPrimary.sticky .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item {
  color: var(--wp--preset--color--white) !important;
}
@media (max-width: 767px) {
  header .headerPrimary.sticky .wp-block-navigation .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item {
    color: var(--wp--preset--color--secondary) !important;
  }
}
header .headerPrimary.sticky .wp-block-navigation button {
  color: var(--wp--preset--color--primary);
}
header .headerPrimary.sticky .wp-block-search .wp-block-search__button {
  padding: 0;
}
header .headerPrimary.sticky .wp-block-search .wp-block-search__button[aria-expanded=true] {
  padding-left: var(--wp--preset--spacing--small);
  background-color: transparent;
}
header .headerPrimary.sticky .wp-block-search .wp-block-search__button svg {
  fill: var(--wp--preset--color--secondary);
}
header .headerPrimary.sticky .wp-block-search:hover .wp-block-search__button svg, header .headerPrimary.sticky .wp-block-search:active .wp-block-search__button svg, header .headerPrimary.sticky .wp-block-search:focus .wp-block-search__button svg, header .headerPrimary.sticky .wp-block-search:focus-visible .wp-block-search__button svg {
  fill: var(--wp--preset--color--white);
}

/*
mobile menu
*/
@keyframes overlay-menu__fade-in-up-animation {
  0% {
    opacity: 0;
    transform: translateY(10rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes overlay-menu__fade-in-down-animation {
  0% {
    opacity: 0;
    transform: translateY(-10rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes overlay-menu__slide-in-left-animation {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes overlay-menu__slide-out-left-animation {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(10rem);
  }
}
@keyframes overlay-menu__slide-in-right-animation {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
navigation block - it collapses into a mobile menu on small screens to make the mobile nav
*/
header {
  /*
  misc responsive rules
  */
}
header .wp-block-navigation__responsive-container.is-menu-open {
  animation: overlay-menu__slide-in-left-animation 500ms ease-out !important;
  width: 80%;
  height: 100%;
  padding: 2rem;
  margin-left: auto;
  /*
  close icon
  */
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-close {
  height: 100%;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog {
  height: 100%;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close:hover, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close:active, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close:focus, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close:focus-visible {
  animation-name: unset;
  animation-duration: unset;
  color: var(--wp--preset--color--secondary);
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  height: 100%;
  padding: 0;
  gap: var(--wp--preset--spacing--normal) !important;
  /*
  search icon
  */
  /*
  the logo
  */
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-search {
  order: 0;
  padding: 0.5rem;
  background-color: var(--wp--preset--color--secondary);
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-search:hover, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-search:active, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-search:focus, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-search:focus-visible {
  background-color: var(--wp--preset--color--tertiary);
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-search .wp-block-search__button {
  padding: 0;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-search .wp-block-search__button[aria-expanded=true] {
  padding-left: var(--wp--preset--spacing--small);
  background-color: transparent;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-search .wp-block-search__button svg {
  fill: var(--wp--preset--color--white);
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content a[rel=home] {
  order: 2;
  margin-top: auto;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .mobile-logo {
  display: block !important;
  width: 60%;
  margin-top: auto;
  margin-right: auto;
  margin-bottom: 0 !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
  order: 2;
  align-items: flex-start !important;
  flex-direction: initial;
  gap: 1rem !important;
  width: 100%;
  /*
  top level navigation items
  */
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item {
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  align-items: flex-start;
  /*
  submenu parent
  */
  /*
  download button
  */
  /*
  &:last-child {

  	width: 100%;
  	align-items: center;
  	margin-top: 1rem;
  	padding: 1rem;
  	color: var(--wp--preset--color--white) !important;
  	background-color: var(--wp--preset--color--primary) !important;
  	border: none !important;

  	a {

  		text-align: center;
  		font-size: var(--wp--preset--font-size--normal);

  		&:hover, &:active, &:focus, &:focus-visible {

  			color: unset !important;
  		}
  	}
  }
  */
  /*
  current menu item
  */
}
@media (max-width: 767px) {
  header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item {
    padding: 1rem 0rem !important;
  }
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:hover, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:active, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:focus, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item:focus-visible {
  background-color: transparent !important;
  border-bottom: none !important;
  color: var(--wp--preset--color--secondary) !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a {
  font-weight: 500 !important;
  font-size: var(--wp--preset--font-size--medium) !important;
  color: var(--wp--preset--color--primary) !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:hover, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:active, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:focus, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item a:focus-visible {
  color: var(--wp--preset--color--secondary) !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child {
  position: relative;
  /*
  submenu
  */
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child::after {
  content: "+";
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 0;
  padding-top: initial;
  font-size: var(--wp--preset--font-size--normal);
  font-weight: 700;
  color: var(--wp--preset--color--primary);
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child:has(ul.is-submenu-open)::after {
  content: "-";
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container {
  display: none;
  padding: 1rem 1rem 0 1rem;
  align-items: flex-start;
  /*
  submenu items
  */
  /*
  sub-submenus
  */
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container.is-submenu-open {
  display: block;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item {
  align-items: flex-start;
  padding: 1rem 0;
  margin: 0;
  color: var(--wp--preset--color--primary) !important;
  background-color: transparent !important;
  /*
  submenu titles
  */
  /*
  &:last-child {

  	padding-bottom: 0;
  	text-align: left !important;
  	background-color: transparent !important;
  }
  */
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item:hover, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item:active, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item:focus, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item:focus-visible {
  border-bottom: none !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.submenuTitle {
  color: var(--wp--preset--color--secondary) !important;
  background-color: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.submenuTitle a {
  color: var(--wp--preset--color--secondary) !important;
  padding: 1rem 0;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.submenuTitle a:hover, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.submenuTitle a:active, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.submenuTitle a:focus, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.submenuTitle a:focus-visible {
  color: var(--wp--preset--color--secondary) !important;
  background-color: transparent !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.submenuTitle:hover, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.submenuTitle:active, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.submenuTitle:focus, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.submenuTitle:focus-visible {
  border-top: none !important;
  border-bottom: none !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item a:hover, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item a:active, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item a:focus, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item a:focus-visible {
  background-color: transparent !important;
  color: var(--wp--preset--color--secondary) !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.current-menu-item {
  color: var(--wp--preset--color--tertiary) !important;
  border-bottom: solid 0.2rem transparent !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item:last-child {
  border-bottom: solid 0.2rem transparent !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation__responsive-container-close {
  color: var(--wp--preset--color--primary) !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item {
  border-bottom: none !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:hover, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:active, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:focus, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item:focus-visible {
  border-bottom: none !important;
  background-color: transparent !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item a {
  color: var(--wp--preset--color--primary) !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item a:hover, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item a:active, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item a:focus, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.current-menu-item a:focus-visible {
  color: var(--wp--preset--color--secondary) !important;
}
@media (max-width: 767px) {
  header {
    position: sticky;
    top: 0px;
    width: 100%;
  }
  header.sticky {
    background-color: var(--wp--preset--color--primary) !important;
  }
}

/*
topbar
*/
header:has(.topbar) {
  z-index: 11 !important;
}
header .topbar {
  height: 2rem;
}
header .topbar .block-iframe {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
header .topbar .block-iframe iframe {
  max-height: 1rem;
}
@media (max-width: 767px) {
  header .topbar {
    display: none !important;
  }
}

/*
patterns
*/
body .wp-site-blocks .patternContact a {
  text-decoration: none;
}

@media (max-width: 767px) {
  body .wp-site-blocks .patternFacts .wp-block-columns .wp-block-column {
    padding-top: var(--wp--preset--spacing--normal);
    padding-bottom: var(--wp--preset--spacing--normal);
  }
  body .wp-site-blocks .patternFacts .wp-block-columns .wp-block-column:nth-child(2) {
    border-top: solid 0.2rem var(--wp--preset--color--primary);
    border-right: none;
    border-left: none;
    border-bottom: solid 0.2rem var(--wp--preset--color--primary);
  }
}

body .wp-site-blocks .patternLatestNews ul li article .wp-block-read-more:hover, body .wp-site-blocks .patternLatestNews ul li article .wp-block-read-more:active, body .wp-site-blocks .patternLatestNews ul li article .wp-block-read-more:focus, body .wp-site-blocks .patternLatestNews ul li article .wp-block-read-more:focus-visible {
  color: var(--wp--preset--color--tertiary) !important;
  background-color: transparent !important;
}
body .wp-site-blocks .patternLatestNews ul li article .wp-block-post-title, body .wp-site-blocks .patternLatestNews ul li article .wp-block-post-excerpt__excerpt {
  line-height: 2.5ex !important;
  height: 12.5ex;
  overflow: clip;
}
@media (max-width: 767px) {
  body .wp-site-blocks .patternLatestNews {
    padding: 0 !important;
  }
  body .wp-site-blocks .patternLatestNews h2 {
    text-align: center;
  }
}

/*
body {

	.wp-site-blocks {

		.patternLinks {

			.wp-block-columns {

				.wp-block-column {


				}
			}
		}
	}
}
*/
@media (max-width: 767px) {
  body .wp-site-blocks .patternLinksGrid {
    padding: 0 !important;
  }
}
body .wp-site-blocks .patternLinksGrid .wp-block-columns .wp-block-column .wp-block-cover .wp-block-cover__image-background {
  transition: all 250ms;
}
body .wp-site-blocks .patternLinksGrid .wp-block-columns .wp-block-column .wp-block-cover .wp-block-cover__inner-container .wp-block-group {
  transition: all 500ms;
}
body .wp-site-blocks .patternLinksGrid .wp-block-columns .wp-block-column .wp-block-cover .wp-block-cover__inner-container .wp-block-group a {
  text-decoration: none;
}
body .wp-site-blocks .patternLinksGrid .wp-block-columns .wp-block-column:hover .wp-block-cover__image-background, body .wp-site-blocks .patternLinksGrid .wp-block-columns .wp-block-column:active .wp-block-cover__image-background, body .wp-site-blocks .patternLinksGrid .wp-block-columns .wp-block-column:focus .wp-block-cover__image-background, body .wp-site-blocks .patternLinksGrid .wp-block-columns .wp-block-column:focus-visible .wp-block-cover__image-background {
  filter: grayscale(0.5);
  transform: scale(1.05);
}
body .wp-site-blocks .patternLinksGrid .wp-block-columns .wp-block-column:hover .wp-block-cover__inner-container .wp-block-group, body .wp-site-blocks .patternLinksGrid .wp-block-columns .wp-block-column:active .wp-block-cover__inner-container .wp-block-group, body .wp-site-blocks .patternLinksGrid .wp-block-columns .wp-block-column:focus .wp-block-cover__inner-container .wp-block-group, body .wp-site-blocks .patternLinksGrid .wp-block-columns .wp-block-column:focus-visible .wp-block-cover__inner-container .wp-block-group {
  padding-top: calc(var(--wp--preset--spacing--normal) + 1rem) !important;
  padding-bottom: calc(var(--wp--preset--spacing--normal) + 1rem) !important;
}

body .wp-site-blocks .patternPhotos {
  position: relative;
}
body .wp-site-blocks .patternPhotos .pro-block.block-tabs .block-tabs__tabs {
  border-bottom: none;
}
body .wp-site-blocks .patternPhotos .pro-block.block-tabs .block-tabs__tabs .block-tabs__tab {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
  border: solid 0.1rem var(--wp--preset--color--primary);
  text-transform: uppercase;
  font-weight: 500;
}
body .wp-site-blocks .patternPhotos .pro-block.block-tabs .block-tabs__tabs .block-tabs__tab[aria-selected=true] {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--primary);
}
body .wp-site-blocks .patternPhotos .pro-block.block-tabs .block-tabs__tabs .block-tabs__tab:hover, body .wp-site-blocks .patternPhotos .pro-block.block-tabs .block-tabs__tabs .block-tabs__tab:active, body .wp-site-blocks .patternPhotos .pro-block.block-tabs .block-tabs__tabs .block-tabs__tab:focus, body .wp-site-blocks .patternPhotos .pro-block.block-tabs .block-tabs__tabs .block-tabs__tab:focus-visible {
  animation: pulse;
  animation-duration: 250ms;
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--secondary);
}
@media (max-width: 767px) {
  body .wp-site-blocks .patternPhotos .pro-block.block-tabs .block-tabs__tabs {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  body .wp-site-blocks .patternPhotos .pro-block.block-tabs .block-tabs__tabs .block-tabs__tab {
    margin: 0;
  }
}

@media (max-width: 767px) {
  body .wp-site-blocks .patternStockTickers .wp-block-columns .wp-block-column {
    border: none !important;
  }
}
body .wp-site-blocks .patternStockTickers .block-iframe iframe {
  height: 5rem;
}

body .wp-site-blocks .patternSwiper {
  position: relative;
}
body .wp-site-blocks .patternSwiper .patternSwiperContainer {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  overflow: hidden;
  margin: 0px;
}
body .wp-site-blocks .patternSwiper .patternSwiperContainer .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 80vh;
  max-height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50%;
     object-position: 50%;
}
body .wp-site-blocks .patternSwiper .patternSwiperContainer .swiper-button-prev,
body .wp-site-blocks .patternSwiper .patternSwiperContainer .swiper-button-next {
  color: var(--wp--preset--color--white);
}
body .wp-site-blocks .patternSwiper .patternSwiperContainer .swiper-button-prev:hover, body .wp-site-blocks .patternSwiper .patternSwiperContainer .swiper-button-prev:active, body .wp-site-blocks .patternSwiper .patternSwiperContainer .swiper-button-prev:focus, body .wp-site-blocks .patternSwiper .patternSwiperContainer .swiper-button-prev:focus-visible,
body .wp-site-blocks .patternSwiper .patternSwiperContainer .swiper-button-next:hover,
body .wp-site-blocks .patternSwiper .patternSwiperContainer .swiper-button-next:active,
body .wp-site-blocks .patternSwiper .patternSwiperContainer .swiper-button-next:focus,
body .wp-site-blocks .patternSwiper .patternSwiperContainer .swiper-button-next:focus-visible {
  color: var(--wp--preset--color--primary);
}

body .wp-site-blocks .patternVideoBlock {
  /*
  play icon
  */
}
body .wp-site-blocks .patternVideoBlock .wp-block-column {
  position: relative;
}
body .wp-site-blocks .patternVideoBlock .wp-block-column:last-child::after {
  content: "";
  position: absolute;
  top: 0;
  left: 75%;
  z-index: -1;
  width: 1000%;
  height: 110%;
  background-color: var(--wp--preset--color--tertiary);
}
body .wp-site-blocks .patternVideoBlock svg:hover path:first-child, body .wp-site-blocks .patternVideoBlock svg:active path:first-child, body .wp-site-blocks .patternVideoBlock svg:focus path:first-child, body .wp-site-blocks .patternVideoBlock svg:focus-visible path:first-child {
  fill: var(--wp--preset--color--primary) !important;
}
body .wp-site-blocks .patternVideoBlock svg:hover path:last-child, body .wp-site-blocks .patternVideoBlock svg:active path:last-child, body .wp-site-blocks .patternVideoBlock svg:focus path:last-child, body .wp-site-blocks .patternVideoBlock svg:focus-visible path:last-child {
  stroke: var(--wp--preset--color--primary) !important;
}
@media (max-width: 1023px) {
  body .wp-site-blocks .patternVideoBlock {
    margin-top: var(--wp--preset--spacing--normal) !important;
    margin-bottom: var(--wp--preset--spacing--normal) !important;
  }
}

@media (max-width: 767px) {
  body .wp-site-blocks .patternWelcome {
    padding: 0 o !important;
  }
  body .wp-site-blocks .patternWelcome .wp-block-columns .wp-block-column {
    padding-right: 0 !important;
    padding-left: 0 !important;
    border: none !important;
  }
  body .wp-site-blocks .patternWelcome .wp-block-columns .wp-block-column > * {
    text-align: left;
  }
}

/*
templates
*/
/*
404

body.error404 {

	.wp-site-blocks {

		main {

		}
	}
}
*/
/*
archive- project page
*/
body.post-type-archive .wp-site-blocks main .wp-block-query .wp-block-post-title {
  line-height: 2.5ex;
  height: 2.5ex;
  overflow: hidden;
}
@media (max-width: 1023px) {
  body.post-type-archive .wp-site-blocks main .wp-block-query .wp-block-post-title {
    height: 5ex;
  }
}
@media (max-width: 767px) {
  body.post-type-archive .wp-site-blocks main .wp-block-query .wp-block-post-title {
    height: 2.5ex;
  }
}
body.post-type-archive .wp-site-blocks main .wp-block-query figure {
  min-height: 200px;
  width: 100%;
}
@media (max-width: 767px) {
  body.post-type-archive .wp-site-blocks main .wp-block-query figure {
    min-height: unset;
  }
}
body.post-type-archive .wp-site-blocks main .wp-block-query .wp-block-post-excerpt {
  line-height: 2.5ex;
  height: 7.5ex;
  overflow: hidden;
}
@media (max-width: 1023px) {
  body.post-type-archive .wp-site-blocks main .wp-block-query .wp-block-post-excerpt {
    height: 10ex;
  }
}

/*
front / home page
*/
body.home .wp-site-blocks main .fadeinup {
  visibility: hidden;
}
@media (max-width: 767px) {
  body.home .wp-site-blocks main {
    margin-top: var(--wp--preset--spacing--normal) !important;
    padding-right: var(--wp--preset--spacing--normal) !important;
    padding-left: var(--wp--preset--spacing--normal) !important;
  }
}

/*
posts page

body.blog {

	.wp-site-blocks {

		main {

		}
	}
}
*/
/*
page - banner

body.page-template-page-banner {

	.wp-site-blocks {

		// overflow-x: hidden;

		main {

		}
	}
}
*/
/*
page template

	body.page-template {

		.wp-site-blocks {

		}
	}
*/
/*
single posts / blogs template
*/
body.single-asset.postid-2679 .wp-site-blocks .bannerStatic img {
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
}
body.single-asset.postid-2662 .wp-site-blocks .bannerStatic img {
  -o-object-position: 50% 35%;
     object-position: 50% 35%;
}
body.single-asset.postid-3907 .wp-site-blocks .bannerStatic img {
  -o-object-position: 50%;
     object-position: 50%;
}
body.single-asset .wp-site-blocks ul li,
body.single-asset .wp-site-blocks ol li {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
body.single-asset .wp-site-blocks .bannerStatic img {
  -o-object-position: 50%;
     object-position: 50%;
}
body.single-asset .wp-site-blocks table {
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  body.single-asset .wp-site-blocks .sidebar {
    order: 2;
    border: none !important;
  }
  body.single-asset .wp-site-blocks .sidebar nav {
    justify-content: center;
  }
  body.single-asset .wp-site-blocks .sidebar nav .wp-block-buttons {
    width: 50%;
  }
}
body.single-asset .wp-site-blocks .sidebar ul li {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
body.single-asset .wp-site-blocks main .footnote p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
body.single-asset .wp-site-blocks main ul {
  list-style: disc;
  text-align: justify;
}
body.single-asset .wp-site-blocks main ul li {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.wp-block-pro-gallery-simple ul {
  padding: 0 !important;
}

/*
single posts / blogs template
*/
body.single .wp-site-blocks main .entry-content {
  /*
  pr newswire & canada newswire specific rules
  */
}
body.single .wp-site-blocks main .entry-content p {
  margin-top: var(--wp--preset--spacing--normal);
  margin-bottom: var(--wp--preset--spacing--normal);
}
body.single .wp-site-blocks main .entry-content p:has(a):has(img) {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center !important;
}
body.single .wp-site-blocks main .entry-content p.prntac {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
body.single .wp-site-blocks main .entry-content p.prntar {
  text-align: left;
}
body.single .wp-site-blocks main .entry-content ul {
  list-style: disc;
  text-align: left;
}
body.single .wp-site-blocks main .entry-content ul li {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
body.single .wp-site-blocks main .entry-content ol {
  text-align: left;
}
body.single .wp-site-blocks main .entry-content ol li {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
body.single .wp-site-blocks main .entry-content p:has(a):has(img) {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center !important;
}
body.single .wp-site-blocks main .entry-content p.prntac {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
body.single .wp-site-blocks main .entry-content p.prntar {
  text-align: left;
}
body.single .wp-site-blocks main .entry-content ul {
  list-style: disc;
  text-align: initial;
}
body.single .wp-site-blocks main .entry-content ul li {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
body.single .wp-site-blocks main .entry-content .xn-content {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
body.single .wp-site-blocks main .entry-content .xn-content b {
  display: block;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
body.single .wp-site-blocks main .entry-content .xn-content div {
  margin-top: 2rem;
  margin-bottom: 2rem;
}/*# sourceMappingURL=base.css.map */