/* 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.
*/
/****************
 * 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;
}
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider Global */
.slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: #fff;
  font-size: 0;
  line-height: 0;
  text-align: center;
  border: none;
  border: 2px solid #0e0c06;
  border-radius: 50%;
  background: #0e0c06;
  box-shadow: none;
  cursor: pointer;
  transform: translate(0, -50%);
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border-color 0.2s linear;
}
.slick-arrow--secondary {
  color: #0e0c06;
  border-color: #d6d1c4;
  background-color: transparent;
}
.bg-dark .slick-arrow--secondary, .bg-dark-pattern .slick-arrow--secondary, .bg-dark-has-video .slick-arrow--secondary, .slick-arrow--secondary.slick-arrow--color-alt {
  color: #fff !important;
  border-color: #fff !important;
  background-color: transparent !important;
}
.bg-dark .slick-arrow--secondary.hover, .bg-dark .slick-arrow--secondary:hover, .bg-dark .slick-arrow--secondary:focus, .bg-dark-pattern .slick-arrow--secondary.hover, .bg-dark-pattern .slick-arrow--secondary:hover, .bg-dark-pattern .slick-arrow--secondary:focus, .bg-dark-has-video .slick-arrow--secondary.hover, .bg-dark-has-video .slick-arrow--secondary:hover, .bg-dark-has-video .slick-arrow--secondary:focus, .slick-arrow--secondary.slick-arrow--color-alt.hover, .slick-arrow--secondary.slick-arrow--color-alt:hover, .slick-arrow--secondary.slick-arrow--color-alt:focus {
  color: #fff !important;
  border-color: #797467 !important;
  background-color: transparent !important;
}
.slick-arrow--secondary.hover, .slick-arrow--secondary:hover, .slick-arrow--secondary:focus {
  color: #0e0c06 !important;
  border-color: #0e0c06 !important;
  background-color: transparent !important;
}
.bg-dark .slick-arrow, .bg-dark-pattern .slick-arrow, .bg-dark-has-video .slick-arrow, .slick-arrow.slick-arrow--color-alt {
  color: #0e0c06;
  border-color: #fff;
  background-color: #fff;
}
.bg-dark .slick-arrow.hover, .bg-dark .slick-arrow:hover, .bg-dark .slick-arrow:focus, .bg-dark-pattern .slick-arrow.hover, .bg-dark-pattern .slick-arrow:hover, .bg-dark-pattern .slick-arrow:focus, .bg-dark-has-video .slick-arrow.hover, .bg-dark-has-video .slick-arrow:hover, .bg-dark-has-video .slick-arrow:focus, .slick-arrow.slick-arrow--color-alt.hover, .slick-arrow.slick-arrow--color-alt:hover, .slick-arrow.slick-arrow--color-alt:focus {
  border-color: #eeece7;
  background-color: #eeece7;
}
.slick-arrow::after {
  content: "";
  color: inherit;
  line-height: 3rem;
}
.slick-arrow.hover, .slick-arrow:hover, .slick-arrow:focus {
  border-color: #2c2a26;
  background-color: #2c2a26;
}
.slick-arrow.slick-prev {
  left: 1.875rem;
}
.slick-arrow.slick-prev::after {
  content: "\ea31";
  font-weight: 400;
  font-size: 2.25rem;
  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;
}
.slick-arrow.slick-next {
  right: 1.875rem;
}
.slick-arrow.slick-next::after {
  content: "\ea32";
  font-weight: 400;
  font-size: 2.25rem;
  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;
}

.slick-prev-arrow-wrapper,
.slick-next-arrow-wrapper {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: auto;
  margin-top: 3rem;
  margin-bottom: -0.625rem;
  border: none !important;
  border-radius: 0;
  background-color: transparent !important;
  box-shadow: none;
  transform: none;
  pointer-events: none;
}
@media (min-width: 48rem) {
  .slick-prev-arrow-wrapper,
.slick-next-arrow-wrapper {
    grid-area: 1/6/2/13;
    width: 100%;
    max-width: 39rem;
    text-align: left;
  }
}
.acf-block[class*="--has-heading-content"] .slick-prev-arrow-wrapper,
.acf-block[class*="--has-heading-content"] .slick-next-arrow-wrapper {
  position: absolute;
  top: -6rem;
  width: auto;
  margin: 0;
  padding: 0;
}
@media (min-width: 48rem) {
  .acf-block[class*="--has-heading-content"] .slick-prev-arrow-wrapper,
.acf-block[class*="--has-heading-content"] .slick-next-arrow-wrapper {
    top: 0;
  }
}
.slick-prev-arrow-wrapper .slick-arrow,
.slick-next-arrow-wrapper .slick-arrow {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  pointer-events: auto;
}

.slick-prev-arrow-wrapper {
  order: 2;
  margin-right: 0.5rem;
  margin-left: 0;
}
@media (min-width: 48rem) {
  .slick-prev-arrow-wrapper {
    margin: auto auto 4.25rem auto;
  }
}
.acf-block[class*="--has-heading-content"] .slick-prev-arrow-wrapper {
  left: 0;
}
@media (min-width: 48rem) {
  .acf-block[class*="--has-heading-content"] .slick-prev-arrow-wrapper {
    left: auto;
    right: clamp(4.75rem, 1.8928571429rem + 5.9523809524vw, 7.25rem);
  }
}

.slick-next-arrow-wrapper {
  order: 3;
  margin-right: auto;
  margin-left: 0.5rem;
}
@media (min-width: 48rem) {
  .slick-next-arrow-wrapper {
    margin: auto auto 4.25rem auto;
    padding-left: 3.5rem;
  }
}
.acf-block[class*="--has-heading-content"] .slick-next-arrow-wrapper {
  left: 3.5rem;
}
@media (min-width: 48rem) {
  .acf-block[class*="--has-heading-content"] .slick-next-arrow-wrapper {
    left: auto;
    right: clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem);
  }
}