/* Theme base styles */

:root {

	/* Spacing */
	--space-0: 0rem;
	--space-1: 0.2rem;
	--space-2: 0.4rem;
	--space-3: 0.8rem;
	--space-4: 1.2rem;
	--space-5: 1.6rem;
	--space-6: 2rem;
	--space-7: 2.4rem;
	--space-8: 3.2rem;
	--space-9: 4rem;
	--space-10: 4.8rem;
	--space-11: 6.4rem;
	--space-12: 8rem;
	--space-13: 9.6rem;

	/* Grid — Root font-size is 62.5%, so 1rem = 10px: 
	spec rem values are multiplied by 1.6 here (spec 1rem/16px = 1.6rem).

	Breakpoints (reference only):
	XS  <640px   SM  640px   MD  768px
	LG  1024px   XL  1280px  2XL 1536px

	--container-width / --grid-margin / --gap step at the breakpoints below. */
	--container-width: 100%;
	--container-width-narrow: 88rem;
	--grid-margin: 1.6rem;
	--gap: 1.6rem;

	--vertical-spacing: 12rem;
	--gap-xs: var(--space-1);
	--gap-sm: var(--space-2);
	--gap-md: var(--space-8);
	--gap-lg: var(--space-12);

	/* Colors */
	--blue-50: #EFF6FF;
	--blue-100: #DBEAFE;
	--blue-200: #BFDBFE;
	--blue-300: #93C5FD;
	--blue-400: #60A5FA;
	--blue-500: #3B82F6;
	--blue-600: #2563EB;
	--blue-700: #1D4ED8;
	--blue-800: #1E40AF;
	--blue-900: #1E3A8A;

	--red-50: #FEF2F2;
	--red-100: #FEE2E2;
	--red-200: #FECACA;
	--red-300: #FCA5A5;
	--red-400: #F87171;
	--red-500: #EF4444;
	--red-600: #DC2626;
	--red-700: #B91C1C;
	--red-800: #991B1B;
	--red-900: #7F1D1D;

	--amber-50: #FFFBEB;
	--amber-100: #FEF3C7;
	--amber-200: #FDE68A;
	--amber-300: #FCD34D;
	--amber-400: #FBBF24;
	--amber-500: #F59E0B;
	--amber-600: #D97706;
	--amber-700: #B45309;
	--amber-800: #92400E;
	--amber-900: #78350F;

	--green-50: #F0FDF4;
	--green-100: #DCFCE7;
	--green-200: #BBF7D0;
	--green-300: #86EFAC;
	--green-400: #4ADE80;
	--green-500: #22C55E;
	--green-600: #16A34A;
	--green-700: #15803D;
	--green-800: #166534;
	--green-900: #14532D;

	--sky-50: #F0F9FF;
	--sky-100: #E0F2FE;
	--sky-200: #BAE6FD;
	--sky-300: #7DD3FC;
	--sky-400: #38BDF8;
	--sky-500: #0EA5E9;
	--sky-600: #0284C7;
	--sky-700: #0369A1;
	--sky-800: #075985;
	--sky-900: #0C4A6E;

	--geodes-50: #EEF8FD;
	--geodes-100: #D5EFFB;
	--geodes-200: #74C9F0;
	--geodes-300: #42B6E8;
	--geodes-400: #42B6E8;
	--geodes-500: #1CA6DF;
	--geodes-600: #148ABD;
	--geodes-700: #0F6E99;
	--geodes-800: #0C577A;
	--geodes-900: #094560;


	--al-50: #EBF7FB;
	--al-100: #CEEEF7;
	--al-200: #9DDDEE;
	--al-300: #65C8E2;
	--al-400: #35B0D2;
	--al-500: #1196BF;
	--al-600: #007EA8;
	--al-700: #006589;
	--al-800: #004F6C;
	--al-900: #003E55;

	--em2-50: #FFF5F0;
	--em2-100: #FFE4D4;
	--em2-200: #FFC6A3;
	--em2-300: #FFA572;
	--em2-400: #F88754;
	--em2-500: #F26A36;
	--em2-600: #D9501D;
	--em2-700: #B53C12;
	--em2-800: #8F2F0E;
	--em2-900: #72260D;

	--phd-50: #F8F4FB;
	--phd-100: #EDE4F5;
	--phd-200: #DBCAEB;
	--phd-300: #C5A9DD;
	--phd-400: #A77FC0;
	--phd-500: #835AA2;
	--phd-600: #6B4588;
	--phd-700: #55356E;
	--phd-800: #402856;
	--phd-900: #2F1E40;

	--ww-50: #F0F9FE;
	--ww-100: #DFF1FD;
	--ww-200: #BDE3FB;
	--ww-300: #9BD5F9;
	--ww-400: #7CC7F1;
	--ww-500: #4BADE6;
	--ww-600: #2E92CC;
	--ww-700: #2276A8;
	--ww-800: #1C5D85;
	--ww-900: #164C6C;

	--neutral-0: #FFFFFF;
	--neutral-50: #FAFAFA;
	--neutral-100: #F5F5F5;
	--neutral-200: #E5E5E5;
	--neutral-300: #D4D4D4;
	--neutral-400: #A3A3A3;
	--neutral-500: #737373;
	--neutral-600: #525252;
	--neutral-700: #404040;
	--neutral-800: #262626;
	--neutral-900: #171717;
	--neutral-950: #0A0A0A;

	--background: var(--neutral-0);
	--text-primary: var(--neutral-900);
	--action-primary: var(--blue-600);
	--border: var(--neutral-200);
	--danger: var(--red-600);
	--success: var(--green-600);

	--black: #000;
	--dark-gray: var(--neutral-700);
	--light-gray: var(--neutral-200);
	--medium-gray: var(--neutral-400); /* form borders, form placeholders, table borders, table header, table footer, dividers */
	--white: #fff;

	--base-color: var(--text-primary);
	--primary-color: var(--action-primary);
	--primary-color-hover: var(--blue-700);
	--secondary-color: #E94814;
	--secondary-color-hover: var(--red-700);
	--tertiary-color: var(--neutral-200);
	--tertiary-color-hover: var(--neutral-400);

	/* Shadows */
	--shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
	--shadow-md: 0 4px 6px rgba(0,0,0,0.1);
	--shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
	--shadow-xl: 0 20px 25px rgba(0,0,0,0.15);

	/* Border Radius */
	--radius-none: 0;
	--radius-button: 0.2rem;
	--radius-sm: 0.4rem;
	--radius-md: 0.8rem;
	--radius-lg: 1.2rem;
	--radius-xl: 1.6rem;
	--radius-full: 9999px;

	/* Links */
	--link-color: var(--al-600);
	--link-color-hover: var(--al-600);
	--link-font-weight: 400;
	--link-font-weight-hover: 500;

	/* Focus */
	--focus-ring-width: 2px;
	--focus-ring-offset: 2px;
	--focus-ring-color: var(--neutral-400);

	/* Animations */
	--duration-fast: 100ms;
	--duration-normal: 200ms;
	--duration-slow: 300ms;
	--duration-very-slow: 500ms;

	/* Sizing */
	--icon-size-sm: 1.6rem;
	--icon-size-md: 2rem;
	--icon-size-lg: 2.4rem;
	--icon-size-xl: 3.2rem;

	/* Typography */
	--base-font-size: 1.8rem;
	--base-line-height: 1.5;
	--primary-font-family: "franklin-gothic-atf", sans-serif;
	--secondary-font-family: "franklin-gothic-atf", sans-serif;

}

