/* Theme base styles */

:root {

	/* Spacing */

	--container-width: 1180px;
	--container-width-narrow: 780px;
	--vertical-spacing: 12rem;
	--gap: 2rem;
	--gap-xs: calc(var(--gap) / 4);
	--gap-sm: calc(var(--gap) / 2);
	--gap-md: calc(var(--gap) * 2);
	--gap-lg: calc(var(--gap) * 4);

	/* Colors */

	--base-color: #00052F;
	--primary-color: #9D00F5;
	--primary-color-hover: #9D00F5;
	--secondary-color: #F50074;
	--secondary-color-hover: #F50074;
	--tertiary-color: #9BF5F2;
	--tertiary-color-hover: #9BF5F2;

	--black: #00151A;
	--dark-gray: #424242;
	--light-gray: #efefef;
	--medium-gray: #c2cacc; /* form borders, form placeholders, table borders, table header, table footer, dividers */
	--white: #fff;
	--oxford-blue: #00052F;
	--neon-lavender: #9D00F5;
	--raspberry: #F50074;
	--strawberry-pink: #EB00F5;
	--night-purple: #4B00F5;
	--light-vesper-blue: #0005F5;
	--sea-glass-blue: #9BF5F2;
	--grey-50: #F4F9FA;
	--grey-100: #E0E7E9;
	--grey-200: #C2CACC;
	--grey-300: #A3ADB0;
	--grey-400: #859093;
	--grey-500: #667377;
	--grey-600: #48565a;
	--grey-700: #243B40;
	--grey-800: #001F26;
	--grey-900: #00151A;

	/* Gradients */

	--gradient-raspberry-night-purple: linear-gradient(96deg, var(--raspberry) 0%, var(--night-purple) 100%);
	--gradient-raspberry-neon-lavender: linear-gradient(96deg, var(--raspberry) 0%, var(--neon-lavender) 100%);
	--gradient-neon-lavender-light-vesper-blue: linear-gradient(96deg, var(--neon-lavender) 0%, var(--light-vesper-blue) 100%);
	--gradient-light-vesper-blue-neon-lavender: linear-gradient(96deg, var(--light-vesper-blue) 0%, var(--neon-lavender) 100%);

	/* Border radius */

	--border-radius: 1.6rem;
	--border-radius-sm: 0.8rem;

	/* Typography */

	--base-font-size: 1.6rem;
	--base-line-height: 1.75;
	--primary-font-family: 'Open Sans', sans-serif;
	--secondary-font-family: 'Archivo', serif;

}

/* 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 {
  padding: calc(var(--vertical-spacing) / 2) 2rem;
}

.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: 992px) {
  section,
  .dnd-section,
  .content-wrapper--vertical-spacing {
    padding: var(--vertical-spacing) 2rem;
  }
}

/* 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: 1139px) {
  .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;
}

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

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

/* Anchors */

a {
  color: var(--base-color);
  text-decoration: underline;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a:hover,
a:focus,
a:active {
  color: var(--primary-color);
	text-decoration: none;
}

/* Paragraphs */

p {
  margin: 0 0 1.6rem;
}

/* Headings */

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

h1,
.h1 {
  font-size: 4.8rem;
}
h2,
.h2 {
  font-size: 3.2rem;
}
h3,
.h3 {
  font-size: 2.8rem;
}
h4,
.h4 {
  font-size: 2.2rem;
}
h5,
.h5 {
  font-size: 2rem;
}
h6,
.h6 {
  font-size: 1.8rem;
}

@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 5.6rem;
  }
  h2,
  .h2 {
    font-size: 4rem;
  }
  h3,
  .h3 {
    font-size: 3.2rem;
  }
}

/* Lists */

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

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

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

/* 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;
}

/* Overline */

