/**
	This file does note generate code.  It is imported by other sass files to include
	variables, mixins, and functions.
	*/
/* Settings
   -------------------------------------------------------------------------- */
/**
	Global variables
*/
/* Site Max Width. Used in 03-base/_template.scss
   -------------------------------------------------------------------------- */
/* Location of compiled icons in theme.
   Used in project/build/common/sass/04-components/_icons.scss
   -------------------------------------------------------------------------- */
/* Breakpoints
	px is excluded so we can do math on the breakpoints
   -------------------------------------------------------------------------- */
/* Colors
   Suffix color variables with a 3 digit number.  Generally try to progress from
   lightest/dullest to darkest/most vibrant.
   -------------------------------------------------------------------------- */
/* Filter Colors
   -------------------------------------------------------------------------- */
/* Default transition.  Used in transition() mixin.
   ------------------------------------------------------------------------ */
/* Tools
   -------------------------------------------------------------------------- */
/**
	This file does note generate code.  It is imported by other sass files to include
	variables, mixins, and functions.
	*/
/* Settings
   -------------------------------------------------------------------------- */
/**
	This file does note generate code.  It is imported by other sass files to include
	variables, mixins, and functions.
	*/
/* Settings
   -------------------------------------------------------------------------- */
/**
	General mixins
*/
/* Variable Size
   Function can be used to make any property value variable
   -------------------------------------------------------------------------- */
/* Basic Transition
   -------------------------------------------------------------------------- */
/* Default Unordered List
   This mixin is used in place of defining base ul styles and then having to
   override them everywhere.  Ex: in a menu.
   This should be included when you output an acf wysiwyg field.
   -------------------------------------------------------------------------- */
/* Default Link Style
   This mixin is used in place of defining base a styles and then having to
   override them everywhere. Ex: text links vs buttons.
   This should be included when you output an acf wysiwyg field.
   -------------------------------------------------------------------------- */
/* Default Table
   -------------------------------------------------------------------------- */
/* Default Gradient
   -------------------------------------------------------------------------- */
/* Button Reset
   -------------------------------------------------------------------------- */
/* List Reset
   -------------------------------------------------------------------------- */
/* 100vh Mixin
   -------------------------------------------------------------------------- */
/* Accessibility Mixins to allow or prevent animations and transitions
   -------------------------------------------------------------------------- */
/* Tools
   -------------------------------------------------------------------------- */
/**
	Typography specific mixins
	These mixins are used in classes in build/common/sass/03-base/_typography.scss.
	They can also be used in a component/layout stylesheet, but that should be avoided.
*/
/* Fonts
   -------------------------------------------------------------------------- */
/* Typography
   -------------------------------------------------------------------------- */
/**
	This file does note generate code.  It is imported by other sass files to include
	variables, mixins, and functions.
	*/
/* Settings
   -------------------------------------------------------------------------- */
/* Tools
   -------------------------------------------------------------------------- */