/* Grid ladder — container width, page margin and gutter per breakpoint */

@media (min-width: 640px) {
	:root {
		--container-width: 64rem;  /* 640px */
	}
}

@media (min-width: 768px) {
	:root {
		--container-width: 76.8rem;  /* 768px */
	}
}

@media (min-width: 1024px) {
	:root {
		--container-width: 102.4rem;  /* 1024px */
		--grid-margin: 2.4rem;        /* 24px */
		--gap: 2.4rem;                /* 24px */
	}
}

@media (min-width: 1280px) {
	:root {
		--container-width: 128rem;  /* 1280px */
	}
}

@media (min-width: 1536px) {
	:root {
		--container-width: 153.6rem;  /* 1536px */
	}
}

/* Generic */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .oembed_container {
    margin-bottom: 1.5rem;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bold;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 85%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/* Objects */

.content-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
}

.content-wrapper--narrow {
  max-width: var(--container-width-narrow);
}

section,
.dnd-section,
.content-wrapper--vertical-spacing {
  max-width: 100vw;
  overflow-x: hidden;
  padding: calc(var(--vertical-spacing) / 2) var(--grid-margin);
}

.dnd-section > .row-fluid {
  max-width: var(--container-width);
  margin: 0 auto;
}

.dnd-section .row-module {
  margin: 0 calc(var(--gap) * -1);
}