.overline {
	color: var(--grey-600);
	font-family: var(--secondary-font-family);
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.button,
form input[type="submit"],
form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button,
form .hs-button {
	position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
	width: 100%;
  min-height: 5.2rem;
	padding: 1.2rem 2.4rem;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
	font-family: var(--secondary-font-family);
	font-weight: 600;
  line-height: 1.2;
  text-align: center;
	text-decoration: none;
  white-space: normal;
  cursor: pointer;
}

@media (min-width: 480px) {
  .button,
  form input[type="submit"],
  form .hs-button {
    width: auto;
  }
}

.button--primary,
form input[type="submit"],
form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button,
form .hs-button {
	gap: var(--gap-sm);
	padding: 1.2rem 2.4rem;
  background: linear-gradient(96deg, rgba(157,0,245,1) 0%, rgba(0,5,245,1) 100%);
	background-size: 200% 100%;
	background-position: 15% 50%;
	border-radius: 100vw;
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus,
.button--primary:active,
form input[type="submit"]:hover,
form input[type="submit"]:focus,
form input[type="submit"]:active,
form input[type="file"]::file-selector-button:hover,
form input[type="file"]::file-selector-button:focus,
form input[type="file"]::file-selector-button:active,
form .hs-button:hover,
form .hs-button:focus,
form .hs-button:active {
	background: linear-gradient(96deg, rgba(157,0,245,1) 0%, rgba(0,5,245,1) 100%);
	background-size: 200% 100%;
	background-position: 15% 50%;
	color: var(--white);
	text-decoration: none;
	animation: buttonanimation 4s ease normal infinite;
}

form input[type="file"]::-webkit-file-upload-button:hover,
form input[type="file"]::-webkit-file-upload-button:focus,
form input[type="file"]::-webkit-file-upload-button:active {
  background: var(--gradient-neon-lavender-light-vesper-blue);
  color: var(--white);
	text-decoration: none;
}

/* Primary */

.button--primary {
	padding: 1.2rem 2.4rem 1.2rem 4.8rem;
}

.button--primary:before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg viewBox='0 0 6 9' width='6' height='9' 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='M2.828 4.243 0 1.414 1.414 0l4.243 4.243-4.243 4.242L0 7.071l2.828-2.828Z' style='fill:%23fff;fill-rule:nonzero'/%3E%3C/svg%3E");
  left: 1.2rem;
	display: grid;
	place-content: center;
	width: 2.4rem;
	height: 2.4rem;
	background-color: rgba(255, 255, 255, 0.16);
	border-radius: 50%;
  font-size: 0;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

.button--primary:hover,
.button--primary:focus,
.button--primary:active {
	padding: 1.2rem 4.8rem 1.2rem 2.4rem;
}
	
@media (hover: hover) {
	.button--primary:hover:before,
	.button--primary:focus:before,
	.button--primary:active:before {
		left: calc(100% - 3.6rem);
	}
}

/* Primary Outline */

.button--primary-outline {
	position: relative;
	gap: var(--gap-sm);
	padding: 1.2rem 2.4rem 1.2rem 4.8rem;
	background: linear-gradient(96deg, rgba(157,0,245,1) 0%, rgba(0,5,245,1) 100%);
	background-size: 200% 100%;
	background-position: 15% 50%;
  border: 1px solid var(--neon-lavender);
	border-radius: 100vw;
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.button--primary-outline:before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg viewBox='0 0 6 9' width='6' height='9' 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='M2.828 4.243 0 1.414 1.414 0l4.243 4.243-4.243 4.242L0 7.071l2.828-2.828Z' style='fill:%239D00F5;fill-rule:nonzero'/%3E%3C/svg%3E");
  left: 1.2rem;
	display: grid;
	place-content: center;
	width: 2.4rem;
	height: 2.4rem;
	background-color: rgba(255, 255, 255, 0);
	border-radius: 50%;
  font-size: 0;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

.button--primary-outline:hover,
.button--primary-outline:focus,
.button--primary-outline:active {
	padding: 1.2rem 4.8rem 1.2rem 2.4rem;
	background: linear-gradient(96deg, rgba(157,0,245,1) 0%, rgba(0,5,245,1) 100%);
	background-size: 200% 100%;
	background-position: 15% 50%;
	border-color: transparent;
	-webkit-text-fill-color: var(--white);
	color: var(--white);
	text-decoration: none;
	animation: buttonanimation 4s ease normal infinite;
}

@media (hover: hover) {
	.button--primary-outline:hover:before,
	.button--primary-outline:focus:before,
	.button--primary-outline:active:before {
		content: url("data:image/svg+xml,%3Csvg viewBox='0 0 6 9' width='6' height='9' 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='M2.828 4.243 0 1.414 1.414 0l4.243 4.243-4.243 4.242L0 7.071l2.828-2.828Z' style='fill:%23fff;fill-rule:nonzero'/%3E%3C/svg%3E");
		background-color: rgba(255, 255, 255, 0.16);
		left: calc(100% - 3.6rem);
	}
}

/* Secondary */

.button--secondary {
	position: relative;
	gap: var(--gap-sm);
	padding: 1.2rem 2.4rem 1.2rem 4.8rem;
	background: linear-gradient(96deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 100%);
	background-size: 200% 100%;
	background-position: 15% 50%;
	color: var(--primary-color);
	border-radius: 100vw;
}

.button--secondary:before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg viewBox='0 0 6 9' width='6' height='9' 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='M2.828 4.243 0 1.414 1.414 0l4.243 4.243-4.243 4.242L0 7.071l2.828-2.828Z' style='fill:%239D00F5;fill-rule:nonzero'/%3E%3C/svg%3E");
  left: 1.2rem;
	display: grid;
	place-content: center;
	width: 2.4rem;
	height: 2.4rem;
	background-color: rgba(255, 255, 255, 0);
	border-radius: 50%;
  font-size: 0;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

.button--secondary:hover,
.button--secondary:focus,
.button--secondary:active {
	padding: 1.2rem 4.8rem 1.2rem 2.4rem;
	background: linear-gradient(96deg, rgba(157,0,245,1) 0%, rgba(0,5,245,1) 100%);
	background-size: 200% 100%;
	background-position: 15% 50%;
	border-color: transparent;
	color: var(--white);
	text-decoration: none;
	animation: buttonanimation 4s ease normal infinite;
}

@media (hover: hover) {
	.button--secondary:hover:before,
	.button--secondary:focus:before,
	.button--secondary:active:before {
		content: url("data:image/svg+xml,%3Csvg viewBox='0 0 6 9' width='6' height='9' 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='M2.828 4.243 0 1.414 1.414 0l4.243 4.243-4.243 4.242L0 7.071l2.828-2.828Z' style='fill:%23fff;fill-rule:nonzero'/%3E%3C/svg%3E");
		background-color: rgba(255, 255, 255, 0.16);
		left: calc(100% - 3.6rem);
	}
}

/* Secondary Outline */

.button--secondary-outline {
	position: relative;
	gap: var(--gap-sm);
	padding: 1.2rem 2.4rem 1.2rem 4.8rem;
	background: linear-gradient(96deg, rgba(157,0,245,0) 0%, rgba(0,5,245,0) 100%);
	background-size: 200% 100%;
	background-position: 15% 50%;
  border: 1px solid var(--white);
	border-radius: 100vw;
	color: var(--white);
}

.button--secondary-outline:before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg viewBox='0 0 6 9' width='6' height='9' 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='M2.828 4.243 0 1.414 1.414 0l4.243 4.243-4.243 4.242L0 7.071l2.828-2.828Z' style='fill:%23fff;fill-rule:nonzero'/%3E%3C/svg%3E");
  left: 1.2rem;
	display: grid;
	place-content: center;
	width: 2.4rem;
	height: 2.4rem;
	background-color: rgba(255, 255, 255, 0);
	border-radius: 50%;
  font-size: 0;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

.button--secondary-outline:hover,
.button--secondary-outline:focus,
.button--secondary-outline:active {
	padding: 1.2rem 4.8rem 1.2rem 2.4rem;
	background: linear-gradient(96deg, rgba(157,0,245,1) 0%, rgba(0,5,245,1) 100%);
	background-size: 200% 100%;
	background-position: 15% 50%;
	border-color: transparent;
	color: var(--white);
	text-decoration: none;
	animation: buttonanimation 4s ease normal infinite;
}

@media (hover: hover) {
	.button--secondary-outline:hover:before,
	.button--secondary-outline:focus:before,
	.button--secondary-outline:active:before {
		background-color: rgba(255, 255, 255, 0.16);
		left: calc(100% - 3.6rem);
	}
}

/* Text Primary */

.button--text-primary {
	width: auto;
	min-height: auto;
  padding-block: 0;
	padding-inline: 1.6rem 0;
  background: var(--gradient-neon-lavender-light-vesper-blue);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.button--text-primary:before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg viewBox='0 0 6 9' width='6' height='9' xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3E%3Cg%3E%3Cpath d='M2.828 4.243 0 1.414 1.414 0l4.243 4.243-4.243 4.242L0 7.071l2.828-2.828Z' style='fill:%239d00f5;fill-rule:nonzero'/%3E%3C/g%3E%3C/svg%3E");
  left: 0;
  font-size: 0;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

.button--text-primary:hover,
.button--text-primary:focus,
.button--text-primary:active {
	padding-inline: 0 1.6rem;
	background: var(--gradient-light-vesper-blue-neon-lavender);
	background-clip: text;
	-webkit-background-clip: text;
	text-decoration: none;
}

@media (hover: hover) {
	.button--text-primary:hover:before,
	.button--text-primary:focus:before,
	.button--text-primary:active:before {
		left: calc(100% - 6px);
	}
}

/* Text Secondary */

.button--text-secondary {
	width: auto;
  min-height: auto;
  padding-block: 0;
	padding-inline: 1.6rem 0;
  color: var(--white);
}

.button--text-secondary:before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg viewBox='0 0 6 9' width='6' height='9' 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='M2.828 4.243 0 1.414 1.414 0l4.243 4.243-4.243 4.242L0 7.071l2.828-2.828Z' style='fill:%23fff;fill-rule:nonzero'/%3E%3C/svg%3E");
  left: 0;
  font-size: 0;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

.button--text-secondary:hover,
.button--text-secondary:focus,
.button--text-secondary:active {
	padding-inline: 0 1.6rem;
	color: var(--white);
	text-decoration: none;
}

@media (hover: hover) {
	.button--text-secondary:hover:before,
	.button--text-secondary:focus:before,
	.button--text-secondary:active:before {
		left: calc(100% - 6px);
	}
}

/* Text Tertiary */

.button--text-tertiary {
	width: auto;
  min-height: auto;
  padding-block: 0;
	padding-inline: 1.6rem 0;
  color: var(--oxford-blue);
}

.button--text-tertiary:before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg viewBox='0 0 6 9' width='6' height='9' 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='M2.828 4.243 0 1.414 1.414 0l4.243 4.243-4.243 4.242L0 7.071l2.828-2.828Z' style='fill:%2300052F;fill-rule:nonzero'/%3E%3C/svg%3E");
  left: 0;
  font-size: 0;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

.button--text-tertiary:hover,
.button--text-tertiary:focus,
.button--text-tertiary:active {
	padding-inline: 0 1.6rem;
	color: var(--oxford-blue);
	text-decoration: none;
}

@media (hover: hover) {
	.button--text-tertiary:hover:before,
	.button--text-tertiary:focus:before,
	.button--text-tertiary:active:before {
		left: calc(100% - 6px);
	}
}

/* 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(--gap-xs);
}

.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: 3.6rem;
}

/* Large */

.button--large {
  min-height: 6.8rem;
}

/* CTA Override */

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

/* Animation */

@keyframes buttonanimation {
	0% {
		background-position: 15% 50%;
	}
	25% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 15% 50%;
	}
	75% {
		background-position: 30% 50%;
	}
	100% {
		background-position: 15% 50%;
	}
}
/* Labels */

form label,
.fakelabel {
  display: block;
  margin-bottom: 1rem;
	font-size: 1.5rem;
  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: 1rem 2rem;
  width: 100%;
  min-height: 5.2rem;
  margin-bottom: 2rem;
  background-color: var(--white);
  border: 1px solid var(--medium-gray);
	border-radius: 100vw;
	font-size: 1.5rem;
}

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% - 2rem) 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  border: 1px solid var(--medium-gray);
  -webkit-text-fill-color: var(--base-color);
  opacity: 1;
}

form textarea {
  min-height: 15rem;
  margin-top: 1rem;
  padding: 1rem 1rem;
  border: 1px solid var(--medium-gray);
	border-radius: 1.6rem;
}

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

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

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

/* Inputs - checkbox/radio */

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

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

input[type="checkbox"],
input[type="radio"] {
  cursor: pointer;
  margin-right: 0.5rem;
}

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

/* 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);
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 1.4rem;
  margin: 0 0 1.6rem;
}

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

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  font-size: 1.4rem;
}

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

/* Validation */

.hs-form-required {
  color: #E60000;
}

.hs-input.invalid.error {
  border-color: #E60000;
}

.hs-error-msg,
.hs-error-msg,
.hs-error-msgs {
  margin: -1rem 0 2rem 0;
  color: #E60000;
  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: 992px) {
  .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: 0.75rem;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
  }
  .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: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(3) {
    padding-left: 0.75rem;
  }
}
/* Table */

