/* stylelint-disable order/order */
/*
* Converts an pixel value into a rem value.
*
* @param string  $values    the pixel value(s) as a number. Can convert multiple values if values separated by a space.
* @param integer $base      the base pixel value.
*
* @return string   a space-separated string of rem values.
*/
/*
* This is an abbreviated wrapper for the responsive-values function.
*/
/*
* Creates a CSS clamp value that sizes between breakpoints.
*
* @param integer $min                    the minimum pixel value.
* @param integer $max                    the maximum pixel value.
* @param string  $smallest-breakpoint    the name of the smallest breakpoint from the $grid-breakpoints variable.
* @param string  $largest-breakpoint     the name of the largest breakpoint from the $grid-breakpoints variable.
* @param string  $screen                 whether to use a horizontal (width) breakpoint or a vertical (height) breakpoint.
*
* @return string   a CSS clamp property value.
*/
/*
* Outputs a font family value from the $fonts variable.
*
* @param string  $key   the font key.
*
* @return string   a font family value.
*/
/*
* Outputs a color value from the $paints or $additional-paints variables.
*
* @param string   $key   the color name.
*
* @return string   a color value.
*/
/*
* Outputs an effect value from the $effects variable.
*
* @param string  $key   the effect name.
*
* @return string   an effect value.
*/
/* stylelint-enable order/order */
/*
* Used to target heading selectors.
*
* @param integer  $start               the first heading element to target. 1 through 6.
* @param integer  $end                 the last heading element to target. 1 through 6.
* @param string   $beforeCombinator    the CSS combinator to include before the heading classes.
* @param string   $afterCombinator     the CSS combinator to include after the heading classes.
* @param boolean  $includeFontClasses  whether or not to include the .has-t-1... classes or just output the standard heading elements.
*
* @return string  The included CSS wrapped with selectors for the specified headings.
*/
/*
* Used to add properties to a for a pseudo element to make an icon based on the iconfont set.
*
* @param string   $content     the content for the icon. Usually uses one of the iconfont variables.
* @param string   $font-size   the font size with unit.
*
* @return string  The CSS properties for the icon.
*/
/*
* Generates CSS to fit an element into the 12-column grid. Only works when used on an element where the parent element is the width of the entire page.
*
* @return string  CSS properties to set the width of the element to the specified column sizes.
*/
/*
* Used to target elements with a background color that has a text color different from the standard color.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to target button elements with a background color set to use the alt button colors.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/*
* Used to visually hide an element but still allow screen readers to access the element and its contents for accessibility.
*
* @return string  The styles needed to visually hide an element.
*/
.fade-up {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: 300ms opacity 300ms ease-out, 300ms transform 300ms ease-out;
}
.fade-up.in-viewport {
  opacity: 1 !important;
  transform: none !important;
}