/**
	Form specific mixins
	A set of default styles that can be applied to Gravity Forms and other forms
*/
.newsletter-signup {
  --nl-bg: #1f2221;
  --nl-input-bg: #fff;
  --nl-input-label: #1f2221;
  --nl-consent: white;
  --nl-error: white;
  --nl-label-floated-size: 10px;
  --nl-label-margin-bottom: 6px;
  --input-padding-top: calc(var(--nl-label-floated-size) + 6px);
  --input-padding-bottom: 12px;
  --input-font-size: calc(16px + (100vw - 320px) / ((768 - 320) / (17 - 16)));
}
@media (min-width: 768px) {
  .newsletter-signup {
    --input-font-size: 17px;
  }
}
.newsletter-signup {
  background-color: var(--nl-bg);
  color: white;
  padding-block: 56px;
  padding-inline: 48px;
}
@media (min-width: 768px) {
  .newsletter-signup {
    padding-block: 48px 72px;
    padding-inline: calc(48px + (100vw - 768px) / ((1024 - 768) / (116 - 48)));
  }
}
@media (min-width: 1024px) {
  .newsletter-signup {
    padding-inline: 116px;
  }
}
.newsletter-signup__container {
  margin-inline: auto;
  width: min(100%, 852px);
}
@media (min-width: 1440px) and (max-width: 1919.98px) {
  .newsletter-signup__container {
    width: calc(852px + (100vw - 1440px) / ((1920 - 1440) / (1092 - 852)));
  }
}
@media (min-width: 1920px) {
  .newsletter-signup__container {
    width: 1092px;
  }
}
.newsletter-signup__content-wrapper {
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
  text-align: center;
}
@media (min-width: 1280px) and (max-width: 1439.98px) {
  .newsletter-signup__content-wrapper {
    -webkit-margin-after: calc(40px + (100vw - 1280px) / ((1440 - 1280) / (48 - 40)));
            margin-block-end: calc(40px + (100vw - 1280px) / ((1440 - 1280) / (48 - 40)));
  }
}
@media (min-width: 1440px) {
  .newsletter-signup__content-wrapper {
    -webkit-margin-after: 48px;
            margin-block-end: 48px;
  }
}
.newsletter-signup__eyebrow {
  -webkit-margin-after: 24px;
          margin-block-end: 24px;
}
@media (min-width: 768px) and (max-width: 1439.98px) {
  .newsletter-signup__eyebrow {
    -webkit-margin-after: 20px;
            margin-block-end: 20px;
  }
}
.newsletter-signup__heading {
  margin-bottom: 16px;
}
@media (min-width: 1280px) {
  .newsletter-signup__heading {
    margin-bottom: 24px;
  }
}
.newsletter-signup__content {
  margin-bottom: 20px;
}
@media (min-width: 1280px) {
  .newsletter-signup__content {
    margin-bottom: 28px;
  }
}
.newsletter-signup__links {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.newsletter-signup__form {
  width: 100%;
}
.newsletter-signup .gform_wrapper {
  --gf-form-validation-bg-color: color-mix( in srgb, white, transparent 10% );
}
.newsletter-signup .gform_wrapper .gform_heading {
  display: none;
}
.newsletter-signup .gform_wrapper .gform_body {
  width: 100%;
}
.newsletter-signup .gform_wrapper .gform_fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (max-width: 767.98px) {
  .newsletter-signup .gform_wrapper .gform_fields {
    padding-inline: 22px;
  }
}
@media (min-width: 768px) {
  .newsletter-signup .gform_wrapper .gform_fields {
    grid-template-columns: 1fr 1fr 1fr auto;
  }
}
.newsletter-signup .gform_wrapper .gfield--type-text .gfield_label,
.newsletter-signup .gform_wrapper .gfield--type-email .gfield_label {
  display: block;
  margin-bottom: var(--nl-label-margin-bottom);
  color: var(--nl-input-label);
  font-family: "Hind-Light", sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
.newsletter-signup .gform_wrapper .gfield--type-text,
.newsletter-signup .gform_wrapper .gfield--type-email {
  position: relative;
}
.newsletter-signup .gform_wrapper .gfield--type-text .gfield_label,
.newsletter-signup .gform_wrapper .gfield--type-email .gfield_label {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: absolute;
  top: 4px;
  left: 15px;
  z-index: 2;
  margin: 0;
  font-size: var(--nl-label-floated-size);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: none;
}
.newsletter-signup .gform_wrapper .gfield--type-text:has(input:placeholder-shown:not(:focus)) .gfield_label,
.newsletter-signup .gform_wrapper .gfield--type-email:has(input:placeholder-shown:not(:focus)) .gfield_label {
  top: calc((var(--input-padding-top) + var(--input-font-size) * 1.75 + var(--input-padding-bottom)) / 2);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: var(--input-font-size);
}
.newsletter-signup .gform_wrapper .gfield--type-text input::-webkit-input-placeholder,
.newsletter-signup .gform_wrapper .gfield--type-email input::-webkit-input-placeholder {
  opacity: 0;
}
.newsletter-signup .gform_wrapper .gfield--type-text input::-moz-placeholder,
.newsletter-signup .gform_wrapper .gfield--type-email input::-moz-placeholder {
  opacity: 0;
}
.newsletter-signup .gform_wrapper .gfield--type-text input::-ms-input-placeholder,
.newsletter-signup .gform_wrapper .gfield--type-email input::-ms-input-placeholder {
  opacity: 0;
}
.newsletter-signup .gform_wrapper .gfield--type-text input::placeholder,
.newsletter-signup .gform_wrapper .gfield--type-email input::placeholder {
  opacity: 0;
}
.newsletter-signup .gform_wrapper .gfield--type-text input,
.newsletter-signup .gform_wrapper .gfield--type-email input {
  font-size: var(--input-font-size);
  line-height: 1.75;
  width: 100%;
  padding: var(--input-padding-top) 15px var(--input-padding-bottom);
  background-color: var(--nl-input-bg);
  border: 1px solid var(--nl-input-border);
  border-radius: 0;
  position: relative;
  height: unset;
}
.newsletter-signup .gform_wrapper .gfield--type-text input:focus,
.newsletter-signup .gform_wrapper .gfield--type-email input:focus {
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .newsletter-signup .gform_wrapper .gfield--type-submit {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(25% - 8px);
            flex: 1 0 calc(25% - 8px);
  }
}
@media (min-width: 1024px) {
  .newsletter-signup .gform_wrapper .gfield--type-submit {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 max-content;
            flex: 1 0 max-content;
  }
}
.newsletter-signup .gform_wrapper .gfield--type-submit .gform-loader {
  position: absolute;
  left: calc(100% + 4px);
}
.newsletter-signup .gform_wrapper .gfield--type-submit button {
  padding-block: 20px;
  text-align: center;
  width: 100%;
}
.newsletter-signup .gform_wrapper .gfield--width-full {
  grid-column: span 1;
}
.newsletter-signup .gform_wrapper .gform-button {
  height: 100%;
}
.newsletter-signup .gform_wrapper .gfield--type-consent {
  margin-inline: auto;
  -webkit-margin-before: 32px;
          margin-block-start: 32px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 0;
  grid-column: 1/-1;
}
@media (max-width: 767.98px) {
  .newsletter-signup .gform_wrapper .gfield--type-consent {
    margin-inline: -22px;
  }
}
@media (min-width: 768px) {
  .newsletter-signup .gform_wrapper .gfield--type-consent {
    -webkit-margin-before: 24px;
            margin-block-start: 24px;
  }
}
.newsletter-signup .gform_wrapper .gfield--type-consent .ginput_container_consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.newsletter-signup .gform_wrapper .gfield--type-consent .ginput_container_consent input[type=checkbox] {
  --gf-ctrl-choice-check-color: var(--nl-accent);
  border: 1px solid var(--nl-input-border);
  border-radius: 0;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 18px;
  width: 18px;
}
.newsletter-signup .gform_wrapper .gfield--type-consent .ginput_container_consent label {
  cursor: pointer;
  color: var(--nl-consent);
  margin: 0;
  font-family: "Hind-Light", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.25;
}
.newsletter-signup .gform_wrapper .gform_confirmation_message {
  text-align: center;
}
.newsletter-signup .gform_wrapper .gfield_validation_message {
  margin-top: 8px;
  color: var(--nl-error);
  text-align: center;
}
.newsletter-signup .gform_wrapper .gform_footer {
  display: none;
}
.newsletter-signup .gform_wrapper .gfield_required,
.newsletter-signup .gform_wrapper .gfield_required_asterisk {
  display: none;
}