.dnd-section > .row-fluid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--container-width);
  position: relative;
}

.dnd-section > .row-fluid .hs-private {
  width: 100%; /* for the dnd add module here placeholder */
}

@media (min-width: 768px) {
  .dnd-section .row-fluid {
    -webkit-column-gap: var(--gap);
       -moz-column-gap: var(--gap);
            column-gap: var(--gap);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .dnd-section [class*='span'] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  
    .dnd-section .span0 {
      flex-basis: 0.0%;
    }
  
    .dnd-section .span1 {
      flex-basis: 8.333333333333332%;
    }
  
    .dnd-section .span2 {
      flex-basis: 16.666666666666664%;
    }
  
    .dnd-section .span3 {
      flex-basis: 25.0%;
    }
  
    .dnd-section .span4 {
      flex-basis: 33.33333333333333%;
    }
  
    .dnd-section .span5 {
      flex-basis: 41.66666666666667%;
    }
  
    .dnd-section .span6 {
      flex-basis: 50.0%;
    }
  
    .dnd-section .span7 {
      flex-basis: 58.333333333333336%;
    }
  
    .dnd-section .span8 {
      flex-basis: 66.66666666666666%;
    }
  
    .dnd-section .span9 {
      flex-basis: 75.0%;
    }
  
    .dnd-section .span10 {
      flex-basis: 83.33333333333334%;
    }
  
    .dnd-section .span11 {
      flex-basis: 91.66666666666666%;
    }
  
    .dnd-section .span12 {
      flex-basis: 100.0%;
    }
  
}

@media (min-width: 1024px) {
  section,
  .dnd-section,
  .content-wrapper--vertical-spacing {
    padding: calc(var(--vertical-spacing) / 2) var(--grid-margin);
  }
}

/* Visibilty classes */

.hide {
  display: none !important;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

/* Responsive visibilty classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

/* Elements */

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}

body, .p {
  color: var(--base-color);
  font-family: var(--primary-font-family);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
}

/* Anchors */

a:not(.button) {
  color: var(--link-color);
  font-weight: var(--link-font-weight);
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a:not(.button):hover,
a:not(.button):focus {
  color: var(--link-color-hover);
  font-weight: var(--link-font-weight-hover);
  text-decoration: underline;
}

a:not(.button):active {
  color: var(--link-color-hover);
  font-weight: var(--link-font-weight-hover);
  text-decoration: underline;
}

/* Links wrapping only an image or icon have no text to underline. */
a:has(> img:only-child),
a:has(> svg:only-child),
a:has(> picture:only-child) {
  text-decoration: none;
}

/* Paragraphs */

p {
  margin: 0 0 2rem;
}

p strong,
p b {
  font-weight: 500;
}

.body-large {
  font-size: 1.8rem;
  line-height: 1.625;
}

.body-small {
  font-size: 1.4rem;
}

.caption {
  font-size: 1.2rem;
}

.overline {
  color: var(--neutral-400);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 10%;
}

/* Headings */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 2rem;
  font-family: var(--secondary-font-family);
  font-weight: 500;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 6.4rem;
}

h2,
.h2 {
  font-size: 4.8rem;
}

h3,
.h3 {
  font-size: 3.6rem;
  line-height: 1.3;
}

h4,
.h4 {
  font-size: 3rem;
  line-height: 1.3;
}

h5,
.h5 {
  font-size: 2.4rem;
  line-height: 1.3;
}

h6,
.h6 {
  font-size: 2rem;
  line-height: 1.3;
}

/* Lists */

ul,
ol {
  padding-left: 2rem;
  margin: 0 0 2rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  margin: 0;
  list-style: none;
  padding-left: 0;
}

li strong,
li b {
  font-weight: 500;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 6px solid var(--secondary-color);
  font-size: 2.4rem;
  font-style: italic;
  margin: 2rem 0;
  padding-left: 2rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid var(--medium-gray);
  margin: 4rem auto;
}
.buttons-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.button,
form input[type="submit"],
form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button,
form .hs-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 4.8rem;
  padding: 1rem 2rem;
  border: 0;
  border-radius: var(--radius-button);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  text-decoration: none;
}