/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma which task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/*
* This array is used to specify the fonts used on the project with the following parameters:
	base - the name for use in the font() mixin.
		css - the output CSS value.
		figma-name: - the 'font-family' name ued in the _figma-font-variable.scss file.
	)
*/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task which creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/* If additional colors need to be added to the _figma-color-variables.scss, they can be added to this variable: */
/* This variable controls the background colors generated in the ACF background_color field and the background color classes - bg-white, bg-neutral-10, etc: */
/* This variable controls the default text color on a light background. Used with paint(text) to generate a CSS variable that changes to use background font colors. */
/* If a background color uses a different font color than the default color, use these variables to specify the alternate colors */
/* Backgrounds specified in this variable will use the alternative text colors: */
/* Backgrounds specified in this variable will use the alternative button colors: */
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/****************
 * Block Spacing
 *
 * These variables are based on the "Spacing" rules found in the "Foundations" section in Figma. These control the default spacing between blocks of different colors.
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
:root {
  --viewport-edges: calc(clamp(1.25rem, 0.0714285714rem + 2.4553571429vw, 4rem));
}

@media (min-width: 64rem) {
  :root {
    --viewport-edges: calc(clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem));
    --column-width: calc(((var(--containerWidth)) - (11 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem))) / 12);
  }
}
body.mobile-menu-open {
  overflow: hidden;
}

.block-primary-navigation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  width: 100%;
}
@media print {
  .block-primary-navigation {
    display: none;
  }
}
body.admin-bar .block-primary-navigation {
  top: 2.875rem;
}
@media (min-width: 48rem) {
  body.admin-bar .block-primary-navigation {
    top: 2rem;
  }
}
@media (max-width: 47.98rem) {
  body.admin-bar .block-primary-navigation .block-primary-navigation__dropdown {
    top: 6.875rem;
    height: calc(var(--vh) * 100 - 6.875rem);
  }
}
@media (min-width: 48rem) {
  body.admin-bar .block-primary-navigation .block-primary-navigation__dropdown {
    top: 8rem;
  }
}
body.admin-bar .block-primary-navigation .block-primary-navigation__mobile-menu-wrapper {
  height: calc(var(--vh) * 100 - 2.875rem);
}
body.post-type-archive-library_block .block-primary-navigation {
  position: relative;
}
body.mobile-menu-open .block-primary-navigation .block-primary-navigation__mobile-menu-wrapper {
  display: block;
}
@media (max-width: 47.98rem) {
  body.navigation-dropdown-open .block-primary-navigation .block-primary-navigation__header-logo {
    visibility: hidden;
  }
  body.navigation-dropdown-open .block-primary-navigation .block-primary-navigation__mobile-menu-header {
    visibility: visible;
  }
}
@media (min-width: 48rem) {
  body.navigation-dropdown-open .block-primary-navigation .block-primary-navigation__header {
    border-bottom: 0.0625rem solid #c1cbd4;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__utility-bar {
    height: 2rem;
    background-color: #e5ebef;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__utility-bar > .container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
}
.block-primary-navigation__utility-bar-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0.75rem;
  column-gap: 0.75rem;
}
@media (min-width: 48rem) {
  .block-primary-navigation__utility-bar-links {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-left: auto;
    column-gap: 1.5rem;
  }
}
.block-primary-navigation__utility-bar-link {
  position: relative;
  display: block;
  color: #000;
  font-size: 0.75rem;
  line-height: 1;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__utility-bar-link {
    font-weight: var(--subtitle-1-font-weight);
    font-size: var(--subtitle-1-font-size);
    font-family: var(--subtitle-1-font-family);
    line-height: var(--subtitle-1-line-height);
    text-decoration: var(--subtitle-1-text-decoration);
    text-decoration: none;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__utility-bar-link:hover {
    color: #000;
    text-decoration: underline;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__utility-bar-link:not(:last-child)::after {
    position: absolute;
    top: 0;
    right: -0.75rem;
    content: "";
    width: 0.0625rem;
    height: 100%;
    background-color: #000;
  }
}
.block-primary-navigation__header {
  height: 4rem;
  background-color: #fff;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__header {
    border-bottom: 0.0625rem solid #c1cbd4;
  }
}
.block-primary-navigation__header > .container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.block-primary-navigation__header-logo {
  width: 6.5625rem;
  height: auto;
}
@media (min-width: 48rem) {
  .block-primary-navigation__header-links {
    display: flex;
    flex-wrap: nowrap;
    align-self: stretch;
    margin-right: auto;
    margin-left: clamp(2.25rem, -2.5921052632rem + 10.0877192982vw, 8rem);
    column-gap: 2.5rem;
  }
}
.block-primary-navigation__header-link {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__header-link {
    display: block;
    padding: 1.25rem;
    border-bottom: 0.0625rem solid #e5ebef;
  }
}
.block-primary-navigation__header-link:has(div[class*=dropdown]) .block-primary-navigation__header-link-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__header-link:has(div[class*=dropdown]) .block-primary-navigation__header-link-button {
    cursor: pointer;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__header-link:has(div[class*=dropdown]) .block-primary-navigation__header-link-button {
    display: inline-flex;
    justify-content: inherit;
  }
}
.block-primary-navigation__header-link:has(div[class*=dropdown]) .block-primary-navigation__header-link-button::after {
  content: var(--icon-chev-right);
  color: currentcolor;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  transition: color 0.2s linear;
  -moz-osx-font-smoothing: grayscale;
  /* stylelint-disable-line order/properties-alphabetical-order */
  -webkit-font-smoothing: antialiased;
  /* stylelint-disable-line order/properties-alphabetical-order */
}
@media (min-width: 48rem) {
  .block-primary-navigation__header-link:has(div[class*=dropdown]) .block-primary-navigation__header-link-button::after {
    content: var(--icon-chev-expand);
    margin-left: 0.25rem;
    font-size: 0.75rem;
  }
}
.block-primary-navigation__header-link:has(.block-primary-navigation__dropdown[aria-hidden=false])::before {
  position: absolute;
  left: 0;
  bottom: -0.0625rem;
  content: "";
  display: block;
  width: 100%;
  height: 0.1875rem;
  background-color: #0066ba;
}
.block-primary-navigation__header-link:has(.block-primary-navigation__dropdown[aria-hidden=false]) .block-primary-navigation__header-link-button::after {
  content: var(--icon-chev-collapse);
}
.block-primary-navigation__header-link:has(.block-primary-navigation__dropdown[aria-hidden=false]) .block-primary-navigation__dropdown {
  display: block;
}
.block-primary-navigation__header-link > .wp-block-button {
  margin-bottom: 0;
  transition: color 0.2s linear;
}
.block-primary-navigation__header-link > .wp-block-button:hover {
  color: #6c7074 !important;
}
.block-primary-navigation__header-link > .wp-block-button .wp-block-button__link {
  color: currentcolor !important;
  font-weight: 700;
}
.block-primary-navigation__header-link > .wp-block-button .wp-block-button__link::before {
  display: none !important;
}
.block-primary-navigation__header-buttons {
  padding: 0rem 1.25rem 1.5rem 1.25rem;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__header-buttons {
    order: 10;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__header-buttons {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    align-self: stretch;
    margin-left: auto;
    padding: 0;
    column-gap: 1rem;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__header-buttons .block-primary-navigation__header-button-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
}
.block-primary-navigation__header-buttons .block-primary-navigation__header-button-dropdown {
  display: none;
  margin-bottom: 1.5rem;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__header-buttons .block-primary-navigation__header-button-dropdown {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__header-buttons .block-primary-navigation__header-button-dropdown {
    position: absolute;
    top: 100%;
    right: -1.25rem;
    width: 10rem;
    margin-bottom: 0;
    padding: 1.25rem;
    background-color: #fff;
  }
}
body.language-dropdown-open .block-primary-navigation__header-buttons .block-primary-navigation__header-button-dropdown {
  display: grid;
}
@media (min-width: 48rem) {
  body.language-dropdown-open .block-primary-navigation__header-buttons .block-primary-navigation__header-button-dropdown {
    display: block;
  }
}
.block-primary-navigation__header-buttons .block-primary-navigation__header-button-dropdown span.wg-li,
.block-primary-navigation__header-buttons .block-primary-navigation__header-button-dropdown a.wg-li {
  font-weight: var(--body-2-font-weight);
  font-size: var(--body-2-font-size);
  font-family: var(--body-2-font-family);
  line-height: var(--body-2-line-height);
  display: block;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}
.block-primary-navigation__header-buttons .block-primary-navigation__header-button-dropdown span.wg-li:not(:last-child),
.block-primary-navigation__header-buttons .block-primary-navigation__header-button-dropdown a.wg-li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.block-primary-navigation__header-buttons .block-primary-navigation__header-button-dropdown a:hover {
  text-decoration: underline;
}
.block-primary-navigation__header-buttons button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
  color: #000;
  column-gap: 0.5rem;
  border: none;
  background: transparent;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__header-buttons button:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
body.search-dropdown-active .block-primary-navigation__header-buttons button.icon-search::before {
  content: var(--icon-close);
}
.block-primary-navigation__header-buttons button span {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  text-decoration: var(--subtitle-1-text-decoration);
  text-decoration: none;
}
@media (min-width: 48rem) {
  .block-primary-navigation__header-buttons button span {
    display: none;
  }
}
.block-primary-navigation__hamburger {
  position: relative;
  z-index: 1;
  display: block;
  width: 1.25rem;
  height: 0.9375rem;
  border: 0;
  background: transparent;
  outline: 0;
  box-shadow: none;
  cursor: pointer;
}
@media (min-width: 48rem) {
  .block-primary-navigation__hamburger {
    display: none;
  }
}
.block-primary-navigation__hamburger:hover, .block-primary-navigation__hamburger:focus {
  outline: 0;
}
.block-primary-navigation__hamburger span {
  position: absolute;
  left: 0;
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  border-radius: 9px;
  background: #000;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.45s ease-in-out;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__hamburger span {
    width: 1.25rem;
  }
}
.block-primary-navigation__hamburger span:nth-child(1) {
  top: 0;
  transform-origin: left center;
}
.block-primary-navigation__hamburger span:nth-child(2) {
  top: 0.5rem;
  transform-origin: left center;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__hamburger span:nth-child(2) {
    top: 0.375rem;
  }
}
.block-primary-navigation__hamburger span:nth-child(3) {
  top: 1rem;
  transform-origin: left center;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__hamburger span:nth-child(3) {
    top: 0.75rem;
  }
}
.block-primary-navigation__hamburger.active span:nth-child(1) {
  top: -0.0625rem;
  left: 0.125rem;
  transform: rotate(45deg);
}
.block-primary-navigation__hamburger.active span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.block-primary-navigation__hamburger.active span:nth-child(3) {
  top: 1rem;
  left: 0.125rem;
  transform: rotate(-45deg);
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__hamburger.active span:nth-child(3) {
    top: 0.8125rem;
  }
}
.block-primary-navigation__mobile-menu-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: none;
  width: 100%;
  height: calc(var(--vh) * 100);
  pointer-events: none;
}
@media (min-width: 48rem) {
  .block-primary-navigation__mobile-menu-wrapper {
    display: contents;
  }
}
.block-primary-navigation__mobile-menu-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  padding: 0rem 1.25rem;
  border-bottom: 0.0625rem solid #c1cbd4;
  visibility: hidden;
}
@media (min-width: 48rem) {
  .block-primary-navigation__mobile-menu-header {
    display: none;
  }
}
.block-primary-navigation__mobile-menu-header-back {
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  pointer-events: all;
}
.block-primary-navigation__mobile-menu-header-back::before {
  font-size: 1.25rem;
}
.block-primary-navigation__mobile-menu-header-title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 4.375rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5rem;
  text-align: center;
  transform: translate(-50%, -50%);
}
.block-primary-navigation__mobile-menu {
  display: grid;
  row-gap: 1.5rem;
  align-content: start;
  width: 100%;
  height: 100%;
  background-color: #fff;
  pointer-events: all;
}
@media (min-width: 48rem) {
  .block-primary-navigation__mobile-menu {
    display: contents;
  }
}
.block-primary-navigation__dropdown {
  position: fixed;
  top: 4rem;
  z-index: 2;
  display: none;
  width: 100vw;
  padding: 1.25rem 0rem 5rem 0rem;
  background-color: #fff;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__dropdown {
    left: 0;
    height: calc(var(--vh) * 100 - 4rem);
    overflow: scroll;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown {
    top: 6rem;
    left: 0;
    z-index: 10;
    display: block;
    padding: 3rem 0rem 4rem 0rem;
  }
}
.block-primary-navigation__dropdown[aria-hidden=true] {
  display: none;
}
.block-primary-navigation__dropdown[aria-hidden=false] {
  display: block;
}
.block-primary-navigation__dropdown-cards .block-primary-navigation__all-link {
  margin-top: 1.625rem;
}
.block-primary-navigation__dropdown-cards-columns {
  display: grid;
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-cards-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem);
  }
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__dropdown-cards-column {
    display: contents;
  }
  .block-primary-navigation__dropdown-cards-column:first-child .block-primary-navigation__dropdown-links {
    margin-top: 2.625rem;
  }
  .block-primary-navigation__dropdown-cards-column:last-child .block-primary-navigation__dropdown-link:last-child {
    margin-bottom: 0;
  }
}
.block-primary-navigation__dropdown-card {
  position: relative;
  display: block;
  background-color: #000;
  overflow: hidden;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__dropdown-card {
    order: -1;
    margin-bottom: 1rem;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-card {
    aspect-ratio: 1/0.563;
  }
}
.block-primary-navigation__dropdown-card:hover .block-primary-navigation__dropdown-card-image {
  transform: scale(1.05);
}
.block-primary-navigation__dropdown-card-text {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.625rem 1.625rem 3.25rem 1.625rem;
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-card-text {
    padding: clamp(1.25rem, 1.0892857143rem + 0.3348214286vw, 1.625rem) clamp(1.25rem, 1.0892857143rem + 0.3348214286vw, 1.625rem) clamp(1.25rem, 1.0892857143rem + 0.3348214286vw, 1.625rem) clamp(1.25rem, 1.0892857143rem + 0.3348214286vw, 1.625rem);
  }
}
.block-primary-navigation__dropdown-card-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: calc(100% - 3.25rem);
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.block-primary-navigation__dropdown-card-title::before {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}
.block-primary-navigation__dropdown-card-description {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  text-decoration: var(--subtitle-3-text-decoration);
  margin-top: 0.5rem;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__dropdown-card-description {
    font-size: 0.8125rem;
  }
}
.block-primary-navigation__dropdown-card img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.2s linear;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__dropdown-links {
    display: grid;
    justify-content: flex-start;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-links {
    margin-top: 2.125rem;
  }
}
.block-primary-navigation__dropdown-link {
  display: block;
  margin-bottom: 1.25rem;
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-link {
    margin-bottom: 0;
    padding: 0.625rem 0.75rem;
    transition: background-color 0.2s linear;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-link:hover {
    background-color: #e5ebef;
  }
}
.block-primary-navigation__dropdown-link > span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.block-primary-navigation__dropdown-link > span::before {
  display: block;
  margin-right: 0.5rem;
  color: #0066ba;
  font-size: 1.25rem;
}
.block-primary-navigation__dropdown-link-description {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  text-decoration: var(--subtitle-3-text-decoration);
  color: #3b3d3f;
  text-decoration: none;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__dropdown-link-description {
    font-size: 0.8125rem;
  }
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__dropdown-tabs {
    padding-top: 0;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-tabs {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-tabs-changer {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem);
  }
}
.block-primary-navigation__dropdown-tabs.mobile-tab-open .block-primary-navigation__dropdown-tabs-buttons {
  display: none;
}
.block-primary-navigation__dropdown-tabs-buttons {
  grid-column: span 3;
  position: relative;
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-tabs-buttons {
    padding: 3rem 0rem 4rem 0rem;
  }
  .block-primary-navigation__dropdown-tabs-buttons::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: -1;
    height: 100%;
    background-color: #eeeeef;
  }
}
@media (min-width: 48rem) and (min-width: 48rem) {
  .block-primary-navigation__dropdown-tabs-buttons::before {
    left: clamp(-4rem, 1.0657894737rem + -4.8245614035vw, -1.25rem);
    width: calc(((var(--containerWidth) - (11 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem))) / 12 * 4) + (3 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem)) + clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem));
  }
}
@media (min-width: 48rem) and (min-width: 64rem) {
  .block-primary-navigation__dropdown-tabs-buttons::before {
    left: clamp(-4rem, 1.0657894737rem + -4.8245614035vw, -1.25rem);
    width: calc(((var(--containerWidth) - (11 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem))) / 12 * 3) + (2 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem)) + clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem));
  }
}
@media (min-width: 48rem) and (min-width: 1440px) {
  .block-primary-navigation__dropdown-tabs-buttons::before {
    left: calc((100vw - var(--containerMaxWidth)) / -2);
    width: calc((var(--containerMaxWidth) - (11 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem))) / 12 * 3 + (2 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem)) + (100vw - var(--containerMaxWidth)) / 2);
    max-width: var(--containerMaxWidth);
  }
}
.block-primary-navigation__dropdown-tabs-button {
  position: relative;
  display: block;
  width: auto;
  height: auto;
  padding: 0.75rem 0;
  text-align: left;
  border: none;
  background: none;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__dropdown-tabs-button {
    width: calc(100% + 2.5rem);
    margin-right: -1.25rem;
    margin-left: -1.25rem;
    padding: 1.25rem;
    border-bottom: 0.0625rem solid #e5ebef;
  }
  .block-primary-navigation__dropdown-tabs-button::before {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-tabs-button:hover .block-primary-navigation__dropdown-tabs-button-title {
    color: #6c7074;
  }
  .block-primary-navigation__dropdown-tabs-button[aria-expanded=false]::before {
    display: none;
  }
  .block-primary-navigation__dropdown-tabs-button[aria-expanded=true]::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: -1;
    width: var(--column-width);
    height: 100%;
    padding: 0 var(--viewport-edges);
    background-color: #0066ba;
  }
}
@media (min-width: 48rem) and (min-width: 48rem) {
  .block-primary-navigation__dropdown-tabs-button[aria-expanded=true]::before {
    left: clamp(-4rem, 1.0657894737rem + -4.8245614035vw, -1.25rem);
    width: calc(((var(--containerWidth) - (11 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem))) / 12 * 4) + (3 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem)) + clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem));
  }
}
@media (min-width: 48rem) and (min-width: 64rem) {
  .block-primary-navigation__dropdown-tabs-button[aria-expanded=true]::before {
    left: clamp(-4rem, 1.0657894737rem + -4.8245614035vw, -1.25rem);
    width: calc(((var(--containerWidth) - (11 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem))) / 12 * 3) + (2 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem)) + clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem) + (clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem) * 2));
  }
}
@media (min-width: 48rem) and (min-width: 1440px) {
  .block-primary-navigation__dropdown-tabs-button[aria-expanded=true]::before {
    left: calc((100vw - var(--containerMaxWidth)) / -2);
    width: calc((var(--containerMaxWidth) - (11 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem))) / 12 * 3 + (2 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem)) + (100vw - var(--containerMaxWidth)) / 2 + (clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem) * 2));
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-tabs-button[aria-expanded=true]::after {
    position: absolute;
    top: 50%;
    left: 0;
    content: var(--icon-chev-right);
    color: #fff;
    font-size: 1.5rem;
    font-family: iconfont-propel;
    transform: translate(-100%, -50%);
  }
}
@media (min-width: 48rem) and (min-width: 48rem) {
  .block-primary-navigation__dropdown-tabs-button[aria-expanded=true]::after {
    left: calc((var(--containerWidth) - (11 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem))) / 12 * 4 + (3 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem)) - 0.75rem);
  }
}
@media (min-width: 48rem) and (min-width: 64rem) {
  .block-primary-navigation__dropdown-tabs-button[aria-expanded=true]::after {
    left: calc((var(--containerWidth) - (11 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem))) / 12 * 3 + (2 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem)) + (clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem) * 2) - 0.75rem);
  }
}
@media (min-width: 48rem) and (min-width: 1440px) {
  .block-primary-navigation__dropdown-tabs-button[aria-expanded=true]::after {
    left: calc((var(--containerMaxWidth) - (11 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem))) / 12 * 3 + (2 * clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem)) + (clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem) * 2) - 0.75rem);
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-tabs-button[aria-expanded=true] .block-primary-navigation__dropdown-tabs-button-title,
.block-primary-navigation__dropdown-tabs-button[aria-expanded=true] .block-primary-navigation__dropdown-tabs-button-description {
    color: #fff;
  }
}
.block-primary-navigation__dropdown-tabs-button-title {
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  display: block;
  color: #000;
  transition: color 0.2s linear;
}
.block-primary-navigation__dropdown-tabs-button-description {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  text-decoration: var(--subtitle-3-text-decoration);
  display: block;
  color: #3b3d3f;
  text-decoration: none;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__dropdown-tabs-button-description {
    display: none;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-tabs-content {
    grid-column: 5/span 8;
    padding: 3rem 0rem 4rem 0rem;
  }
}
.block-primary-navigation__dropdown-tabs .wp-block-button.is-style-tertiary .block-primary-navigation__dropdown-tabs-overview-link {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  margin-top: 0;
}
.block-primary-navigation__dropdown-tabs-tab[aria-hidden=true] {
  display: none;
}
.block-primary-navigation__dropdown-tabs-tab[aria-hidden=false] {
  display: grid;
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-tabs-tab[aria-hidden=false] {
    display: block;
  }
}
.block-primary-navigation__dropdown-tabs-tab-header {
  margin: 0rem -1.25rem 1.5rem -1.25rem;
  padding: 1.25rem;
  background-color: #eeeeef;
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-tabs-tab-header {
    display: none;
  }
}
.block-primary-navigation__dropdown-tabs-tab-header-title {
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  display: block;
}
.block-primary-navigation__dropdown-tabs-tab-header-description {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  text-decoration: var(--subtitle-3-text-decoration);
  display: block;
  margin-top: 0.25rem;
  text-decoration: none;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__dropdown-tabs-tab-header-description {
    color: #3b3d3f;
  }
}
.block-primary-navigation__dropdown-tabs-tab .block-primary-navigation__dropdown-tabs-overview-link {
  margin-top: 0;
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__dropdown-tabs-tab .block-primary-navigation__dropdown-tabs-overview-link {
    order: 999;
    margin: 1.625rem 0rem 0rem 0rem;
  }
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__dropdown-tabs-tab .block-primary-navigation__dropdown-tabs-overview-link .wp-block-button__link {
    font-weight: var(--link-2-font-weight);
    font-size: var(--link-2-font-size);
    font-family: var(--link-2-font-family);
    line-height: var(--link-2-line-height);
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-tabs-tab-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: #000;
    column-gap: clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem);
  }
}
@media (max-width: 47.98rem) {
  .block-primary-navigation__dropdown-tabs-tab-link-container:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 48rem) {
  .block-primary-navigation__dropdown-tabs-tab-link {
    display: inline-block;
    margin: 0;
    padding: 0.625rem 0.75rem;
    vertical-align: bottom;
    transition: background-color 0.2s linear;
  }
  .block-primary-navigation__dropdown-tabs-tab-link:hover {
    background-color: #e5ebef;
  }
}
.block-primary-navigation__dropdown-tabs-tab-link-title {
  display: block;
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.block-primary-navigation__dropdown-tabs-tab-link-description {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  text-decoration: var(--subtitle-3-text-decoration);
  display: block;
  margin-top: 0.25rem;
  color: #3b3d3f;
  font-size: 0.8125rem;
  text-decoration: none;
}