/* 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.
*/
/*
* Used to add the decorative line on the right or left side of a text element.
*/
/*
* Used to truncate text.
*/
/****************
 * 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-stat-slider {
  padding: 5.5rem 0 6rem;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .block-stat-slider {
    padding: 0;
  }
}
.block-stat-slider .block-stat-slider__container {
  display: flex;
  flex-direction: column;
  padding: 0 clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem);
}
@media (min-width: 48rem) {
  .block-stat-slider .block-stat-slider__container {
    flex-direction: row;
    justify-content: space-between;
  }
  .block-stat-slider .block-stat-slider__container h2 {
    flex-basis: 50%;
    max-width: 41rem;
    margin-top: 8rem !important;
    margin-bottom: 0;
  }
}
.block-stat-slider .block-stat-slider__container h2 {
  margin-bottom: 3rem;
}
@media (min-width: 48rem) {
  .block-stat-slider .stat-slide-wrapper {
    display: flex;
  }
}
@media (min-width: 48rem) {
  .block-stat-slider .stat-slide-wrapper {
    flex-basis: 50%;
    max-width: 41rem;
    padding: 0 clamp(1.25rem, -0.75rem + 4.1666666667vw, 3rem);
    opacity: 0;
  }
}
@media (max-width: 61.98rem) {
  .block-stat-slider .slick-list {
    margin: 0;
    padding-left: 0 !important;
    overflow: visible;
  }
}
@media (min-width: 48rem) {
  .block-stat-slider .slick-list {
    overflow: hidden;
  }
}
.block-stat-slider .slick-list .slick-slide {
  margin-right: 4.5rem;
  opacity: 0.3;
  transition: opacity 0.5s ease-in-out;
}
@media (min-width: 48rem) {
  .block-stat-slider .slick-list .slick-slide {
    display: flex;
    align-items: center;
    margin-right: 0;
  }
}
.block-stat-slider .slick-list .slick-slide .block-stat-slide__container {
  margin-bottom: 3rem;
}
@media (min-width: 48rem) {
  .block-stat-slider .slick-list .slick-slide .block-stat-slide__container {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr);
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .block-stat-slider .slick-list .slick-slide .block-stat-slide__container p {
    grid-column: 2/-1;
  }
}
@media (min-width: 48rem) {
  .block-stat-slider .slick-list .slick-slide .block-stat-slide__container .block-icon {
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
}
.block-stat-slider .slick-list .slick-slide .block-stat-slide__container .block-icon__icon {
  width: 4.75rem;
  height: 4.75rem;
  padding: 0;
  border-radius: 6.25rem;
  background-color: #9ae56e;
}
@media (min-width: 48rem) {
  .block-stat-slider .slick-list .slick-slide .block-stat-slide__container .block-icon__icon {
    width: 5.25rem;
    height: 5.25rem;
  }
}
.block-stat-slider .slick-list .slick-slide .block-stat-slide__container .block-icon__icon::before {
  font-size: 3rem;
}
@media (min-width: 48rem) {
  .block-stat-slider .slick-list .slick-slide .block-stat-slide__container .block-icon__icon::before {
    font-size: 3.25rem;
  }
}
.block-stat-slider .slick-list .slick-slide .block-stat-slide__container p {
  color: #153800;
}
.block-stat-slider .slick-list .slick-slide .block-stat-slide__container p:nth-child(2) {
  margin-bottom: clamp(0.5rem, -0.0714285714rem + 1.1904761905vw, 1rem);
}
.block-stat-slider .slick-list .slick-slide .block-stat-slide__container p:nth-child(3) {
  margin-bottom: 0.5rem;
}
.block-stat-slider .slick-list .slick-slide.slick-cloned + .slick-slide.slick-cloned {
  opacity: 0.3;
}
.block-stat-slider .slick-list .slick-slide:not([aria-hidden=true]) {
  opacity: 1;
}
.block-stat-slider .slick-list .slick-cloned + .slick-active ~ .slick-cloned {
  opacity: 1;
}
.block-stat-slider .slick-list .slick-cloned:has(~ .slick-active + .slick-cloned):not(:first-child) {
  opacity: 1;
}
.block-stat-slider .slick-dots {
  display: flex;
  flex-direction: row;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
@media (min-width: 48rem) {
  .block-stat-slider .slick-dots {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 48rem) {
  .block-stat-slider .slick-dots {
    margin-right: clamp(2.5rem, -4.2142857143rem + 13.9880952381vw, 8.375rem);
  }
}
.block-stat-slider .slick-dots li {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.75rem;
  font-size: 0;
  border-radius: 50%;
  background-color: #153800;
  cursor: pointer;
  opacity: 0.3;
}
@media (min-width: 48rem) {
  .block-stat-slider .slick-dots li {
    width: 0.625rem;
    height: 0.625rem;
    margin-top: 0.875rem;
    margin-right: 0;
  }
  .block-stat-slider .slick-dots li:first-child {
    margin-top: 0;
  }
}
.block-stat-slider .slick-dots li:last-child {
  margin-right: 0;
}
.block-stat-slider .slick-dots li button {
  display: none;
}
.block-stat-slider .slick-dots .slick-active {
  color: #153800;
  opacity: 1;
}