.button:hover,
.button:focus,
.button:active {
  text-decoration: none;
}

/* Form */

form input[type="submit"],
form .hs-button {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: var(--neutral-0);
}

form input[type="submit"]:hover,
form input[type="submit"]:focus,
form input[type="submit"]:active,
form .hs-button:hover,
form .hs-button:focus,
form .hs-button:active {
  background-color: var(--neutral-0);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  text-decoration: none;
}

/* GM PRIMARY - Primary */

.button--primary,
form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button {
  background-color: var(--neutral-950);
  border: 1px solid var(--neutral-950);
  color: var(--neutral-0);
}

.button--primary:hover,
.button--primary:focus,
form input[type="file"]::file-selector-button:hover,
form input[type="file"]::file-selector-button:focus {
  background-color: var(--neutral-0);
  border-color: var(--neutral-900);
  color: var(--neutral-900);
  text-decoration: none;
}

.button--primary:active,
form input[type="file"]::file-selector-button:active {
  background-color: var(--neutral-0);
  border-color: var(--neutral-900);
  color: var(--neutral-900);
  text-decoration: none;
}

form input[type="file"]::-webkit-file-upload-button:hover,
form input[type="file"]::-webkit-file-upload-button:focus {
  background-color: var(--neutral-0);
  border-color: var(--neutral-900);
  color: var(--neutral-900);
  text-decoration: none;
}

form input[type="file"]::-webkit-file-upload-button:active {
  background-color: var(--neutral-0);
  border-color: var(--neutral-900);
  color: var(--neutral-900);
  text-decoration: none;
}

/* GM DESTRUCTIVE - Color */

.button--color {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: var(--neutral-0);
}

.button--color:hover,
.button--color:focus {
  background-color: var(--neutral-0);
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  text-decoration: none;
}

.button--color:active {
  background-color: var(--neutral-0);
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  text-decoration: none;
}

/* GM SECONDARY - Outline */

.button--outline {
  background: transparent;
  border: 1px solid var(--neutral-950);
  color: var(--neutral-900);
}

.button--outline:hover,
.button--outline:focus {
  background: var(--neutral-950);
  border: 1px solid var(--neutral-950);
  color: var(--neutral-0);
  text-decoration: none;
}

.button--outline:active {
  background-color: var(--neutral-950);
  border: 1px solid var(--neutral-950);
  color: var(--neutral-0);
  text-decoration: none;
}

/* GM GHOST - Light (for use on dark / colored backgrounds) */

.button--light {
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--neutral-950);
  text-decoration: none;
}

.button--light:hover,
.button--light:focus,
.button--light:active {
  background: var(--neutral-950);
  border: 1px solid var(--neutral-950);
  color: var(--neutral-0);
  text-decoration: none;
}

/* Dark — solid black button */

.button--dark {
  background-color: var(--neutral-950);
  border: 1px solid var(--neutral-950);
  color: var(--white);
}

.button--dark:hover,
.button--dark:focus,
.button--dark:active {
  background-color: transparent;
  border-color: var(--neutral-950);
  color: var(--neutral-950);
  text-decoration: none;
}

/* GM CTA CARET - Text Primary */

.button--text-primary {
  min-height: auto;
  padding: 0;
  background: none;
  color: var(--al-600);
  text-decoration: none;
  text-underline-offset: 2px;
  gap: 0.8rem;
}

.button--text-primary::after {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 0.6rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.666656 8.66675L4.66666 4.66675L0.666656 0.666748' stroke='%23007EA8' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 2px;
}

.button--text-primary:hover,
.button--text-primary:focus {
  color: var(--al-600);
  text-decoration: underline;
}

.button--text-primary:active {
  color: var(--al-600);
  text-decoration: underline;
}

/* GM CTA ARROW - Text Secondary */

.button--text-secondary {
  min-height: auto;
  padding: 0;
  background: none;
  color: var(--al-600);
  text-decoration: none;
  text-underline-offset: 2px;
}

