@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body.overlay:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
}

/* Header styles */
.theme-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.5s ease;
}
@media screen and (min-width: 1241px) {
  .theme-header:not(.scroll):not(.active) .main-navigation {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
  }
  .theme-header:not(.scroll):not(.active) .main-navigation::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    pointer-events: none;
  }
}
.theme-header.scroll .header-main {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.theme-header.active .header-main {
  background: #ffffff;
}
.theme-header.active .main-navigation {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
@media screen and (max-width: 1240px) {
  .theme-header .header-main {
    background-color: #fff;
  }
}
.theme-header .header-top {
  background: #1B3E76;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: white;
}
@media screen and (max-width: 1240px) {
  .theme-header .header-top {
    padding: 8px 16px;
  }
}
@media screen and (max-width: 1240px) {
  .theme-header .header-top .top-navigation {
    display: none;
  }
}
.theme-header .header-top .top-navigation .top-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.theme-header .header-top .top-navigation .top-menu > li {
  margin: 0;
  padding: 0;
}
.theme-header .header-top .top-navigation .top-menu > li a {
  text-decoration: none;
  color: #fff;
  display: block;
  font-size: 14px;
}
.theme-header .header-top .top-navigation .top-menu > li a:hover {
  color: #fff;
}
.theme-header .header-main {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s ease;
  font-family: "Metropolis", sans-serif;
}
@media screen and (max-width: 1240px) {
  .theme-header .header-main {
    padding: 16px;
  }
}
.theme-header ul li {
  line-height: 100%;
}
.theme-header ul li:before {
  display: none;
}
.theme-header ul li[class*=icon] {
  line-height: 180%;
}
.theme-header .theme-logo {
  height: 65px;
}
.theme-header .theme-logo img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 1240px) {
  .theme-header .theme-logo {
    height: 45px;
  }
}
.theme-header .main-navigation {
  margin: 0 36px;
  padding: 16px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1240px) {
  .theme-header .main-navigation {
    padding: 0;
  }
}
.theme-header .main-navigation > ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  width: fit-content;
}
.theme-header .main-navigation > ul > li {
  padding: 0;
  margin: 0;
  line-height: 100%;
  font-weight: 400;
  position: relative;
  font-size: 18px;
  font-weight: 600;
}
.theme-header .main-navigation > ul > li > a {
  text-decoration: none;
  color: #333;
  display: block;
  line-height: 1.2;
  padding: 8px 12px;
}
.theme-header .main-navigation > ul > li ul > li {
  font-weight: 400;
}
.theme-header .main-navigation ul {
  padding: 0;
  margin: 0;
}
.theme-header .main-navigation ul li {
  list-style: none;
}
.theme-header .main-navigation ul li.current-menu-item {
  font-weight: bold;
}
.theme-header .main-navigation ul li a {
  text-decoration: none;
  color: #000;
}
.theme-header .main-navigation ul li.align-top .main-navigation__sub > ul {
  align-items: start;
}
@media screen and (max-width: 1240px) {
  .theme-header .main-navigation {
    background-color: #fff;
    position: fixed;
    top: 118px;
    height: calc(100vh - 118px);
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    width: 100%;
    padding-bottom: 96px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    display: none;
    overflow-y: scroll;
  }
  .theme-header .main-navigation .main-menu:has(.menu-item.active) .menu-item.active {
    display: block;
  }
  .theme-header .main-navigation .main-menu:has(.menu-item.active) .menu-item.active > a {
    position: sticky;
    top: -16px;
    background-color: #f5f4f0;
    z-index: 9999;
    left: 0;
    right: 0;
    width: 100%;
  }
  .theme-header .main-navigation.active {
    display: block;
  }
  .theme-header .main-navigation > ul {
    display: block;
    width: 100%;
  }
  .theme-header .main-navigation > ul > li {
    border-bottom: 1px solid #d3d3d3;
  }
  .theme-header .main-navigation > ul > li.menu-item-has-children > a {
    position: relative;
    padding-right: 48px;
    font-size: 24px;
    transition: 0.5s ease;
  }
  .theme-header .main-navigation > ul > li.menu-item-has-children > a:after {
    content: "\f138";
    font-family: "bootstrap-icons";
    float: right;
    color: #000;
    position: absolute;
    right: 24px;
    width: 32px;
    height: 32px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: transparent;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .theme-header .main-navigation > ul > li.menu-item-has-children.active > a {
    background: transparent;
    padding-left: 68px;
  }
  .theme-header .main-navigation > ul > li.menu-item-has-children.active > a:after {
    content: "\f62a";
    right: calc(100% - 56px);
    background-color: #1B3E76;
    color: #fff;
    transition: background-color 0.5s ease 0.5s;
  }
  .theme-header .main-navigation > ul > li a {
    padding: 24px 48px 24px 24px;
    display: block;
    font-size: 20px;
  }
}
.theme-header .main-navigation__sub {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: fixed;
  left: 0;
  right: 0;
  background: white;
  padding: 48px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: block;
  z-index: 999;
}
.theme-header .main-navigation__sub > ul {
  width: 95%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-header .main-navigation__sub > ul > li {
  min-width: 320px;
}
.theme-header .main-navigation__sub > ul > li > ul {
  display: flex;
  flex-direction: column;
}
.theme-header .main-navigation__sub > ul > li > ul > li {
  margin-bottom: 12px;
  font-size: 16px;
}
@media screen and (max-width: 1240px) {
  .theme-header .main-navigation__sub > ul > li > ul > li {
    margin-bottom: 0;
  }
  .theme-header .main-navigation__sub > ul > li > ul > li a {
    padding: 12px 0;
  }
}
.theme-header .main-navigation__sub > ul > li > a {
  font-weight: bold;
  margin-bottom: 12px;
  display: block;
  font-size: 16px;
}
@media screen and (max-width: 1240px) {
  .theme-header .main-navigation__sub > ul > li > a {
    font-size: 16px;
    padding: 12px 0;
    margin: 0;
  }
}
.theme-header .main-navigation__sub > ul > li.theme-menu-list-image > ul {
  display: block;
}
.theme-header .main-navigation__sub > ul > li.theme-menu-list-image > ul > li {
  width: 24%;
  max-width: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  float: left;
  margin: 0 1% 24px 0;
  text-align: center;
}
.theme-header .main-navigation__sub > ul > li.theme-menu-list-image > ul > li img {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  display: block;
}
.theme-header .main-navigation__sub > ul > li.theme-menu-list-image > ul > li > ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.theme-header .main-navigation__sub > ul > li.theme-menu-list-image > ul > li > ul > li > a {
  text-decoration: underline;
  font-size: 16px;
}
.theme-header .main-navigation__sub > ul > li.theme-menu-list-image > ul > li > a {
  font-weight: bold;
  margin-bottom: 12px;
  display: block;
}
@media screen and (max-width: 1240px) {
  .theme-header .main-navigation__sub {
    position: relative;
    top: 0 !important;
    display: none;
    padding: 0;
    box-shadow: none;
  }
  .theme-header .main-navigation__sub.active {
    display: block;
  }
  .theme-header .main-navigation__sub > ul {
    padding: 0 0 0 48px;
    margin: 0;
    width: 100%;
    display: block;
  }
  .theme-header .main-navigation__sub > ul:has(.theme-menu-list-image) {
    padding-left: 0;
  }
  .theme-header .main-navigation__sub > ul li.theme-menu-list-image {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    overflow: hidden;
  }
  .theme-header .main-navigation__sub > ul li.theme-menu-list-image + li {
    padding: 24px 0 24px 48px;
  }
  .theme-header .main-navigation__sub > ul li.theme-menu-list-image ul li a {
    display: block;
  }
  .theme-header .main-navigation__sub > ul li.theme-menu-list-image ul li.theme-menu-item-image {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
  }
  .theme-header .main-navigation__sub > ul li.theme-menu-list-image ul li.theme-menu-item-image {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 0;
  }
  .theme-header .main-navigation__sub > ul li.theme-menu-list-image ul li.theme-menu-item-image > a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
  }
  .theme-header .main-navigation__sub > ul li.theme-menu-list-image ul li.theme-menu-item-image > a img {
    width: 100px;
    height: auto;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .theme-header .main-navigation__sub > ul li.theme-menu-list-image ul li.theme-menu-item-image > a span {
    display: inline-block;
    font-weight: bold;
    position: absolute;
    left: calc(100px + 1rem);
    top: calc(50% - 32px);
  }
  .theme-header .main-navigation__sub > ul li.theme-menu-list-image ul li.theme-menu-item-image > ul {
    position: absolute;
    left: calc(100px + 1rem);
    top: calc(50% - 12px);
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .theme-header .main-navigation__sub > ul li.theme-menu-list-image ul li.theme-menu-item-image > ul li {
    margin: 0;
  }
}
.theme-header .sub-navigation ul {
  padding: 0;
  margin: 0;
  display: flex;
}
.theme-header .sub-navigation ul li:not(.cta) {
  list-style: none;
  margin-left: 12px;
  font-size: 14px;
  font-weight: bold;
}
.theme-header .sub-navigation ul li:not(.cta) a {
  color: #000;
  text-decoration: none;
}
.theme-header .sub-navigation ul li:not(.cta).icon-folder {
  display: none;
}
.theme-header .sub-navigation ul li:not(.cta).icon-folder a {
  color: inherit;
}
.theme-header .sub-navigation ul li:not(.cta).icon-folder a:before {
  content: "";
  content: "\f43d";
  font-family: "bootstrap-icons";
  display: block;
  font-size: 18px;
  color: #000;
  text-align: center;
  height: 28px;
}
@media (max-width: 1440px) and (min-width: 1241px) {
  .theme-header .sub-navigation ul li:not(.cta).icon-folder {
    display: block;
    background-color: #00b67a;
    border-radius: 12px;
    padding: 12px;
    border-radius: 24px;
  }
  .theme-header .sub-navigation ul li:not(.cta).icon-folder a {
    color: #fff;
  }
  .theme-header .sub-navigation ul li:not(.cta).icon-folder a:before {
    color: #fff;
  }
}
@media screen and (max-width: 1240px) {
  .theme-header .sub-navigation ul li:not(.cta).icon-folder {
    display: block;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }
}
.theme-header .sub-navigation ul li:not(.cta).icon-call {
  display: none;
}
@media screen and (max-width: 1240px) {
  .theme-header .sub-navigation ul li:not(.cta).icon-call {
    display: block;
  }
}
.theme-header .sub-navigation ul li:not(.cta).icon-call a:before {
  content: "";
  content: "\f5b4";
  font-family: "bootstrap-icons";
  display: block;
  font-size: 18px;
  color: #000;
  text-align: center;
  height: 28px;
}
.theme-header .sub-navigation ul li:not(.cta).icon-menu {
  display: none;
}
@media screen and (max-width: 1240px) {
  .theme-header .sub-navigation ul li:not(.cta).icon-menu {
    display: block;
  }
}
.theme-header .sub-navigation ul li:not(.cta).icon-menu a {
  position: relative;
  display: block;
}
.theme-header .sub-navigation ul li:not(.cta).icon-menu a:before {
  content: "";
  content: "\f479";
  font-family: "bootstrap-icons";
  display: block;
  font-size: 28px;
  color: #000;
  text-align: center;
  line-height: 100%;
  z-index: 2;
  position: relative;
  height: 28px;
}
.theme-header .sub-navigation ul li:not(.cta).icon-menu a:after {
  content: "";
  display: block;
  background-color: #f5f4f0;
  position: absolute;
  top: -2px;
  z-index: 0;
  aspect-ratio: 1/1;
  width: 32px;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.theme-header .sub-navigation ul li:not(.cta).icon-menu.active a:before {
  content: "\f62a";
}

.menu-item-has-children.active .main-navigation__sub {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  display: block;
}

.main-menu > .menu-item-has-children.active > a {
  background-color: #f3f3f3;
  border-radius: 8px;
}

.theme-menu-list-image,
.other-custom-subsubclass {
  padding: 20px;
  background: transparent;
  border-radius: 8px;
}

.main-navigation__sub .theme-menu-list-image {
  padding-right: 96px;
  margin-right: 48px;
  border-right: 3px solid #f3f3f3;
}

.cta-button {
  background: #4CAF50;
  color: white;
  padding: 16px 12px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.cta-button:hover {
  background: #45a049;
  transform: translateY(-2px);
}

.cta-button::after {
  content: "→";
  font-size: 1.2em;
  background: rgba(255, 255, 255, 0.2);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cta-button:hover::after {
  transform: translateX(3px);
}

/* unknown temp */
.breadcrumbs {
  display: none !important;
}

.bar.bg--quinary {
  display: none !important;
}

.gfield p:has(> label) {
  margin-bottom: 0 !important;
  line-height: 100% !important;
}

.topbar {
  display: none !important;
}

.content-wrapper section.theme-heading {
  padding-top: 144px;
}

main > section:not([class*=theme-p-]):first-of-type {
  padding-top: 144px;
}
main > section:not([class*=theme-p-]).theme-hero {
  padding-top: calc(18vh + 144px);
}
main > .hero {
  padding-top: 144px;
}

/*# sourceMappingURL=test.css.map */
