/* 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;
}
*/
.gform_wrapper {
  display: block !important;
}
.gform_wrapper label,
.gform_wrapper .gfield_label_before_complex {
  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);
  display: block;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.content-wrapper > .gform_wrapper {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(0.5rem, 0.0789473684rem + 0.8771929825vw, 1rem);
  padding-left: clamp(0.5rem, 0.0789473684rem + 0.8771929825vw, 1rem);
  max-width: 36rem;
  padding-right: clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem);
  padding-left: clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem);
}
@media (min-width: 36rem) {
  .content-wrapper > .gform_wrapper {
    max-width: 48rem;
  }
}
@media (min-width: 48rem) {
  .content-wrapper > .gform_wrapper {
    max-width: 62rem;
  }
}
@media (min-width: 64rem) {
  .content-wrapper > .gform_wrapper {
    max-width: 75rem;
  }
}
@media (min-width: 75rem) {
  .content-wrapper > .gform_wrapper {
    max-width: 90rem;
  }
}
.content-wrapper > .gform_wrapper > form {
  padding-top: clamp(1rem, -0.5263157895rem + 3.1798245614vw, 2.8125rem);
  padding-right: clamp(0rem, -10.5263157895rem + 21.9298245614vw, 12.5rem);
  padding-bottom: clamp(2.5rem, -0.1315789474rem + 5.4824561404vw, 5.625rem);
}
.acf-block.bg-transparent + .gform_wrapper {
  padding-top: 0;
}
.gform_wrapper + .acf-block.bg-transparent {
  padding-top: 0;
}
.gform_wrapper .gform_body li::before {
  content: none !important;
}
.gform_wrapper .gform_body .gform_fields {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
  padding: 0;
}
.gform_wrapper .gform_body .gform_fields .gfield {
  margin: 0 0 clamp(1.5rem, 1.0263157895rem + 0.9868421053vw, 2.0625rem) 0;
}
.gform_wrapper .gform_body .gform_fields .gfield label {
  display: block;
}
.gform_wrapper .gform_body .gform_fileupload_rules {
  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);
  display: block;
  margin-top: 0.25rem;
  text-decoration: none;
}
@media (min-width: 36rem) {
  .gform_wrapper .gform_body .ginput_complex {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-bottom: -2.5rem;
    margin-left: -0.5rem;
  }
}
@media (min-width: 36rem) {
  .gform_wrapper .gform_body .ginput_complex > span,
.gform_wrapper .gform_body .ginput_complex > p:not(:empty) {
    flex: 50%;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }
}
@media (min-width: 36rem) {
  .gform_wrapper .gform_body .ginput_complex > span.ginput_full,
.gform_wrapper .gform_body .ginput_complex > p:not(:empty).ginput_full {
    flex: 100%;
  }
}
.gform_wrapper .gform_body .ginput_complex > .ginput_container_date {
  padding: 0 0.5rem;
}
.gform_wrapper .gform_body .ginput_complex label {
  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);
  display: block;
  margin-top: 0.25rem;
}
.gform_wrapper .gform_body .ginput_complex br {
  display: none;
}
.gform_wrapper .gform_body .ginput_complex input {
  display: block;
  width: 100%;
}
@media (max-width: 35.98rem) {
  .gform_wrapper .gform_body .ginput_complex input {
    margin-bottom: 1.5rem;
  }
}
.gform_wrapper .gform_footer .c-btn {
  margin-top: clamp(1rem, 0.5789473684rem + 0.8771929825vw, 1.5rem);
  white-space: nowrap;
}
@media (max-width: 35.98rem) {
  .gform_wrapper .gform_footer .c-btn {
    width: 100%;
  }
}