.button--text-secondary::after {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.33301 8H12.6663' stroke='%23007EA8' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 3.33325L12.6667 7.99992L8 12.6666' stroke='%23007EA8' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 4px;
}

.button--text-secondary:hover,
.button--text-secondary:focus {
  color: var(--al-600);
  text-decoration: underline;
}

.button--text-secondary:active {
  color: var(--al-600);
  text-decoration: underline;
}

/* Icon */

.button--icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--space-3);
}

.button--icon > span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.button--icon > svg {
  height: 1.6rem;
}

/* Full */

.button--full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

/* Small */

.button--small {
  min-height: 2.4rem;
  padding: 0.5rem 1rem;
  font-size: calc(var(--base-font-size) * 0.75);
}

/* Large */

.button--large {
  padding: 3rem 2rem;
  font-size: calc(var(--base-font-size) * 1.5);
}

/* CTA Override */

a.cta_button {
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}
/* Labels */

form label,
.fakelabel {
  display: block;
  margin-bottom: 0.7rem;
  line-height: 1;
  font-size: 1.6rem;
  font-weight: 400;
}
.hs-form-field > label {
  line-height: 1.2;
}

/* Inputs */

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="tel"],
form input[type="number"],
form input[type="file"],
form input[type="search"],
form select,
form textarea {
  display: block;
  padding: 1.6rem 1.4rem;
  width: 100%;
  margin-bottom: var(--space-8);
  background-color: var(--white);
  border: 1px solid var(--neutral-50);
  border-radius: 0;
  line-height: 1;
}

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 30' xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3E%3Cpath d='M5.64 0 0 5.64l24 24 24-24L42.36 0 24 18.32 5.64 0Z' style='fill-rule:nonzero'/%3E%3C/svg%3E");
  background-position: calc(100% - 1rem) 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  border: 1px solid var(--neutral-50);
  -webkit-text-fill-color: var(--base-color);
  opacity: 1;
}

form textarea {
  min-height: 15rem;
  margin-top: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--neutral-50);
}

form fieldset {
  max-width: 100% !important;
}

::-webkit-input-placeholder {
  color: var(--medium-gray);
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
::placeholder,
.hs-fieldtype-date .input .hs-dateinput:before {
  color: var(--medium-gray);
}

/* Inputs - checkbox/radio */

.inputs-list {
  margin: 0 0 2rem 0;
  padding: 0;
  list-style: none;
}

.inputs-list>li {
  display: block;
}

.inputs-list>li+li {
  margin-top: var(--space-4);
}

input[type="checkbox"],
input[type="radio"] {
  cursor: pointer;
  margin-right: var(--space-3);
}

input[type="range"],
progress {
  accent-color: var(--primary-color);
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--neutral-100);
  background-color: var(--white);
  vertical-align: middle;
}

input[type="checkbox"] {
  border-radius: 0;
}

input[type="radio"] {
  border-radius: 50%;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background-color: var(--action-primary);
  border-color: var(--action-primary);
  background-repeat: no-repeat;
  background-position: center;
}

input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L1.72 8.78a.75.75 0 0 1 1.06-1.06L6 11.44l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
  background-size: 75%;
}

input[type="radio"]:checked {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3.5' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100%;
}

.inputs-list label,
.hs-form-booleancheckbox-display {
  display: flex;
  align-items: center;
  line-height: 1;
}

.inputs-list label>span,
.hs-form-booleancheckbox-display>span {
  line-height: 1;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content: "\01F4C5";
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: var(--base-color);
}

.fn-date-picker td.is-selected .pika-button {
  background: var(--dark-gray);
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  background-color: var(--dark-gray) !important;
  border-radius: 0 !important;
  color: #fff;
}

.fn-date-picker td.is-today .pika-button {
  color: var(--dark-gray);
}

/* Inputs - file picker */

form input[type="file"] {
  width: auto !important;
  min-height: auto;
  background-color: transparent;
  border: initial;
  padding: initial;
}

form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button {
  margin-right: var(--gap);
}

/* Submit */

form .hs-submit {
  margin-top: var(--space-10);
}

/* Headings and text */

form .hs-richtext img {
  max-width: 100% !important;
}

