/* 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;
}
*/
.wp-block-button {
  margin-top: clamp(1.5rem, 0.8684210526rem + 1.3157894737vw, 2.25rem);
  margin-bottom: clamp(1.5rem, 0.8684210526rem + 1.3157894737vw, 2.25rem);
  line-height: 0;
}
.wp-block-button--icon-left .wp-block-button__link::before {
  content: "";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: var(--buttonIcon);
  margin-right: 0.25rem;
  font-size: 1.25em;
}
.wp-block-button--icon-right .wp-block-button__link::after {
  content: "";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: var(--buttonIcon);
  margin-left: 0.25rem;
  font-size: 1.25em;
}
.wp-block-buttons .wp-block-button {
  margin-top: auto;
  margin-bottom: auto;
}
.wp-block-button.aligncenter {
  text-align: center;
}
.wp-block-button.alignleft {
  text-align: left;
}
.wp-block-button.alignright {
  text-align: right;
}
.wp-block-button:not([class*=is-style-]) .wp-block-button__link, .wp-block-button.is-style-primary .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);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.877rem 1.125rem;
  text-align: center;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  color: #fff;
  border: 2px solid #0066ba;
  background-color: #0066ba;
}
.wp-block-button:not([class*=is-style-]) .wp-block-button__link.hover, a:hover .wp-block-button:not([class*=is-style-]) .wp-block-button__link, a:focus .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .wp-block-button:not([class*=is-style-]) .wp-block-button__link:hover, .wp-block-button:not([class*=is-style-]) .wp-block-button__link:focus, .wp-block-button.is-style-primary .wp-block-button__link.hover, a:hover .wp-block-button.is-style-primary .wp-block-button__link, a:focus .wp-block-button.is-style-primary .wp-block-button__link, .wp-block-button.is-style-primary .wp-block-button__link:hover, .wp-block-button.is-style-primary .wp-block-button__link:focus {
  color: #fff;
  border-color: #003661;
  background-color: #003661;
}
.bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .bg-white .wp-block-button.is-style-primary .wp-block-button__link {
  color: #fff;
  border: 2px solid #0066ba;
  background-color: #0066ba;
}
.bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link.hover, a:hover .bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link, a:focus .bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link:hover, .bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link:focus, .bg-white .wp-block-button.is-style-primary .wp-block-button__link.hover, a:hover .bg-white .wp-block-button.is-style-primary .wp-block-button__link, a:focus .bg-white .wp-block-button.is-style-primary .wp-block-button__link, .bg-white .wp-block-button.is-style-primary .wp-block-button__link:hover, .bg-white .wp-block-button.is-style-primary .wp-block-button__link:focus {
  color: #fff;
  border-color: #003661;
  background-color: #003661;
}
.wp-block-button.is-style-secondary .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);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.877rem 1.125rem;
  text-align: center;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  color: #0066ba;
  border: 2px solid #0066ba;
  background-color: transparent;
}
.bg-dark .wp-block-button.is-style-secondary .wp-block-button__link {
  color: #fff;
  border-color: #fff;
}
.bg-dark .wp-block-button.is-style-secondary .wp-block-button__link.hover, a:hover .bg-dark .wp-block-button.is-style-secondary .wp-block-button__link, a:focus .bg-dark .wp-block-button.is-style-secondary .wp-block-button__link, .bg-dark .wp-block-button.is-style-secondary .wp-block-button__link:hover, .bg-dark .wp-block-button.is-style-secondary .wp-block-button__link:focus {
  color: #003661;
  border-color: #fff;
  background-color: #fff;
}
.wp-block-button.is-style-secondary .wp-block-button__link.hover, a:hover .wp-block-button.is-style-secondary .wp-block-button__link, a:focus .wp-block-button.is-style-secondary .wp-block-button__link, .wp-block-button.is-style-secondary .wp-block-button__link:hover, .wp-block-button.is-style-secondary .wp-block-button__link:focus {
  color: #0066ba;
  border-color: #0066ba;
  background-color: #e5ebef;
}
.bg-white .wp-block-button.is-style-secondary .wp-block-button__link {
  color: #0066ba;
  border: 2px solid #0066ba;
  background-color: transparent;
}
.bg-white .wp-block-button.is-style-secondary .wp-block-button__link.hover, a:hover .bg-white .wp-block-button.is-style-secondary .wp-block-button__link, a:focus .bg-white .wp-block-button.is-style-secondary .wp-block-button__link, .bg-white .wp-block-button.is-style-secondary .wp-block-button__link:hover, .bg-white .wp-block-button.is-style-secondary .wp-block-button__link:focus {
  color: #fff;
  border-color: #003661;
  background-color: #003661;
}
.wp-block-button.is-style-tertiary {
  margin-top: clamp(1.25rem, 0.6184210526rem + 1.3157894737vw, 2rem);
  margin-bottom: clamp(1.25rem, -0.2236842105rem + 3.0701754386vw, 3rem);
}
.wp-block-button.is-style-tertiary:first-child {
  margin-top: 0;
}
.wp-block-button.is-style-tertiary:last-child {
  margin-bottom: 0;
}
.wp-block-buttons .wp-block-button.is-style-tertiary {
  margin-top: auto;
  margin-bottom: auto;
}
.wp-block-button.is-style-tertiary.wp-block-button--small .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);
}
.wp-block-button.is-style-tertiary .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);
  position: relative;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: #0066ba;
  border: none;
  border-radius: 0;
  background-color: transparent;
  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);
  font-weight: 400;
}
.bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link {
  color: #fff;
}
.bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link.hover, a:hover .bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link, a:focus .bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link, .bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link:hover, .bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link:focus {
  color: #cbcccd;
}
.wp-block-button.is-style-tertiary .wp-block-button__link::before {
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: transparent;
  transition: background-color 0.2s linear;
}
.wp-block-button.is-style-tertiary .wp-block-button__link.hover, a:hover .wp-block-button.is-style-tertiary .wp-block-button__link, a:focus .wp-block-button.is-style-tertiary .wp-block-button__link, .wp-block-button.is-style-tertiary .wp-block-button__link:hover, .wp-block-button.is-style-tertiary .wp-block-button__link:focus {
  color: #003661;
}
.wp-block-button.is-style-tertiary .wp-block-button__link.hover::before, a:hover .wp-block-button.is-style-tertiary .wp-block-button__link::before, a:focus .wp-block-button.is-style-tertiary .wp-block-button__link::before, .wp-block-button.is-style-tertiary .wp-block-button__link:hover::before, .wp-block-button.is-style-tertiary .wp-block-button__link:focus::before {
  background-color: currentcolor;
}
.bg-white .wp-block-button.is-style-tertiary .wp-block-button__link {
  color: #0066ba;
}
.bg-white .wp-block-button.is-style-tertiary .wp-block-button__link:hover, .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link:focus {
  color: #003661;
}
.bg-white .wp-block-button.is-style-tertiary .wp-block-button__link:hover::before, .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link:focus::before {
  background-color: currentcolor;
}
.wp-block-button.is-style-tertiary.wp-block-button--icon-left .wp-block-button__link::before {
  position: relative;
  left: auto;
  bottom: auto;
  content: var(--buttonIcon);
  width: auto;
  height: auto;
  background-color: transparent;
}
.wp-block-button.is-style-tertiary:not(.wp-block-button--icon-right) .wp-block-button__link:hover {
  color: #0066ba;
}
.wp-block-button.is-style-tertiary.wp-block-button--icon-right .wp-block-button__link::before {
  display: none;
}
@media (max-width: 35.98rem) {
  .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .wp-block-button.is-style-primary .wp-block-button__link, .wp-block-button.is-style-secondary .wp-block-button__link {
    width: 100%;
  }
}
.wp-block-button:not([class*=is-style-]).wp-block-button--icon-left .wp-block-button__link, .wp-block-button.is-style-primary.wp-block-button--icon-left .wp-block-button__link, .wp-block-button.is-style-secondary.wp-block-button--icon-left .wp-block-button__link {
  padding-left: 1.625rem;
}
.wp-block-button:not([class*=is-style-]).wp-block-button--icon-right .wp-block-button__link, .wp-block-button.is-style-primary.wp-block-button--icon-right .wp-block-button__link, .wp-block-button.is-style-secondary.wp-block-button--icon-right .wp-block-button__link {
  padding-right: 1.625rem;
}
.wp-block-button:not([class*=is-style-]).wp-block-button--small .wp-block-button__link, .wp-block-button.is-style-primary.wp-block-button--small .wp-block-button__link, .wp-block-button.is-style-secondary.wp-block-button--small .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);
  padding: 0.25rem 0.875rem;
}
.wp-block-button:not([class*=is-style-]).wp-block-button--hidden-label .wp-block-button__link, .wp-block-button.is-style-primary.wp-block-button--hidden-label .wp-block-button__link, .wp-block-button.is-style-secondary.wp-block-button--hidden-label .wp-block-button__link {
  width: 3rem;
  height: 3rem;
  padding: 0;
  font-size: 0;
  border-radius: 50%;
}
.wp-block-button:not([class*=is-style-]).wp-block-button--hidden-label .wp-block-button__link::after, .wp-block-button.is-style-primary.wp-block-button--hidden-label .wp-block-button__link::after, .wp-block-button.is-style-secondary.wp-block-button--hidden-label .wp-block-button__link::after {
  margin: auto;
  font-size: 1.25rem;
}
.wp-block-button.is-style-social .wp-block-button__link {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: #0066ba;
  font-size: 0;
  line-height: 0;
  text-align: center;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear;
}
.bg-dark .wp-block-button.is-style-social .wp-block-button__link {
  border-color: #6c7074;
}
.bg-dark .wp-block-button.is-style-social .wp-block-button__link.hover, a:hover .bg-dark .wp-block-button.is-style-social .wp-block-button__link, a:focus .bg-dark .wp-block-button.is-style-social .wp-block-button__link, .bg-dark .wp-block-button.is-style-social .wp-block-button__link:hover, .bg-dark .wp-block-button.is-style-social .wp-block-button__link:focus {
  border-color: #fff;
}
.wp-block-button.is-style-social .wp-block-button__link::after {
  margin: 0;
  font-size: 1.5rem;
  transform: none;
}
.wp-block-button.is-style-social .wp-block-button__link.hover, a:hover .wp-block-button.is-style-social .wp-block-button__link, a:focus .wp-block-button.is-style-social .wp-block-button__link, .wp-block-button.is-style-social .wp-block-button__link:hover, .wp-block-button.is-style-social .wp-block-button__link:focus {
  color: #003661;
}
.block-editor-block-list__block .wp-block-button.is-style-social .wp-block-button__link {
  font-size: 0.875rem;
  line-height: 1.4;
}
.block-editor-block-list__block .wp-block-button.is-style-social .wp-block-button__link::before {
  content: "Screen Reader Label:" !important;
  display: block !important;
  font-size: 0.625rem;
}
.wp-block-button.is-style-social.wp-block-button--icon-left .wp-block-button__link::before {
  position: relative;
  left: auto;
  bottom: auto;
  content: var(--buttonIcon);
  width: auto;
  height: auto;
  background-color: transparent;
}
.wp-block-button.is-style-social a {
  text-decoration: none !important;
}
.wp-block-button.is-style-social.wp-block-button--icon-right .wp-block-button__link::before {
  display: none;
}
.wp-block-button.is-style-text {
  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);
  padding: 0;
  color: var(--blockColor, #000);
  text-decoration: none;
  border: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear;
}
@media (max-width: 47.98rem) {
  .wp-block-button.is-style-text {
    font-size: 1.25rem;
  }
}
.wp-block-button.is-style-text:hover, .wp-block-button.is-style-text:focus {
  color: var(--blockHoverColor, #000);
  text-decoration: underline;
}
.wp-block-button.is-style-text .wp-element-button {
  padding: 0;
  color: var(--blockColor, #000);
  border: none;
  background-color: transparent;
  transition: color 0.2s linear;
}
.wp-block-button.is-style-text .wp-element-button:hover, .wp-block-button.is-style-text .wp-element-button:focus {
  color: var(--blockHoverColor, #000);
  text-decoration: underline;
}
.wp-block-button.is-style-text button.wp-element-button {
  cursor: default;
}
.wp-block-button.is-style-text button.wp-element-button:hover, .wp-block-button.is-style-text button.wp-element-button:focus {
  text-decoration: none;
}
.wp-block-button__link.aligncenter {
  text-align: center;
}
.wp-block-button__link.alignleft {
  text-align: left;
}
.wp-block-button__link.alignright {
  text-align: right;
}