/* 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;
}
*/
@media print {
  .block-text-sidebar .block-text-sidebar__sidebar-column,
.block-text-sidebar .block-text-sidebar__share-column {
    display: none;
  }
}
.block-text-sidebar__grid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 75rem) {
  .block-text-sidebar__grid {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .block-text-sidebar__grid--has-sidebar {
    justify-content: space-between;
  }
}
.block-text-sidebar__grid--has-contacts {
  display: grid;
}
@media (min-width: 48rem) {
  .block-text-sidebar__grid--has-contacts {
    grid-template-columns: repeat(12, 1fr);
  }
}
.block-text-sidebar__grid--has-contacts .block-text-sidebar__content-column {
  width: auto;
  max-width: none;
}
@media (min-width: 48rem) {
  .block-text-sidebar__grid--has-contacts .block-text-sidebar__content-column {
    grid-column: span 8;
  }
}
@media (min-width: 48rem) {
  .block-text-sidebar__grid--has-contacts .block-text-sidebar__sidebar-column {
    grid-column: 10/span 3;
  }
}
@media (max-width: 104.98rem) {
  .block-text-sidebar__grid--has-social-share {
    position: relative;
    padding-bottom: 4rem;
  }
  .block-text-sidebar__grid--has-social-share .back-to-top__wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
}
.block-text-sidebar__share-column {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 75rem) {
  .block-text-sidebar__share-column {
    order: 1;
    max-width: 6.5rem;
    padding-right: 5rem;
  }
}
.block-text-sidebar__share-column .share-icons {
  margin-bottom: 0;
}
.block-text-sidebar__content-column {
  order: 2;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 75rem) {
  .block-text-sidebar__content-column {
    order: 3;
    width: 66%;
    max-width: 47rem;
  }
}
.block-text-sidebar__content-column:first-child {
  max-width: 54rem;
}
.block-text-sidebar__content-column .acf-block:last-child {
  padding-bottom: 0 !important;
}
.block-text-sidebar__content-column .block-media-standard:first-child {
  padding-top: 0;
}
.block-text-sidebar__content-column .back-to-top {
  display: inline-block;
  margin-top: 2.25rem;
}
.block-text-sidebar__content-column .featured-item--image {
  margin-top: var(--body-1-margin-bottom);
  margin-bottom: var(--body-1-margin-bottom);
}
@media (min-width: 75rem) {
  .block-text-sidebar__content-column .featured-item--image {
    margin-top: 0;
  }
}
.block-text-sidebar__content-column figure.image {
  margin-top: var(--body-1-margin-bottom);
  margin-bottom: var(--body-1-margin-bottom);
}
.block-text-sidebar__content-column details.accordion {
  margin-top: var(--body-1-margin-bottom);
  margin-bottom: var(--body-1-margin-bottom);
  border-top: 1px solid #cbcccd;
  border-bottom: 1px solid #cbcccd;
}
.block-text-sidebar__content-column details.accordion summary.accordion__title {
  font-weight: var(--t4-font-weight);
  font-size: var(--t4-font-size);
  font-family: var(--t4-font-family);
  line-height: var(--t4-line-height);
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: clamp(1.5rem, 0.8684210526rem + 1.3157894737vw, 2.25rem) clamp(2.5rem, 1.6578947368rem + 1.7543859649vw, 3.5rem) clamp(1.5rem, 0.8684210526rem + 1.3157894737vw, 2.25rem) clamp(0.625rem, -0.1118421053rem + 1.5350877193vw, 1.5rem);
  color: var(--blockColor, #000);
  color: #000;
  text-align: left;
  border: none;
  border-radius: 0;
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s linear;
}
.block-text-sidebar__content-column details.accordion summary.accordion__title::before, .block-text-sidebar__content-column details.accordion summary.accordion__title::after {
  position: absolute;
  top: calc(50% - 0.75rem);
  right: 0;
  right: clamp(0.625rem, -0.1118421053rem + 1.5350877193vw, 1.5rem);
  color: #0066ba;
  border: 1px solid #0066ba;
  transition: transform 0.4s ease-in-out;
}
.block-text-sidebar__content-column details.accordion summary.accordion__title::before {
  content: "\ea30";
  font-weight: 400;
  font-size: 1.125rem;
  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;
}
.block-text-sidebar__content-column details.accordion summary.accordion__title::after {
  content: "\ea34";
  font-weight: 400;
  font-size: 1.125rem;
  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;
}
.block-text-sidebar__content-column details.accordion summary.accordion__title.active::before {
  transform: rotate(180deg) scaleY(0);
}
.block-text-sidebar__content-column details.accordion summary.accordion__title.active::after {
  transform: rotate(180deg);
}
.block-text-sidebar__content-column details.accordion[open] summary.accordion__title::before {
  transform: rotate(180deg) scaleY(0);
}
.block-text-sidebar__content-column details.accordion[open] summary.accordion__title::after {
  transform: rotate(180deg);
}
.block-text-sidebar__content-column details.accordion .accordion__content {
  margin-top: -0.5rem;
  margin-bottom: 1.125rem;
  padding: 0 clamp(2.5rem, 1.6578947368rem + 1.7543859649vw, 3.5rem) 0 clamp(0.625rem, -0.1118421053rem + 1.5350877193vw, 1.5rem);
  color: #000;
}
@media (min-width: 48rem) {
  .block-text-sidebar__content-column details.accordion .accordion__content {
    margin-top: -0.75rem;
  }
}
.block-text-sidebar__content-column figure.wp-block-table td,
.block-text-sidebar__content-column figure.wp-block-table th {
  border: 1px solid;
}
.block-text-sidebar__sidebar-column {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 0.8684210526rem + 1.3157894737vw, 2.25rem);
  margin-bottom: 2rem;
}
@media (min-width: 75rem) {
  .block-text-sidebar__sidebar-column {
    order: 3;
    flex: 1 1 0;
    max-width: 25.875rem;
    margin-bottom: 0;
    padding-left: 1.5625rem;
  }
}
.block-text-sidebar__sidebar-column .overline {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  margin-bottom: var(--overline-margin-bottom);
}
.block-text-sidebar__sidebar-column .overline:first-child {
  margin-top: 0;
}
.block-text-sidebar__sidebar-column .overline:last-child {
  margin-bottom: 0;
}
.block-text-sidebar__sidebar-column .block-text-sidebar__section:not(.block-text-sidebar__box-content) {
  width: 100%;
}
.block-text-sidebar__sidebar-column .block-text-sidebar__section[data-index="0"] {
  order: 0;
}
.block-text-sidebar__sidebar-column .block-text-sidebar__section[data-index="1"] {
  order: 1;
}
.block-text-sidebar__sidebar-column .block-text-sidebar__section[data-index="2"] {
  order: 2;
}
.block-text-sidebar__sidebar-column .block-text-sidebar__section[data-index="4"] {
  order: 4;
}
.block-text-sidebar__sidebar-column .block-text-sidebar__section[data-index="5"] {
  order: 5;
}
.block-text-sidebar__sidebar-column .block-text-sidebar__section[data-index="6"] {
  order: 6;
}
.block-text-sidebar__sidebar-column .block-text-sidebar__section[data-index="7"] {
  order: 7;
}
.block-text-sidebar__contacts-heading {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
}
.block-text-sidebar__contacts-see-all {
  font-weight: var(--body-1-font-weight);
  font-size: var(--body-1-font-size);
  font-family: var(--body-1-font-family);
  line-height: var(--body-1-line-height);
  color: #0066ba;
  text-decoration: underline;
}
.block-text-sidebar__contacts-see-all:hover {
  color: #003661;
  text-decoration: underline;
}
.block-text-sidebar__contact {
  margin-bottom: 2.25rem;
}
.block-text-sidebar__contact-image {
  display: block;
  margin-bottom: 0.5625rem;
}
.block-text-sidebar__contact-info::after {
  content: "";
  display: block;
  width: 6.75rem;
  height: 0.3125rem;
  margin: 1.125rem 0;
  background-color: #78acdd;
}
.block-text-sidebar__contact-name {
  font-weight: var(--t3-font-weight);
  font-size: var(--t3-font-size);
  font-family: var(--t3-font-family);
  line-height: var(--t3-line-height);
  margin-bottom: 0.5625rem;
}
.block-text-sidebar__contact-job-title {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  margin-bottom: 0.5625rem;
}
.block-text-sidebar__contact-email {
  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);
  color: #0066ba;
  text-decoration: none;
}
.block-text-sidebar__contact-email:hover {
  text-decoration: underline;
}
.block-text-sidebar__contact-details {
  font-weight: var(--body-1-font-weight);
  font-size: var(--body-1-font-size);
  font-family: var(--body-1-font-family);
  line-height: var(--body-1-line-height);
}
.block-text-sidebar__contact-details > div {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.block-text-sidebar__contact-office {
  margin-bottom: 0.5625rem;
}
.block-text-sidebar__contact-office::before {
  content: "\ea2f";
  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;
  margin-right: 0.5625rem;
  color: #78acdd;
  vertical-align: middle;
}
.block-text-sidebar__contact-phone::before {
  content: "\ea37";
  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;
  margin-right: 0.5625rem;
  color: #78acdd;
  vertical-align: middle;
}
.block-text-sidebar__contact-phone-link {
  color: #000;
}
.block-text-sidebar__sidebar-links {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 0.8684210526rem + 1.3157894737vw, 2.25rem);
  /**&:last-child {
  	@include media-breakpoint-up(xl) {
  		padding-left: rem(144);
  	}
  }**/
}
@media (min-width: 75rem) {
  .block-text-sidebar__sidebar-links {
    max-width: 19rem;
    margin-left: auto;
    padding-left: 0;
  }
}
.block-text-sidebar__sidebar-links .wp-block-list.no-bullets {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}
.block-text-sidebar__sidebar-links .wp-block-list.no-bullets .wp-block-list-item::before {
  display: none;
}
.block-text-sidebar__sidebar-links .wp-block-list.no-bullets a {
  text-decoration: underline;
}
.block-text-sidebar__sidebar-links .wp-block-list a {
  text-decoration: none;
}
.block-text-sidebar__sidebar-links .wp-block-list:not(.is-style-check-icon):not(.no-bullets) {
  padding-left: 1.25rem;
}
.block-text-sidebar__sidebar-links:not(.is-style-check-icon) .wp-block-list-item::before {
  left: -1.1875rem;
}
.block-text-sidebar__sidebar-links .wp-block-list-item:not(:last-child) {
  margin-bottom: 0.5625rem;
}
@media (max-width: 47.98rem) {
  .block-text-sidebar__links-section--people {
    margin-bottom: 0;
  }
}
@media (max-width: 104.98rem) {
  .block-text-sidebar__links-section.hide-on-mobile {
    display: none;
  }
}
@media (max-width: 63.98rem) {
  .block-text-sidebar .block-text-sidebar__sidebar-links--post,
.block-text-sidebar .block-text-sidebar__links-section--people {
    margin-bottom: 0;
  }
}
.block-text-sidebar__box-content {
  padding: 1.125rem;
  background-color: #eeeeef;
}
@media (min-width: 75rem) {
  .block-text-sidebar__box-content {
    margin-left: 2rem;
  }
}
.block-text-sidebar__box-content > div .wp-block-button {
  margin: 0;
}
.block-text-sidebar__box-content-list {
  padding-left: 0;
  list-style: none;
}
.block-text-sidebar__box-content-list li {
  display: flex;
  gap: 1.125rem;
  align-items: center;
  list-style: none;
}
.block-text-sidebar__box-content-list li span {
  color: #78acdd;
}
.block-text-sidebar__box-content-link a {
  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;
  text-decoration: none;
}
.bg-dark .block-text-sidebar__box-content-link a {
  color: #fff;
}
.bg-dark .block-text-sidebar__box-content-link a.hover, a:hover .bg-dark .block-text-sidebar__box-content-link a, a:focus .bg-dark .block-text-sidebar__box-content-link a, .bg-dark .block-text-sidebar__box-content-link a:hover, .bg-dark .block-text-sidebar__box-content-link a:focus {
  color: #cbcccd;
}
.block-text-sidebar__box-content-link a::before {
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: transparent;
  transition: background-color 0.2s linear;
}
.block-text-sidebar__box-content-link a.hover, a:hover .block-text-sidebar__box-content-link a, a:focus .block-text-sidebar__box-content-link a, .block-text-sidebar__box-content-link a:hover, .block-text-sidebar__box-content-link a:focus {
  color: #003661;
}
.block-text-sidebar__box-content-link a.hover::before, a:hover .block-text-sidebar__box-content-link a::before, a:focus .block-text-sidebar__box-content-link a::before, .block-text-sidebar__box-content-link a:hover::before, .block-text-sidebar__box-content-link a:focus::before {
  background-color: currentcolor;
}
.bg-white .block-text-sidebar__box-content-link a {
  color: #0066ba;
}
.bg-white .block-text-sidebar__box-content-link a:hover, .bg-white .block-text-sidebar__box-content-link a:focus {
  color: #003661;
}
.bg-white .block-text-sidebar__box-content-link a:hover::before, .bg-white .block-text-sidebar__box-content-link a:focus::before {
  background-color: currentcolor;
}
.block-text-sidebar__box-content-link a:hover::before, .block-text-sidebar__box-content-link a:focus::before {
  display: none;
}
.block-text-sidebar__box-content-pdf-download {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  column-gap: 0.5rem;
}
@media (min-width: 75rem) {
  .block-text-sidebar__additional-content {
    max-width: 19rem;
    margin-left: auto;
  }
}
.block-text-sidebar__additional-content a {
  text-decoration: none;
}
.block-text-sidebar .container .container {
  padding: 0 !important;
}
.block-text-sidebar__container p + .acf-block.bg-transparent.block-card-image-links {
  padding-top: 0;
  padding-bottom: var(--body-1-margin-bottom);
}
.block-text-sidebar__container p + .block-people-related,
.block-text-sidebar__container p + .block-people-manual,
.block-text-sidebar__container .wp-block-separator + .block-people-related,
.block-text-sidebar__container .wp-block-separator + .block-people-manual {
  padding-top: 0;
}
.block-text-sidebar__container p + .block-people-related .wp-block-heading,
.block-text-sidebar__container p + .block-people-manual .wp-block-heading,
.block-text-sidebar__container .wp-block-separator + .block-people-related .wp-block-heading,
.block-text-sidebar__container .wp-block-separator + .block-people-manual .wp-block-heading {
  margin-top: var(--t2-margin-bottom);
}
.block-text-sidebar__container .wp-block-separator + .block-people-manual {
  padding-bottom: 0;
}
.block-text-sidebar__container > .acf-block {
  padding-top: 0 !important;
  padding-bottom: 2.25rem !important;
}
.block-text-sidebar__container > .acf-block.block-media-standard .wp-block-embed {
  margin: 0;
}
.block-text-sidebar__container > .acf-block.block-media-standard .wp-block-embed.col-12 {
  padding: 0;
}
.block-text-sidebar__container > .acf-block.block-media-standard + .wp-block-buttons {
  margin-top: 0;
  margin-bottom: clamp(2rem, 1.7894736842rem + 0.4385964912vw, 2.25rem);
}
@media (min-width: 36rem) {
  .block-text-sidebar__container > .wp-block-heading {
    margin-top: 0;
  }
}
.block-text-sidebar__container > .wp-block-heading + .has-lead-font-size {
  margin-top: 1.125rem;
  margin-bottom: 1.125rem;
}
.block-text-sidebar__container > .wp-block-image {
  padding: 0 0 2.25rem 0;
}
.block-text-sidebar__container > * {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: 300ms opacity 300ms ease-out, 300ms transform 300ms ease-out;
}
.block-text-sidebar__container > *.in-viewport {
  opacity: 1 !important;
  transform: none !important;
}
.block-text-sidebar__container > p.col-12,
.block-text-sidebar__container > h2.col-12 {
  padding-right: 0;
  padding-left: 0;
}
.block-text-sidebar__container .wp-block-image {
  padding-right: 0;
  padding-left: 0;
}
.block-text-sidebar__container .block-media-standard__row {
  margin-right: 0;
  margin-left: 0;
}
@media (max-width: 47.98rem) {
  .block-text-sidebar__container .block-media-standard__row .wp-element-caption {
    right: 0;
  }
}
.block-text-sidebar__container iframe {
  width: 100%;
}
.single-post .block-text-sidebar .acf-innerblocks-container > .wp-block-html {
  padding-bottom: 0;
}
.single-post .block-text-sidebar .acf-innerblocks-container > .wp-block-html + p {
  margin-top: var(--body-1-margin-bottom);
}
.single-post .block-text-sidebar .acf-innerblocks-container > .wp-block-html + .wp-block-heading {
  margin-top: var(--body-1-margin-bottom);
}
.block-text-sidebar .acf-innerblocks-container p + .block-text-overflow-column.acf-block,
.block-text-sidebar .acf-innerblocks-container .wp-block-list + .block-text-overflow-column.acf-block,
.block-text-sidebar .acf-innerblocks-container .wp-block-heading + .block-text-overflow-column.acf-block {
  padding-top: 0.75rem;
}
.block-text-sidebar .acf-innerblocks-container p + .block-media-standard {
  padding-top: 0;
}
.block-text-sidebar .acf-innerblocks-container > .wp-block-embed-youtube {
  padding-right: 0;
  padding-left: 0;
}
@media print {
  .block-text-sidebar__disclaimer {
    display: none;
  }
}
.block-text-sidebar__disclaimer > a {
  display: inline-block;
  margin-top: 2.25rem;
  color: #0066ba;
}
.block-text-sidebar__disclaimer .component-lightbox__container {
  background-color: rgba(0, 0, 0, 0.6);
}
.block-text-sidebar__disclaimer .component-lightbox__container .container {
  position: relative;
  max-width: 58rem;
  padding: 3.75rem 2.5rem 2.5rem 2.5rem !important;
  background-color: #fff;
}
.block-text-sidebar__disclaimer .component-lightbox__container .container .c-btn--close {
  top: 1.25rem;
  color: #0066ba;
  border: none;
  background-color: transparent;
}
.block-text-sidebar__disclaimer .component-lightbox__container .container .c-btn--close::before {
  display: none;
}
.block-text-sidebar__links-section--mobile-hidden {
  flex-direction: column;
  gap: clamp(1.5rem, 0.8684210526rem + 1.3157894737vw, 2.25rem);
}
@media (min-width: 36rem) {
  .block-text-sidebar__links-section--mobile-hidden {
    display: flex !important;
  }
}
@media (max-width: 47.98rem) {
  .block-text-sidebar__links-section--mobile-hidden {
    display: none;
  }
  .block-text-sidebar__links-section--mobile-hidden[aria-hidden=false] {
    display: flex !important;
  }
}
.block-text-sidebar .block-text-sidebar__box-content > div:not(:last-of-type) {
  margin-bottom: 1.125rem;
}
.block-text-sidebar__show-more-button {
  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);
  margin-bottom: var(--link-2-margin-bottom);
  position: relative;
  right: 0 !important;
  align-self: flex-start;
  margin-top: 1.125rem;
  margin-bottom: 0;
  padding-left: 0;
  color: #0066ba;
  border: none;
  background: none;
}
.block-text-sidebar__show-more-button:first-child {
  margin-top: 0;
}
.block-text-sidebar__show-more-button:last-child {
  margin-bottom: 0;
}
@media (min-width: 48rem) {
  .block-text-sidebar__show-more-button {
    display: none;
  }
}
.block-text-sidebar__show-more-button::before, .block-text-sidebar__show-more-button::after {
  position: absolute;
  top: calc(50% - 0.4375rem);
  right: -1.5rem;
  color: #0066ba;
  transition: transform 0.4s ease-in-out;
}
.block-text-sidebar__show-more-button::after {
  content: "\ea15";
  font-weight: 400;
  font-size: 0.9375rem;
  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;
}
.block-text-sidebar__show-more-button.active::after {
  transform: rotate(180deg);
}
.block-text-sidebar .acf-innerblocks-container + .block-text-overflow-column {
  margin-top: clamp(2rem, 1.7894736842rem + 0.4385964912vw, 2.25rem);
}

@page {
  margin: 55px;
}