form .hs-richtext a {
  color: var(--secondary-color);
  text-decoration: underline;
}
form .hs-richtext a:hover,
form .hs-richtext a:focus {
  text-decoration: none;
}

/* GDPR */

.legal-consent-container {
  margin-top: var(--space-4);
}

.legal-consent-container .hs-form-booleancheckbox-display>span,
.legal-consent-container .hs-form-booleancheckbox-display>span p {
  margin-left: 0 !important;
}

.legal-consent-container .hs-form-booleancheckbox-display p {
  position: relative;
  top: -1px;
}

/* Validation */

.hs-form-required {
  color: var(--danger);
}

.hs-input.invalid.error {
  border-color: var(--danger);
  background-color: var(--red-50);
}

.hs-error-msg,
.hs-error-msg,
.hs-error-msgs {
  margin: -1rem 0 2rem 0;
  color: var(--danger);
  font-size: 1.4rem;
  font-weight: 400;
}

.hs_error_rollup {
  display: none;
}

/* Captcha */

.grecaptcha-badge {
  margin-bottom: 2rem;
}

/* Change Autocomplete styles in Chrome */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px var(--white) inset !important;
  box-shadow: 0 0 0 30px var(--white) inset !important;
}

/* Fix Column Layouts */

.hs-form fieldset {
  max-width: inherit !important;
}

.hs-form fieldset.form-columns-1 .hs-form-field,
.hs-form fieldset.form-columns-2 .hs-form-field,
.hs-form fieldset.form-columns-3 .hs-form-field {
  width: 100% !important;
}

.hs-form fieldset.form-columns-1 .hs-form-field .input,
.hs-form fieldset.form-columns-2 .hs-form-field .input,
.hs-form fieldset.form-columns-3 .hs-form-field .input {
  margin-right: 0 !important;
}

.hs-form fieldset.form-columns-1 .hs-form-field .hs-input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.hs-form fieldset.form-columns-2 .hs-form-field .hs-input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.hs-form fieldset.form-columns-3 .hs-form-field .hs-input:not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  width: 100% !important;
}

@media (min-width: 1024px) {
  .hs-form fieldset.form-columns-1 .hs-form-field {
    width: 100% !important;
  }

  .hs-form fieldset.form-columns-2 .hs-form-field {
    width: 50% !important;
  }

  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(1) {
    padding-right: 1.25rem;
  }

  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(2) {
    padding-left: 1.25rem;
  }

  .hs-form fieldset.form-columns-3 .hs-form-field {
    width: 33.333% !important;
  }

  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(1) {
    padding-right: 1.25rem;
  }

  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(2) {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(3) {
    padding-left: 1.25rem;
  }
}
/* Table */

table {
	width: 100%;
	border: 1px solid var(--light-gray);
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
	padding: 1rem;
	text-align: left;
  vertical-align: top;
}

td {
	border-bottom: 1px solid var(--light-gray);
}

/* Table header */

thead th {
	background-color: var(--light-gray);
  vertical-align: bottom;
}

/* Table footer */

tfoot td {
  background-color: var(--light-gray);
}

/* Components */

body.modal-open
  .body-wrapper
  > div[data-global-resource-path*="/templates/partials/header.html"] {
  z-index: unset;
}

.body-wrapper {
  overflow-x: clip;
}

.header {
  position: relative;
  background-color: var(--white);
  border-bottom: 1px solid var(--light-gray);
}

.header__container {
  padding: 2rem;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .header--paid-lp .header__inner {
    flex-direction: column;
  }
}

/* Logo */

.header__logo a {
  display: block;
  font-size: 0;
}

/* Phone Number */
.header__phone {
  text-align: center;
}
.header__phone a span {
  white-space: nowrap;
}

/* Nav */

.header__navigation nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}
.footer-2025 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-2025 a:not(:hover, :focus) {
  text-decoration: none;
}

.footer-2025 .container-fluid.footer-container-1 .hs_cos_wrapper_type_logo,
.footer-2025 .footer-container-2 .hs-menu-wrapper.hs-menu-flow-horizontal > ul,
.footer-2025 .footer-container-2 p {
  margin: 0 !important;
}

@media (min-width: 768px) {
  .footer-2025 .footer-container-2 .hs-menu-wrapper.hs-menu-flow-horizontal > ul li {
    float: left;
  }
}




