/* 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;
}
*/
.block-card-expand {
  transition: margin-bottom 0.2s linear 100ms;
  /**&__accordion {
  	margin-top: 0;

  	a {
  		text-decoration: none;
  	}

  	.block-accordion-item {
  		margin-bottom: rem(18);
  		border: none;
  		background-color: transparent;

  	}

  	> .wp-block-button {
  		display: block;
  		width: 100%;
  		margin: 0;
  	}

  	.block-card-expand__accordion-button {
  		display: inline-flex;
  		width: auto;
  		padding: 0;
  		padding-right: rem(20);
  		color: paint(foley-blue-button-default);
  		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);
  		transition: color $transition-standard, border-color $transition-standard;

  		&::before,
  		&::after {
  			top: calc(50% - 0.468rem);
  			right: rem(-3);
  			font-size: rem(15);



  		&:hover,
  		&:focus {
  			color: paint(foley-dark-blue-button-hover);
  			background-color: transparent;
  		}
  	}

  	.block-card-expand__accordion-content {
  		padding-top: rem(29);
  		padding-bottom: 0;
  		padding-left: 0;

  		p {
  			margin-bottom: rem(9);
  		}

  		a {
  			text-decoration: none;
  		}

  		ul {
  			padding-left: rem(20);
  		}
  	}
  }**/
}
@media (max-width: 63.98rem) {
  .block-card-expand {
    margin-bottom: 0 !important;
  }
}
.block-card-expand.acf-block {
  padding: 0;
}
.block-card-expand .image-overlay:hover::before, .block-card-expand .image-overlay:focus::before {
  background-color: rgba(0, 0, 0, 0.4);
}
.block-card-expand.block-card-expand--half .image-wrapper {
  min-height: 11.875rem;
  padding-bottom: 45.5%;
  transition: padding-bottom 0.2s linear;
}
@media (min-width: 48rem) {
  .block-card-expand.block-card-expand--half .image-wrapper {
    padding-bottom: 58%;
  }
}
.block-card-expand.block-card-expand--one-third .image-wrapper {
  height: auto;
  padding-bottom: 0;
}
@media (min-width: 48rem) {
  .block-card-expand.block-card-expand--one-third .image-wrapper {
    padding-bottom: 57.67%;
  }
}
@media (min-width: 48rem) {
  .block-card-expand.active .image-wrapper {
    padding-bottom: 100%;
  }
}
.block-card-expand__card-title {
  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-top: calc(var(--t3-margin-bottom) * 2);
  margin-bottom: var(--t3-margin-bottom);
}
.block-card-expand__card-title:first-child {
  margin-top: 0;
}
.block-card-expand__card-title:last-child {
  margin-bottom: 0;
}
.block-card-expand__card-title a {
  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-top: calc(var(--t3-margin-bottom) * 2);
  margin-bottom: var(--t3-margin-bottom);
  color: #fff;
  text-decoration: none;
}
.block-card-expand__card-title a:first-child {
  margin-top: 0;
}
.block-card-expand__card-title a:last-child {
  margin-bottom: 0;
}
.block-card-expand__card-title a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
}
.block-card-expand__card-title a:hover, .block-card-expand__card-title a:focus {
  color: #fff;
  text-decoration: none;
}
.block-card-expand__expanded-content {
  position: absolute;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 36px - 64px);
  height: 0;
  max-width: var(--containerWidth);
  margin-left: 2.25rem;
  padding: clamp(1.5rem, 0.8684210526rem + 1.3157894737vw, 2.25rem) clamp(1rem, -0.0526315789rem + 2.1929824561vw, 2.25rem);
  column-gap: 2rem;
  background-color: #eeeeef;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.2s linear 100ms, visibility 0.2s linear 100ms;
}
@media (max-width: 63.98rem) {
  .block-card-expand__expanded-content {
    flex-direction: column;
    row-gap: 3rem;
    width: 100%;
    max-width: none;
    margin-top: 0.5rem;
    margin-left: 0;
    transform: none !important;
  }
}
.block-card-expand__expanded-content .block-card-expand__col-left,
.block-card-expand__expanded-content .block-card-expand__col-right {
  flex-basis: 50%;
}
.block-card-expand__expanded-content .block-card-expand__col-left {
  padding-right: 4rem;
}
@media (max-width: 63.98rem) {
  .block-card-expand__expanded-content .block-card-expand__col-left {
    padding-right: 0;
  }
}
.active .block-card-expand__expanded-content {
  height: auto;
  visibility: visible;
  opacity: 1;
  overflow: visible;
}
@media (max-width: 63.98rem) {
  .active .block-card-expand__expanded-content {
    position: relative;
  }
}
.block-card-expand__expanded-content .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);
  margin-bottom: clamp(1rem, 0.4210526316rem + 1.2061403509vw, 1.6875rem);
}
.block-card-expand__expanded-content .overline:first-child {
  margin-top: 0;
}
.block-card-expand__expanded-content .overline:last-child {
  margin-bottom: 0;
}
.block-card-expand__expanded-content .t4 {
  font-weight: var(--t4-font-weight);
  font-size: var(--t4-font-size);
  font-family: var(--t4-font-family);
  line-height: var(--t4-line-height);
}
.block-card-expand__expanded-content > .wp-block-button {
  margin-top: clamp(1rem, -0.0526315789rem + 2.1929824561vw, 2.25rem);
}
.block-card-expand__expanded-content .wp-block-button--card-expand.wp-block-button--icon-right .wp-element-button::after {
  position: relative;
  top: 0.125rem;
}
.block-card-expand__link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.block-card-expand__expand {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: none;
  background: none;
}
.block-card-expand__expand::before, .block-card-expand__expand::after {
  position: absolute;
  z-index: 2;
  color: #fff;
  transition: transform 0.4s ease-in-out;
}
@media (min-width: 48rem) {
  .block-card-expand--half .block-card-expand__expand::before, .block-card-expand--one-third .block-card-expand__expand::before, .block-card-expand--half .block-card-expand__expand::after, .block-card-expand--one-third .block-card-expand__expand::after {
    top: auto;
    left: 2rem;
    bottom: 2rem;
    right: auto;
  }
}
@media (max-width: 63.98rem) {
  .block-card-expand--half .block-card-expand__expand::before, .block-card-expand--half .block-card-expand__expand::after {
    left: 1.5rem;
    bottom: 1.5rem;
  }
  .block-card-expand--one-third .block-card-expand__expand::before, .block-card-expand--one-third .block-card-expand__expand::after {
    top: 1.5rem;
    left: auto;
    bottom: auto;
    right: 1.5rem;
  }
}
.block-card-expand__expand::before {
  content: "\ea30";
  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;
}
.block-card-expand__expand::after {
  content: "\ea34";
  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;
}
.active .block-card-expand__expand::before {
  display: none;
}
@media (min-width: 64rem) {
  .active .block-card-expand__expand::after {
    top: 45%;
  }
}
.block-card-expand--half .active .block-card-expand__expand::after {
  top: 75%;
}
.block-card-expand--one-third .active .block-card-expand__expand::after {
  top: 75%;
}
.block-card-expand__accordion > p {
  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: 1.125rem;
}
.block-card-expand__accordion > p a {
  text-decoration: none;
}
.block-card-expand__accordion > p a:hover, .block-card-expand__accordion > p a:focus {
  text-decoration: none;
}
.block-card-expand figcaption {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: clamp(1.5rem, 0.8684210526rem + 1.3157894737vw, 2.25rem);
  color: #fff;
}
@media (max-width: 74.98rem) {
  .block-card-expand.block-card-expand--one-third figcaption {
    position: relative;
    min-height: 5rem;
    padding-right: 4.25rem;
  }
  .block-card-expand.block-card-expand--one-third figcaption .block-card-expand__card-title,
.block-card-expand.block-card-expand--one-third figcaption .block-card-expand__card-title > a {
    font-size: 1.25rem;
  }
}
.block-card-expand__accordion-item {
  margin-bottom: 1.125rem;
  background-color: transparent;
}
.block-card-expand__accordion-item:not(.is-style-open) > .block-content:not([aria-hidden]):not(.DOM-slider-hidden) {
  display: none;
}
.block-card-expand__accordion-item > .wp-block-button {
  display: block;
  width: 100%;
  margin: 0;
}
.block-card-expand__accordion-item > .wp-block-button .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;
  width: auto;
  margin: 0;
  padding: 0;
  padding-right: 1.25rem;
  color: #0066ba;
  text-align: left;
  border: none;
  border-radius: 0;
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear;
}
.block-card-expand__accordion-item > .wp-block-button .wp-block-button__link::before, .block-card-expand__accordion-item > .wp-block-button .wp-block-button__link::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-card-expand__accordion-item > .wp-block-button .wp-block-button__link::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-card-expand__accordion-item > .wp-block-button .wp-block-button__link::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-card-expand__accordion-item > .wp-block-button .wp-block-button__link.active::before {
  transform: rotate(180deg) scaleY(0);
}
.block-card-expand__accordion-item > .wp-block-button .wp-block-button__link.active::after {
  transform: rotate(180deg);
}
.block-card-expand__accordion-item > .wp-block-button .wp-block-button__link::before, .block-card-expand__accordion-item > .wp-block-button .wp-block-button__link::after {
  top: calc(50% - 0.468rem);
  right: -0.1875rem;
  font-size: 0.9375rem;
  background-color: #fff;
}
.block-card-expand__accordion-item > .wp-block-button .wp-block-button__link::before {
  z-index: 1;
}
.block-card-expand__accordion-item > .wp-block-button .wp-block-button__link:hover, .block-card-expand__accordion-item > .wp-block-button .wp-block-button__link:focus {
  color: #003661;
  background-color: transparent;
}
.block-card-expand__accordion-item > .block-card-expand__accordion-content {
  padding-top: clamp(1rem, 0.3157894737rem + 1.4254385965vw, 1.8125rem);
  padding-bottom: 0;
  padding-left: 0;
  color: #000;
}
@media (min-width: 48rem) {
  .block-card-expand__accordion-item > .block-card-expand__accordion-content {
    margin-top: -0.75rem;
  }
}
.block-card-expand__accordion-item > .block-card-expand__accordion-content p {
  margin-bottom: 0.5625rem;
}
.block-card-expand__accordion-item > .block-card-expand__accordion-content a {
  color: #0066ba;
  text-decoration: none;
}
.block-card-expand__accordion-item > .block-card-expand__accordion-content a:hover, .block-card-expand__accordion-item > .block-card-expand__accordion-content a:focus {
  color: #003661;
}
.block-card-expand__accordion-item > .block-card-expand__accordion-content ul {
  padding-left: 1.25rem;
}
.block-card-expand__accordion-item > .block-card-expand__accordion-content ul li:not(:last-of-type) {
  margin-bottom: 0.5625rem;
}
.block-editor-block-list__block .block-card-expand__accordion-item > .block-card-expand__accordion-content {
  display: block !important;
  margin-top: 0.5rem !important;
}