.hidden_sub_label {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.gfield {
  flex: 100%;
  padding: 0 0.5rem;
  list-style-type: none;
}
.gfield--width-half, .gfield--width-third, .gfield--width-quarter {
  margin: 0 auto;
}
@media (min-width: 36rem) {
  .gfield--width-half {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 48rem) {
  .gfield--width-third {
    flex: 0 0 33.3333333%;
    max-width: 33.3333333%;
  }
}
@media (min-width: 36rem) {
  .gfield--width-quarter {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 48rem) {
  .gfield--width-quarter {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.gfield textarea {
  width: 100% !important;
}
.gfield textarea.medium {
  height: 10rem;
}
.gfield textarea.small {
  height: 6rem;
}
.gfield label .gfield_required {
  margin-left: 0.05em;
}
.gfield label .gfield_required::before {
  content: "*";
  color: #ad0322;
}
.gfield label .gfield_required_text,
.gfield label .gfield_required_asterisk {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  white-space: nowrap;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.gfield .mat-select {
  width: 100%;
}
.gfield.gfield_error input {
  border-color: #ad0322 !important;
}
.gfield.gfield_error .validation_message {
  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);
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 0.25rem;
  color: #ad0322;
}
.gfield.gsection:first-child .gsection_title {
  margin-top: 0 !important;
}
.gfield.gsection .gsection_title {
  font-weight: var(--t5-font-weight);
  font-size: var(--t5-font-size);
  font-family: var(--t5-font-family);
  line-height: var(--t5-line-height);
  margin-top: clamp(2rem, 1.1578947368rem + 1.7543859649vw, 3rem) !important;
}

.gfield_description {
  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.5rem;
}

.gfield_type_fileupload {
  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);
}
.gfield_type_fileupload .c-btn {
  margin-top: 0.5rem;
  margin-left: 1rem;
}
.gfield_type_fileupload input {
  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);
  width: 100%;
  margin: 0.25rem 0rem;
  padding: 0rem;
}
.gfield_type_fileupload ::-webkit-file-upload-button,
.gfield_type_fileupload ::file-selector-button {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  color: transparent;
  font-size: 0;
  border: 0;
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.gform_title {
  margin-bottom: clamp(2rem, 1.1578947368rem + 1.7543859649vw, 3rem);
}

.gfield_type_radio .validation_message,
.gfield_type_checkbox .validation_message {
  margin-top: -1rem !important;
  margin-bottom: 1.5rem !important;
}
.gfield_type_radio legend,
.gfield_type_radio .gfield_label_before_complex,
.gfield_type_checkbox legend,
.gfield_type_checkbox .gfield_label_before_complex {
  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: var(--title-1-margin-bottom);
}
.gfield_type_radio legend:first-child,
.gfield_type_radio .gfield_label_before_complex:first-child,
.gfield_type_checkbox legend:first-child,
.gfield_type_checkbox .gfield_label_before_complex:first-child {
  margin-top: 0;
}
.gfield_type_radio legend:last-child,
.gfield_type_radio .gfield_label_before_complex:last-child,
.gfield_type_checkbox legend:last-child,
.gfield_type_checkbox .gfield_label_before_complex:last-child {
  margin-bottom: 0;
}

.hidden_label .gfield_label,
.hidden_sub_label {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.gform_submission_error {
  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);
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0 !important;
  color: #ad0322;
}

.gform_validation_errors {
  margin-bottom: 1rem;
}

.gform_confirmation_wrapper {
  text-align: center;
}
.content-wrapper > .gform_confirmation_wrapper {
  padding-top: clamp(2rem, -0.5263157895rem + 5.2631578947vw, 5rem);
  padding-bottom: clamp(3.125rem, -0.5592105263rem + 7.6754385965vw, 7.5rem);
}
.content-wrapper > .gform_confirmation_wrapper:last-child, .content-wrapper > .gform_confirmation_wrapper:nth-last-child(2) {
  margin-bottom: clamp(3.5rem, -1.9736842105rem + 11.4035087719vw, 10rem);
}
.gform_confirmation_wrapper .gform_confirmation_message {
  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);
  margin-bottom: var(--body-1-margin-bottom);
}
.gform_confirmation_wrapper .gform_confirmation_message:first-child {
  margin-top: 0;
}
.gform_confirmation_wrapper .gform_confirmation_message:last-child {
  margin-bottom: 0;
}

body img.gform_ajax_spinner {
  display: none !important;
}