/* 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;
}
*/
.block-cta-image {
  position: relative;
  overflow: hidden;
}
.block-cta-image.bg-transparent .bg-dark-inner .block-cta-image__image-col::after {
  background: transparent;
}
.block-cta-image.bg-transparent .block-cta-image__row.bg-dark-inner::before, .block-cta-image.bg-transparent .block-cta-image__row.bg-dark-inner::after {
  box-shadow: 1.125rem 1.125rem 0 transparent;
}
.block-cta-image.bg-white .bg-dark-inner .block-cta-image__image-col::after {
  background: #fffbf5;
}
.block-cta-image.bg-white .block-cta-image__row.bg-dark-inner::before, .block-cta-image.bg-white .block-cta-image__row.bg-dark-inner::after {
  box-shadow: 1.125rem 1.125rem 0 #fffbf5;
}
.block-cta-image.bg-neutral-10 .bg-dark-inner .block-cta-image__image-col::after {
  background: #eadfce;
}
.block-cta-image.bg-neutral-10 .block-cta-image__row.bg-dark-inner::before, .block-cta-image.bg-neutral-10 .block-cta-image__row.bg-dark-inner::after {
  box-shadow: 1.125rem 1.125rem 0 #eadfce;
}
.block-cta-image.bg-neutral-11 .bg-dark-inner .block-cta-image__image-col::after {
  background: #f5ede1;
}
.block-cta-image.bg-neutral-11 .block-cta-image__row.bg-dark-inner::before, .block-cta-image.bg-neutral-11 .block-cta-image__row.bg-dark-inner::after {
  box-shadow: 1.125rem 1.125rem 0 #f5ede1;
}
.block-cta-image.bg-neutral-12 .bg-dark-inner .block-cta-image__image-col::after {
  background: #faf4eb;
}
.block-cta-image.bg-neutral-12 .block-cta-image__row.bg-dark-inner::before, .block-cta-image.bg-neutral-12 .block-cta-image__row.bg-dark-inner::after {
  box-shadow: 1.125rem 1.125rem 0 #faf4eb;
}
.block-cta-image.bg-light-top-gradient .bg-dark-inner .block-cta-image__image-col::after {
  background: linear-gradient(180deg, #faf4eb 0%, #fffbf5 100%);
}
@media (min-width: 48rem) {
  .block-cta-image.bg-light-top-gradient .bg-dark-inner .block-cta-image__image-col::after {
    background: linear-gradient(180deg, #f5ede1 0%, #fffbf5 100%);
  }
}
.block-cta-image.bg-light-top-gradient .block-cta-image__row.bg-dark-inner::after {
  box-shadow: 1.125rem 1.125rem 0 #fffbf5;
}
.block-cta-image.bg-light-top-gradient .block-cta-image__row.bg-dark-inner::before {
  box-shadow: 1.125rem 1.125rem 0 #faf4eb;
}
@media (min-width: 48rem) {
  .block-cta-image.bg-light-top-gradient .block-cta-image__row.bg-dark-inner::before {
    box-shadow: 1.125rem 1.125rem 0 #f5ede1;
  }
}
.block-cta-image.bg-light-bottom-gradient .bg-dark-inner .block-cta-image__image-col::after {
  background: linear-gradient(180deg, #faf4eb 0%, #f5ede1 100%);
}
@media (min-width: 48rem) {
  .block-cta-image.bg-light-bottom-gradient .bg-dark-inner .block-cta-image__image-col::after {
    background: linear-gradient(180deg, #fffbf5 0%, #f5ede1 100%);
  }
}
.block-cta-image.bg-light-bottom-gradient .block-cta-image__row.bg-dark-inner::after {
  box-shadow: 1.125rem 1.125rem 0 #f5ede1;
}
.block-cta-image.bg-light-bottom-gradient .block-cta-image__row.bg-dark-inner::before {
  box-shadow: 1.125rem 1.125rem 0 #faf4eb;
}
@media (min-width: 48rem) {
  .block-cta-image.bg-light-bottom-gradient .block-cta-image__row.bg-dark-inner::before {
    box-shadow: 1.125rem 1.125rem 0 #fffbf5;
  }
}
.block-cta-image.bg-dark-top-gradient .bg-dark-inner .block-cta-image__image-col::after {
  background: linear-gradient(180deg, #f5ede1 0%, #fffbf5 100%);
}
@media (min-width: 48rem) {
  .block-cta-image.bg-dark-top-gradient .bg-dark-inner .block-cta-image__image-col::after {
    background: linear-gradient(180deg, #eadfce 0%, #fffbf5 100%);
  }
}
.block-cta-image.bg-dark-top-gradient .block-cta-image__row.bg-dark-inner::after {
  box-shadow: 1.125rem 1.125rem 0 #fffbf5;
}
.block-cta-image.bg-dark-top-gradient .block-cta-image__row.bg-dark-inner::before {
  box-shadow: 1.125rem 1.125rem 0 #f5ede1;
}
@media (min-width: 48rem) {
  .block-cta-image.bg-dark-top-gradient .block-cta-image__row.bg-dark-inner::before {
    box-shadow: 1.125rem 1.125rem 0 #eadfce;
  }
}
.block-cta-image.bg-dark-bottom-gradient .bg-dark-inner .block-cta-image__image-col::after {
  background: linear-gradient(180deg, #f5ede1 0%, #eadfce 100%);
}
@media (min-width: 48rem) {
  .block-cta-image.bg-dark-bottom-gradient .bg-dark-inner .block-cta-image__image-col::after {
    background: linear-gradient(180deg, #fffbf5 0%, #eadfce 100%);
  }
}
.block-cta-image.bg-dark-bottom-gradient .block-cta-image__row.bg-dark-inner::after {
  box-shadow: 1.125rem 1.125rem 0 #eadfce;
}
.block-cta-image.bg-dark-bottom-gradient .block-cta-image__row.bg-dark-inner::before {
  box-shadow: 1.125rem 1.125rem 0 #f5ede1;
}
@media (min-width: 48rem) {
  .block-cta-image.bg-dark-bottom-gradient .block-cta-image__row.bg-dark-inner::before {
    box-shadow: 1.125rem 1.125rem 0 #fffbf5;
  }
}
.block-cta-image.bg-dark .bg-dark-inner .block-cta-image__image-col::after {
  background: #011314;
}
.block-cta-image.bg-dark .block-cta-image__row.bg-dark-inner::before, .block-cta-image.bg-dark .block-cta-image__row.bg-dark-inner::after {
  box-shadow: 1.125rem 1.125rem 0 #011314;
}
.block-cta-image__row {
  background: linear-gradient(352.68deg, #0998a1 -54.18%, #9cd19b 65.11%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 1.125rem;
}
@media (max-width: 47.98rem) {
  .block-cta-image__row {
    overflow: hidden;
  }
}
@media (min-width: 48rem) {
  .block-cta-image__row {
    background: linear-gradient(248.83deg, #0998a1 -36.51%, #9cd19b 58.5%);
    flex-direction: row;
  }
}
.block-cta-image__row::before, .block-cta-image__row::after {
  position: absolute;
  content: "";
  z-index: 5;
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 100%;
  background-color: transparent;
}
.block-cta-image__row::before {
  bottom: clamp(16.5rem, 3.6428571429rem + 26.7857142857vw, 27.75rem);
  right: 0;
}
.block-cta-image__row::after {
  bottom: 0;
  right: clamp(16.5rem, 3.6428571429rem + 26.7857142857vw, 27.75rem);
}
@media (max-width: 47.98rem) {
  .block-cta-image__content-col {
    padding: 3rem 1.25rem 2.5625rem 1.25rem;
  }
}
@media (min-width: 48rem) {
  .block-cta-image__content-col {
    width: 34.5rem;
    max-width: 50%;
    margin-left: clamp(1.25rem, -4.3214285714rem + 11.6071428571vw, 6.125rem);
  }
}
.block-cta-image__content-col h2 {
  color: #093a3d;
}
.block-cta-image__content-col p {
  color: #093a3d;
}
.block-cta-image__content-col p a {
  word-break: break-all;
}
.block-cta-image__image-col {
  position: relative;
  width: clamp(15.25rem, 2.6785714286rem + 26.1904761905vw, 26.25rem);
}
@media (max-width: 47.98rem) {
  .block-cta-image__image-col {
    margin-top: 1.25rem;
    margin-left: auto;
  }
}
@media (min-width: 48rem) {
  .block-cta-image__image-col {
    margin-top: 7rem;
  }
}
.block-cta-image__image-col::after {
  position: absolute;
  bottom: -0.0625rem;
  right: -0.0625rem;
  content: "";
  z-index: 1;
  width: calc(100% + clamp(1.3125rem, 1.0267857143rem + 0.5952380952vw, 1.5625rem));
  height: calc(100% + clamp(1.3125rem, 1.0267857143rem + 0.5952380952vw, 1.5625rem));
  border-top-left-radius: 100%;
}
.block-cta-image__image-wrapper {
  padding-bottom: 100%;
}
.block-cta-image__image {
  -webkit-mask-image: url(../../images/cta-image-mask.svg);
  -webkit-mask-size: cover;
  mask-image: url(../../images/cta-image-mask.svg);
  mask-size: cover;
  z-index: 2;
}