table {
	width: 100%;
	border: 1px solid var(--grey-50);
  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(--grey-50);
}

/* Table header */

thead th {
	background-color: var(--grey-50);
  vertical-align: bottom;
}

/* Table footer */

tfoot td {
  background-color: var(--grey-50);
}

/* Components */

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

.header {
  position: absolute;
	z-index: 101;
	top: 0;
	left: 0;
	width: 100%;
}

.header:has(.menu.is-active) {
	background-color: var(--white);
}

@media(min-width: 992px) {
	.header:has(.menu.is-active) {
		background-color: transparent;
	}
}

.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;
}

/* Logo */

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

.header__logo a > img {
	height: 2.4rem !important;
	width: auto !important;
	filter: brightness(0) invert(1);
}

.header:has(.menu.is-active) .header__logo a > img {
	filter: none;
}

@media(min-width: 992px) {
	.header__logo a > img {
		height: 4rem !important;
		filter: brightness(0) invert(1);
	}
	.header:has(.menu.is-active) .header__logo a > img {
		filter: brightness(0) invert(1);
	}
}

/* Navigation skipper */

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

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
	color: var(--white);
}
.footer {
	padding-block: 4rem;
  padding-inline: 2rem;
  background-color: var(--black);
  color: var(--white);
}
.footer--no-navigation {
  padding-block: 2rem;
}
.footer-top {
	display: grid;
	grid-gap: var(--gap-md);
	margin-bottom: 4rem;
	padding-bottom: 4rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom__inner {
	display: grid;
	grid-gap: var(--gap-md);
	margin-top: 2.4rem;
}
.footer--no-navigation .footer-bottom__inner {
	gap: var(--gap);
	margin-top: 0;
}
.footer-bottom__disclaimer {
	font-family: var(--secondary-font-family);
	font-size: 1.8rem;
}
.footer-bottom__copyright {
	color: var(--medium-gray);
}
.footer-bottom__copyright--desktop {
	display: none;
}
.footer-bottom__links ul {
	display: grid;
	grid-gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-bottom__links ul > li {
	font-family: var(--secondary-font-family);
}
.footer-bottom__links ul > li > a {
	color: var(--medium-gray);
	text-decoration: none;
}
.footer-bottom__links ul > li > a:hover,
.footer-bottom__links ul > li > a:active,
.footer-bottom__links ul > li > a:focus {
	color: var(--white);
	text-decoration: none;
}
@media (min-width: 992px) {
	.footer {
		padding-block: 8rem;
	}
	.footer--no-navigation {
		padding-block: 2rem;
	}
  .footer-top {
		grid-gap: var(--gap);
		grid-template-columns: 1fr auto;
	}
	.footer-bottom__inner {
		grid-gap: var(--gap);
		grid-template-columns: 32.204% 32.204% 1fr 1fr;
	}
	.footer--no-navigation .footer-bottom__inner {
		display: flex;
    align-items: center;
		justify-content: space-between;
	}
	.footer--no-navigation .footer-bottom__links ul {
    display: flex;
    align-items: center;
	}
	.footer-bottom__copyright--mobile {
		display: none;
	}
	.footer-bottom__copyright--desktop {
		display: block;
	}
}

/* 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);
}

/* Background Images */

.bg-dna {
	background-image: url('https://44433165.fs1.hubspotusercontent-na1.net/hubfs/44433165/EditCo_2025/dna.png');
	background-repeat: no-repeat;
}
.bg-dna--gray {
	background-color: #f4f9fa !important;
	background-image: url('https://44433165.fs1.hubspotusercontent-na1.net/hubfs/44433165/EditCo_2025/dna.png') !important;
	background-repeat: no-repeat !important;
}
.bg-dna--left {
	background-position: calc(0% - 6rem)  50%;
}
.bg-dna--center {
	background-position: 50% 50%;
}
.bg-dna--right {
	background-position: calc(100% + 6rem)  50%;
}
@media(min-width: 1200px) {
	.bg-dna--left {
		background-position: calc(50% - calc(calc(var(--container-width)) / 2) + 9rem) 50%;
	}
	.bg-dna--right {
		background-position: calc(50% + calc(calc(var(--container-width)) / 2) - 9rem) 50%;
	}
}

/* Spacing */

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

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

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

.pb-none {
  padding-bottom: 0;
}
.pb-xs {
  padding-bottom: calc(1.6rem * 0.25);
}
.pb-sm {
  padding-bottom: calc(1.6rem * 0.5);
}
.pb-md {
  padding-bottom: 1.6rem !important;
}
.pb-lg {
  padding-bottom: calc(1.6rem * 1.5) !important;
}
.pb-xl {
  padding-bottom: calc(1.6rem * 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);
}

/* 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%;
}