/* 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;
}
*/
.hs-form label {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  display: block;
  margin-bottom: 0.25rem;
}
.hs-form label,
.hs-form label > span {
  text-decoration: none;
}
.hs-form .hs-error-msgs {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 0.25rem;
  margin-bottom: 0;
  padding: 0;
  color: #ad0322;
  list-style: none;
}
.hs-form .hs-error-msgs label {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
}
.hs-form fieldset {
  display: grid;
  grid-template-columns: 1fr;
  max-width: none !important;
  column-gap: 1.25rem;
}
@media (min-width: 36rem) {
  .hs-form fieldset.form-columns-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 36rem) {
  .hs-form fieldset.form-columns-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 36rem) {
  .hs-form fieldset.form-columns-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 36rem) {
  .hs-form fieldset.form-columns-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.hs-form fieldset .input {
  margin: 0 !important;
}
.hs-form fieldset .hs-form-field {
  float: none !important;
  width: 100% !important;
}

.hs-fieldtype-checkbox > label,
.hs-fieldtype-radio > label {
  display: block;
  margin-bottom: 1rem;
}

.hbspt-form ul[role=checkbox],
.hbspt-form ul[role=radio],
.hs_single_checkbox ul {
  margin: 0 !important;
  padding: 0;
  list-style-type: none;
}
.hbspt-form ul[role=checkbox] input[type=radio]:focus ~ label::before,
.hbspt-form ul[role=checkbox] input[type=checkbox]:focus ~ label::before,
.hbspt-form ul[role=radio] input[type=radio]:focus ~ label::before,
.hbspt-form ul[role=radio] input[type=checkbox]:focus ~ label::before,
.hs_single_checkbox ul input[type=radio]:focus ~ label::before,
.hs_single_checkbox ul input[type=checkbox]:focus ~ label::before {
  border-color: #7a34b2;
}
.hbspt-form ul[role=checkbox] input[type=radio] + span,
.hbspt-form ul[role=checkbox] input[type=checkbox] + span,
.hbspt-form ul[role=radio] input[type=radio] + span,
.hbspt-form ul[role=radio] input[type=checkbox] + span,
.hs_single_checkbox ul input[type=radio] + span,
.hs_single_checkbox ul input[type=checkbox] + span {
  text-decoration: none;
}
.hbspt-form ul[role=checkbox] li,
.hbspt-form ul[role=radio] li,
.hs_single_checkbox ul li {
  margin-bottom: 0 !important;
}
.hbspt-form ul[role=checkbox] br,
.hbspt-form ul[role=radio] br,
.hs_single_checkbox ul br {
  display: none;
}

.hs-input {
  width: 100% !important;
}

.hs-form-checkbox-display > span,
.hs-form-radio-display > span,
.hs-form-booleancheckbox-display > span {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  margin-bottom: var(--subtitle-1-margin-bottom);
  margin-bottom: 0.375rem !important;
  cursor: pointer;
}
.hs-form-checkbox-display > span:first-child,
.hs-form-radio-display > span:first-child,
.hs-form-booleancheckbox-display > span:first-child {
  margin-top: 0;
}
.hs-form-checkbox-display > span:last-child,
.hs-form-radio-display > span:last-child,
.hs-form-booleancheckbox-display > span:last-child {
  margin-bottom: 0;
}
.hs-form-checkbox-display > span:hover::before, .hs-form-checkbox-display > span:focus::before,
.hs-form-radio-display > span:hover::before,
.hs-form-radio-display > span:focus::before,
.hs-form-booleancheckbox-display > span:hover::before,
.hs-form-booleancheckbox-display > span:focus::before {
  border-color: #7a34b2;
}

.hs-form-checkbox-display input:checked ~ span::before,
.hs-form-booleancheckbox-display input:checked ~ span::before {
  content: "\ea10";
}

.hs-form-radio-display input:checked ~ span::before {
  content: "\ea3c";
}

.hs-submit {
  margin-top: clamp(0.5rem, -0.6428571429rem + 2.380952381vw, 1.5rem);
}

.hs-button {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.6875rem 1.875rem;
  text-align: center;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  color: #fff;
  border: 0.0625rem solid #7a34b2;
  background-color: #7a34b2;
}
@media (max-width: 35.98rem) {
  .hs-button {
    width: 100%;
  }
}
.bg-dark .hs-button, .bg-primary-purple .hs-button {
  color: #7a34b2;
  border-color: #fff;
  background-color: #fff;
}
.bg-dark .hs-button.hover, a:hover .bg-dark .hs-button, a:focus .bg-dark .hs-button, .bg-dark .hs-button:hover, .bg-dark .hs-button:focus, .bg-primary-purple .hs-button.hover, a:hover .bg-primary-purple .hs-button, a:focus .bg-primary-purple .hs-button, .bg-primary-purple .hs-button:hover, .bg-primary-purple .hs-button:focus {
  color: #442160;
  border-color: #fff;
  background-color: #fff;
}
.hs-button.hover, a:hover .hs-button, a:focus .hs-button, .hs-button:hover, .hs-button:focus {
  color: #fff;
  border-color: #442160;
  background-color: #442160;
}
.bg-white .hs-button {
  color: #fff;
  border: 0.0625rem solid #7a34b2;
  background-color: #7a34b2;
}
.bg-white .hs-button.hover, a:hover .bg-white .hs-button, a:focus .bg-white .hs-button, .bg-white .hs-button:hover, .bg-white .hs-button:focus {
  color: #fff;
  border-color: #442160;
  background-color: #442160;
}

.hs-form-field {
  margin-bottom: 1.5rem !important;
  line-height: 1.5rem;
}

.hubspot-link__container {
  display: none;
}

.hs-fieldtype-file,
.hs-fieldtype-file input[type=file],
.hs_file_upload,
.hs_file_upload input[type=file] {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  text-decoration: none;
}
.hs-fieldtype-file ::-webkit-file-upload-button,
.hs-fieldtype-file ::file-selector-button,
.hs_file_upload ::-webkit-file-upload-button,
.hs_file_upload ::file-selector-button {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.6875rem 1.875rem;
  text-align: center;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  color: #7a34b2;
  border: 0.0625rem solid #7a34b2;
  background-color: transparent;
  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);
  padding: 0.3125rem 0.875rem;
  margin-right: 0.9375rem;
  color: #241b28;
  border-color: #241b28;
}
@media (max-width: 35.98rem) {
  .hs-fieldtype-file ::-webkit-file-upload-button,
.hs-fieldtype-file ::file-selector-button,
.hs_file_upload ::-webkit-file-upload-button,
.hs_file_upload ::file-selector-button {
    width: 100%;
  }
}
.bg-dark .hs-fieldtype-file ::-webkit-file-upload-button, .bg-primary-purple .hs-fieldtype-file ::-webkit-file-upload-button,
.bg-dark .hs-fieldtype-file ::file-selector-button,
.bg-primary-purple .hs-fieldtype-file ::file-selector-button,
.bg-dark .hs_file_upload ::-webkit-file-upload-button,
.bg-primary-purple .hs_file_upload ::-webkit-file-upload-button,
.bg-dark .hs_file_upload ::file-selector-button,
.bg-primary-purple .hs_file_upload ::file-selector-button {
  color: #fff;
  border-color: #fff;
}
.bg-dark .hs-fieldtype-file ::-webkit-file-upload-button.hover, a:hover .bg-dark .hs-fieldtype-file ::-webkit-file-upload-button, a:focus .bg-dark .hs-fieldtype-file ::-webkit-file-upload-button, .bg-dark .hs-fieldtype-file ::-webkit-file-upload-button:hover, .bg-dark .hs-fieldtype-file ::-webkit-file-upload-button:focus, .bg-primary-purple .hs-fieldtype-file ::-webkit-file-upload-button.hover, a:hover .bg-primary-purple .hs-fieldtype-file ::-webkit-file-upload-button, a:focus .bg-primary-purple .hs-fieldtype-file ::-webkit-file-upload-button, .bg-primary-purple .hs-fieldtype-file ::-webkit-file-upload-button:hover, .bg-primary-purple .hs-fieldtype-file ::-webkit-file-upload-button:focus,
.bg-dark .hs-fieldtype-file ::file-selector-button.hover,
a:hover .bg-dark .hs-fieldtype-file ::file-selector-button,
a:focus .bg-dark .hs-fieldtype-file ::file-selector-button,
.bg-dark .hs-fieldtype-file ::file-selector-button:hover,
.bg-dark .hs-fieldtype-file ::file-selector-button:focus,
.bg-primary-purple .hs-fieldtype-file ::file-selector-button.hover,
a:hover .bg-primary-purple .hs-fieldtype-file ::file-selector-button,
a:focus .bg-primary-purple .hs-fieldtype-file ::file-selector-button,
.bg-primary-purple .hs-fieldtype-file ::file-selector-button:hover,
.bg-primary-purple .hs-fieldtype-file ::file-selector-button:focus,
.bg-dark .hs_file_upload ::-webkit-file-upload-button.hover,
a:hover .bg-dark .hs_file_upload ::-webkit-file-upload-button,
a:focus .bg-dark .hs_file_upload ::-webkit-file-upload-button,
.bg-dark .hs_file_upload ::-webkit-file-upload-button:hover,
.bg-dark .hs_file_upload ::-webkit-file-upload-button:focus,
.bg-primary-purple .hs_file_upload ::-webkit-file-upload-button.hover,
a:hover .bg-primary-purple .hs_file_upload ::-webkit-file-upload-button,
a:focus .bg-primary-purple .hs_file_upload ::-webkit-file-upload-button,
.bg-primary-purple .hs_file_upload ::-webkit-file-upload-button:hover,
.bg-primary-purple .hs_file_upload ::-webkit-file-upload-button:focus,
.bg-dark .hs_file_upload ::file-selector-button.hover,
a:hover .bg-dark .hs_file_upload ::file-selector-button,
a:focus .bg-dark .hs_file_upload ::file-selector-button,
.bg-dark .hs_file_upload ::file-selector-button:hover,
.bg-dark .hs_file_upload ::file-selector-button:focus,
.bg-primary-purple .hs_file_upload ::file-selector-button.hover,
a:hover .bg-primary-purple .hs_file_upload ::file-selector-button,
a:focus .bg-primary-purple .hs_file_upload ::file-selector-button,
.bg-primary-purple .hs_file_upload ::file-selector-button:hover,
.bg-primary-purple .hs_file_upload ::file-selector-button:focus {
  color: #442160;
  border-color: #fff;
  background-color: #fff;
}
.hs-fieldtype-file ::-webkit-file-upload-button.hover, a:hover .hs-fieldtype-file ::-webkit-file-upload-button, a:focus .hs-fieldtype-file ::-webkit-file-upload-button, .hs-fieldtype-file ::-webkit-file-upload-button:hover, .hs-fieldtype-file ::-webkit-file-upload-button:focus,
.hs-fieldtype-file ::file-selector-button.hover,
a:hover .hs-fieldtype-file ::file-selector-button,
a:focus .hs-fieldtype-file ::file-selector-button,
.hs-fieldtype-file ::file-selector-button:hover,
.hs-fieldtype-file ::file-selector-button:focus,
.hs_file_upload ::-webkit-file-upload-button.hover,
a:hover .hs_file_upload ::-webkit-file-upload-button,
a:focus .hs_file_upload ::-webkit-file-upload-button,
.hs_file_upload ::-webkit-file-upload-button:hover,
.hs_file_upload ::-webkit-file-upload-button:focus,
.hs_file_upload ::file-selector-button.hover,
a:hover .hs_file_upload ::file-selector-button,
a:focus .hs_file_upload ::file-selector-button,
.hs_file_upload ::file-selector-button:hover,
.hs_file_upload ::file-selector-button:focus {
  color: #fff;
  border-color: #442160;
  background-color: #442160;
}
.bg-white .hs-fieldtype-file ::-webkit-file-upload-button,
.bg-white .hs-fieldtype-file ::file-selector-button,
.bg-white .hs_file_upload ::-webkit-file-upload-button,
.bg-white .hs_file_upload ::file-selector-button {
  color: #7a34b2;
  border: 0.0625rem solid #7a34b2;
  background-color: transparent;
}
.bg-white .hs-fieldtype-file ::-webkit-file-upload-button.hover, a:hover .bg-white .hs-fieldtype-file ::-webkit-file-upload-button, a:focus .bg-white .hs-fieldtype-file ::-webkit-file-upload-button, .bg-white .hs-fieldtype-file ::-webkit-file-upload-button:hover, .bg-white .hs-fieldtype-file ::-webkit-file-upload-button:focus,
.bg-white .hs-fieldtype-file ::file-selector-button.hover,
a:hover .bg-white .hs-fieldtype-file ::file-selector-button,
a:focus .bg-white .hs-fieldtype-file ::file-selector-button,
.bg-white .hs-fieldtype-file ::file-selector-button:hover,
.bg-white .hs-fieldtype-file ::file-selector-button:focus,
.bg-white .hs_file_upload ::-webkit-file-upload-button.hover,
a:hover .bg-white .hs_file_upload ::-webkit-file-upload-button,
a:focus .bg-white .hs_file_upload ::-webkit-file-upload-button,
.bg-white .hs_file_upload ::-webkit-file-upload-button:hover,
.bg-white .hs_file_upload ::-webkit-file-upload-button:focus,
.bg-white .hs_file_upload ::file-selector-button.hover,
a:hover .bg-white .hs_file_upload ::file-selector-button,
a:focus .bg-white .hs_file_upload ::file-selector-button,
.bg-white .hs_file_upload ::file-selector-button:hover,
.bg-white .hs_file_upload ::file-selector-button:focus {
  color: #fff;
  border-color: #442160;
  background-color: #442160;
}
.hs-fieldtype-file ::-webkit-file-upload-button:focus, .hs-fieldtype-file ::-webkit-file-upload-button:hover,
.hs-fieldtype-file ::file-selector-button:focus,
.hs-fieldtype-file ::file-selector-button:hover,
.hs_file_upload ::-webkit-file-upload-button:focus,
.hs_file_upload ::-webkit-file-upload-button:hover,
.hs_file_upload ::file-selector-button:focus,
.hs_file_upload ::file-selector-button:hover {
  color: #fff;
  border-color: #442160;
  background-color: #442160;
}
.hs-fieldtype-file .hs-error-msg,
.hs_file_upload .hs-error-msg {
  margin-left: 0.75rem;
}