.footer {
  padding: 2rem;
  background-color: var(--secondary-color);
}
.footer,
.footer a {
  color: var(--white);
  font-size: 1.4rem;
}
.footer--copyright {
  padding-top: 3rem;
  border-top: 1px solid var(--light-gray);
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: var(--gap);
  }
}

/* Utilities */

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Background Colors */

.bg-light-gray {
  background-color: var(--light-gray);
}
.bg-white {
  background-color: var(--white);
}

/* Spacing */

.mt-none {
  margin-top: 0 !important;
}
.mt-xs {
  margin-top: calc(var(--gap) * 0.25) !important;
}
.mt-sm {
  margin-top: calc(var(--gap) * 0.5) !important;
}
.mt-md {
  margin-top: var(--gap) !important;
}
.mt-lg {
  margin-top: calc(var(--gap) * 1.5) !important;
}
.mt-xl {
  margin-top: calc(var(--gap) * 2) !important;
}

.mb-none {
  margin-bottom: 0 !important;
}
.mb-xs {
  margin-bottom: calc(var(--gap) * 0.25) !important;
}
.mb-sm {
  margin-bottom: calc(var(--gap) * 0.5) !important;
}
.mb-md {
  margin-bottom: var(--gap) !important;
}
.mb-lg {
  margin-bottom: calc(var(--gap) * 1.5) !important;
}
.mb-xl {
  margin-bottom: calc(var(--gap) * 2) !important;
}

.pt-none {
  padding-top: 0 !important;
}
.pt-xs {
  padding-top: calc(var(--gap) * 0.25) !important;
}
.pt-sm {
  padding-top: calc(var(--gap) * 0.5) !important;
}
.pt-md {
  padding-top: var(--gap) !important;
}
.pt-lg {
  padding-top: calc(var(--gap) * 1.5) !important;
}
.pt-xl {
  padding-top: calc(var(--gap) * 2) !important;
}

.pb-none {
  padding-bottom: 0;
}
.pb-xs {
  padding-bottom: calc(var(--gap) * 0.25);
}
.pb-sm {
  padding-bottom: calc(var(--gap) * 0.5);
}
.pb-md {
  padding-bottom: var(--gap) !important;
}
.pb-lg {
  padding-bottom: calc(var(--gap) * 1.5) !important;
}
.pb-xl {
  padding-bottom: calc(var(--gap) * 2);
}

/* Text */

.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}

.text-large {
  font-size: calc(var(--base-font-size) * 1.2);
}
.text-small {
  font-size: calc(var(--base-font-size) * 0.8);
}

/* Type overrides — used by module-level heading style controls. !important because module.css is injected separately from main.css, so equal-specificity module rules could otherwise win on source order. */

.fs-h1 {
  font-size: 6.4rem !important;
}
.fs-h2 {
  font-size: 4.8rem !important;
}
.fs-h3 {
  font-size: 3.6rem !important;
}
.fs-h4 {
  font-size: 3rem !important;
}
.fs-h5 {
  font-size: 2.4rem !important;
}
.fs-h6 {
  font-size: 2rem !important;
}
.fs-body-large {
  font-size: 2rem !important;
}
.fs-body {
  font-size: 1.8rem !important;
}
.fs-body-small {
  font-size: 1.6rem !important;
}

.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}

.lh-tight {
  line-height: 1.2 !important;
}
.lh-snug {
  line-height: 1.3 !important;
}
.lh-normal {
  line-height: 1.5 !important;
}
.lh-relaxed {
  line-height: 1.625 !important;
}

.text-neutral-900 {
  color: var(--neutral-900) !important;
}
.text-neutral-700 {
  color: var(--neutral-700) !important;
}
.text-neutral-500 {
  color: var(--neutral-500) !important;
}
.text-white {
  color: var(--neutral-0) !important;
}
.text-al {
  color: var(--al-600) !important;
}
.text-em2 {
  color: var(--em2-600) !important;
}
.text-geodes {
  color: var(--geodes-600) !important;
}
.text-phd {
  color: var(--phd-600) !important;
}
.text-ww {
  color: var(--ww-600) !important;
}

/* Responsive embed */

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.embed-container--43 {
  padding-bottom: 75%;
}