/* Theme base styles */

:root {
  --container-width: 1200px;
  --container-width-lg: 980px;
  --container-width-mid: 768px;
  --container-width-narrow: 600px;
  --vertical-spacing: 6rem;
  --gap: 2rem;
  --gap-sm: calc(var(--gap) / 2);
  --gap-md: calc(var(--gap) * 2);
  --gap-lg: calc(var(--gap) * 4);

  --base-color: #000;
  --white: #FFF;
  --light-grey: #EFEFEF;
  --medium-grey: #E0E0E0;
  --primary-color: #1a95d5;
  --primary-color-alt: #0f88c7;

  --gradient-a: linear-gradient(to bottom right, #23085a 0%, #521694 50%, #a44199 100%);
  --gradient-b: linear-gradient(to bottom, #150432, #3B106B);
  --gradient-c: linear-gradient(to bottom right, #331E89, #100443);
  --gradient-d: linear-gradient(to bottom, #F0ECFF, #D8CEFF);
  --gradient-e: linear-gradient(to right, #23085a 0%, #521694 50%, #a44199 100%);
  --gradient-f: linear-gradient(to right, #230859 0%, #7320BE 62%, #C55881 102%, #F4785E 125%);

  /* Triton */
  --blue-a: #1A95D5;
  --blue-b: #3B67D7;
  --blue-c: #00BEFA;
  --orange-a: #F4785E;
  --purple-d: #230859;
  --purple-e: #150432;
  --purple-f: #F0ECFF;
  --purple-g: #520FB1;
  --purple-h: #9D42CB;
  --purple-i: #7320BE;
  --purple-j: #4516A9;

  /* Omny */
  --purple-a: #6C63FF;
  --purple-b: #683882;
  --purple-c: #2B246F;
  --orange-b: #FF6F61;
  --teal: #3EF2A3;

  /* Spreaker */
  --yellow: #FFC107;
  --black: #080808;


  --primary-font-family: 'Poppins', sans-serif;
}


/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
/*! 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;
  overflow-x: hidden;
  background: var(--white);
  position: relative;
}

/**
   * 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 {
  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 */
  text-decoration: underline dotted; /* 2 */
}

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

b,
strong {
  font-weight: bolder;
}

/**
   * 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 {
  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'] {
  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;
}
.dark-theme {
  background: var(--base-color);
  color: var(--primary-color);
}

.dark-theme h1,
.dark-theme h2,
.dark-theme h3,
.dark-theme h4,
.dark-theme h5 {
  color: var(--primary-color);
}

.dark-theme *::selection {
  background: var(--primary-color-alt);
  color: var(--base-color);
}

.dark-theme *::-moz-selection {
  background: var(--primary-color-alt);
  color: var(--base-color);
}

/* Background colors */

.gradientA,
.gradientB,
.gradientC,
.gradientE,
.gradientF,
.blue,
.purpleA,
.purpleB,
.purpleC,
.purpleD,
.purpleE,
.purpleG,
.purpleH,
.purpleI {
  color: #fff;
}

.gradientA a:not(:hover):not(:focus):not(.button--white),
.gradientB a:not(:hover):not(:focus):not(.button--white),
.gradientC a:not(:hover):not(:focus):not(.button--white),
.gradientE a:not(:hover):not(:focus):not(.button--white),
.gradientF a:not(:hover):not(:focus):not(.button--white),
.blue a:not(:hover):not(:focus):not(.button--white),
.purpleA a:not(:hover):not(:focus):not(.button--white),
.purpleB a:not(:hover):not(:focus):not(.button--white),
.purpleC a:not(:hover):not(:focus):not(.button--white),
.purpleD a:not(:hover):not(:focus):not(.button--white),
.purpleE a:not(:hover):not(:focus):not(.button--white),
.purpleG a:not(:hover):not(:focus):not(.button--white),
.purpleH a:not(:hover):not(:focus):not(.button--white),
.purpleI a:not(:hover):not(:focus):not(.button--white) {
  color: #fff;
}

.gradientD,
.blueA,
.blueC,
.orange,
.orangeB,
.purpleF {
  color: var(--base-color);
}

.gradientD a:not(:hover):not(:focus):not(.button),
.blueA a:not(:hover):not(:focus):not(.button),
.blueC a:not(:hover):not(:focus):not(.button),
.orange a:not(:hover):not(:focus):not(.button),
.orangeB a:not(:hover):not(:focus):not(.button),
.purpleF a:not(:hover):not(:focus):not(.button) {
  color: var(--base-color);
}

.gradientA {
  background: var(--gradient-a);
}

.gradientB {
  background: var(--gradient-b);
}

.gradientC {
  background: var(--gradient-c);
}

.gradientD {
  background: var(--gradient-d);
}

.gradientE {
  background: var(--gradient-e);
}

.gradientF {
  background: var(--gradient-f);
}

.purpleA {
  background: var(--purple-a);
}

.purpleB {
  background: var(--purple-b);
}

.purpleC {
  background: var(--purple-c);
}

.purpleD {
  background: var(--purple-d);
}

.purpleE {
  background: var(--purple-e);
}

.purpleF {
  background: var(--purple-f);
}

.purpleG {
  background: var(--purple-g);
}

.purpleH {
  background: var(--purple-h);
}

.purpleI {
  background: var(--purple-i);
}

.blueA {
  background: var(--blue-a);
}

.blue {
  background: var(--blue-b);
}

.blueC {
  background: var(--blue-c);
}

.orange {
  background: var(--orange-a);
}

.orangeB {
  background: var(--orange-b);
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

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

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

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

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

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

/* .body-container > .row-fluid-wrapper > .row-fluid > .span12 > .dnd-section:first-child > .row-fluid > .span12 > .hs_cos_wrapper > section,
.body-container > .row-fluid-wrapper > .row-fluid > .span12 > .dnd-section:first-child > .row-fluid > .span12 > .dnd-row:first-child section {
  padding-top: calc(var(--vertical-spacing) * 2);
} */

@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
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  overflow-wrap: break-word;
  font-family: var(--primary-font-family);
  font-size: 1.8rem;
}

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

/* Paragraphs */

p {
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  color: var(--primary-color);
  font-weight: bold;

  &:hover,
  &:focus {
    color: var(--orange-a);
  }
}

/* Headings */

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

h1,
.h1 {
  font-size: 3.6rem;
  font-weight: 700;
}
h2,
.h2 {
  font-size: 2.8rem;
}
h3,
.h3 {
  font-size: 2.4rem;
}
h4,
.h4 {
  font-size: 2.2rem;
  font-weight: 700;
}
h5,
.h5 {
  font-size: 2rem;
}
h6,
.h6 {
  font-size: 1.8rem;
}

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

@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 3.2rem;
  }
}

.slug {
  font-size: 14px;
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote:not(.tiktok-embed) {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #ccc;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
input[type='submit'] {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--white);
  padding: 1rem 4rem;
  font-weight: 500;
  text-decoration: none;
  font-size: 19px;
  line-height: 1.3;
  border-radius: 1rem;
}

button:hover,
.button:hover,
input[type='submit']:hover,
button:focus,
.button:focus,
input[type='submit']:focus {
  color: #fff;
  background-color: var(--primary-color-alt);
}

button:disabled,
.button:disabled {
  background-color: #d0d0d0;
  border-color: #d0d0d0;
  color: #e6e6e6;
}

.button.button--outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.button.button--outline:hover,
.button.button--outline:focus {
  background-color: var(--primary-color);
  color: var(--white);
}

.button.button--outline-white {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.button.button--outline-white:hover,
.button.button--outline-white:focus {
  background-color: var(--white);
  color: var(--primary-color);
}

.button.button--secondary {
  background: var(--secondary-color);
  color: #333;
}

.button.button--secondary:hover,
.button.button--secondary:focus {
  background-color: var(--secondary-color-alt);
}

.button.button--tertiary {
  background: transparent;
  border: 2px solid transparent;
  color: var(--purple-d);
}

.button.button--tertiary:hover,
.button.button--tertiary:focus {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.button.button--w-icon {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: fit-content;
}

.button.button--w-icon img,
.button.button--w-icon svg {
  transition: transform 0.15s linear, filter 0.15s linear;
}

.button.button--w-icon svg {
  flex-shrink: 0;
}

.button.button--w-icon:hover img,
.button.button--w-icon:focus img,
.button.button--w-icon:hover svg,
.button.button--w-icon:focus svg {
  transform: translateX(5px);
}

.button.button--w-shadow {
  box-shadow: 0 1px 3px 1px rgba(10, 13, 18, 0.25);
}

.button.button--white {
  background-color: var(--white);
  border: 2px solid var(--white);
  color: var(--purple-d);
}

.button.button--white:hover,
.button.button--white:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.button.button--white.button--w-icon:hover img,
.button.button--white.button--w-icon:focus img {
  filter: brightness(0) invert(1);
}

.button.button--text-link {
  color: #230859;
  padding: 0;
  border-radius: 0;
  border: 0;
  text-decoration: underline;
  background: unset;

  &:hover,
  &:focus {
    color: #1a95d5;
  }
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 2rem;
}

/* Labels */

form label {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--purple-d);
}

/* Help text */

form legend {
  font-size: 1rem;
}

/* Inputs */

form input[type='text'],
form input[type='url'],
form input[type='email'],
form input[type='password'],
form input[type='tel'],
form input[type='number'],
form input[type='file'],
form select,
form textarea {
  background: #fff;
  border: 1px solid var(--purple-d);
  color: var(--purple-d);
  display: inline-block;
  font-size: 1.6rem;
  padding: 1.2rem;
  width: 100% !important;
  border-radius: 0;
  line-height: 1.5;
}

input[type='checkbox'] {
  width: 16px !important;
  height: 16px !important;
}

form textarea {
  resize: vertical;
  min-height: 150px;
}

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

form fieldset:has(+ fieldset) {
  margin-bottom: 2rem;
}

form fieldset.form-columns-1 input:not([type='submit'], [type='checkbox']),
form fieldset.form-columns-1 select,
form fieldset.form-columns-1 textarea,
form fieldset.form-columns-2 .hs-form-field,
form fieldset.form-columns-2 input[type='text'] {
  width: 100% !important;
}

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

@media (min-width: 600px) {
  form fieldset.form-columns-2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }
}

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 1.6rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type='checkbox'],
form input[type='radio'] {
  accent-color: var(--purple-d);
  cursor: pointer;
  margin-right: 0.8rem;
}

form input[type='checkbox'] + span,
form input[type='radio'] + span {
  font-weight: 400;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content: '\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #fff;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #fff;
}

/* Inputs - file picker */

form input[type='file'] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

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

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

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span {
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: 0 !important;
}

.legal-consent-container .hs-richtext,
.legal-consent-container .hs-richtext p {
  font-size: 1.2rem;
  color: var(--purple-d);
}

.legal-consent-container .hs-richtext p a {
  font-weight: 400;
}

.legal-consent-container .hs-richtext p a:not(:hover):not(focus) {
  color: var(--purple-d);
}

/* Validation */

.hs-form-required {
  color: red;
}

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

.hs-error-msgs.inputs-list > li {
  margin: 0;
}

.hs-error-msg {
  color: red;
  margin-block: 0.35rem 0;
  font-size: 14px;
}

/* Submit button */

form .actions {
  display: flex;
  margin-top: 2rem;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

li.hs-form-booleancheckbox label {
  display: flex;
  align-items: start;
}

li.hs-form-booleancheckbox input {
  margin-top: 0.3rem;
  max-width: 24px;
}

.form--one-line .form-title {
  display: none;
}

.form--one-line form {
  display: flex;
  gap: 2rem;
  align-items: start;
  justify-content: center;
}

.form--one-line .hs-email {
  max-width: 350px;
  margin: 0;
}

.form--one-line .hs-email input {
  box-shadow: 0 1px 3px 1px rgba(10, 13, 18, 0.25);
  padding: 1rem;
}

.form--one-line form .actions {
  margin-top: 0;
}

.form--one-line form input[type='submit'] {
  background: var(--yellow);
  box-shadow: 0 1px 3px 1px rgba(10, 13, 18, 0.25);
  color: #333;
}

.form--one-line form input[type='submit']:hover,
.form--one-line form input[type='submit']:focus {
  background-color: var(--yellow-hover);
}

@media (max-width: 650px) {
  .form--one-line form {
    flex-flow: column;
    align-items: center;
  }
}

.hs_error_rollup {
  display: none;
}

.form-title:empty {
  display: none;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
.image-w-shadow {
  margin: 0 2rem 2rem 0;
  box-shadow: 2rem 2rem 0 0 var(--secondary-color);

  &.image-w-shadow--reversed {
    margin: 0 0 2rem 2rem;
    box-shadow: -2rem 2rem 0 0 var(--secondary-color);
  }
}
.checkmark-lists {
  ul {
    list-style: unset;
    display: flex;
    flex-flow: column;
    gap: 2rem;
    margin-bottom: 3rem;

    li {
      position: relative;
      padding-inline-start: 1rem;

      &:before {
        content: '';
        display: block;
        position: absolute;
        width: 30px;
        height: 30px;
        background: url(https://50351916.fs1.hubspotusercontent-na1.net/hubfs/50351916/template-assets/checkmark.png);
        background-size: contain;
        background-repeat: no-repeat;
        left: -3.5rem;
        top: 0.5rem;
      }
    }
  }
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.body-wrapper {
  position: relative;
}

.body-wrapper > div[data-global-resource-path*='/templates/partials/header'] {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Navigation skipper */

.headerSkip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
  color: var(--white) !important;
  background: var(--primary-color);
  padding: 0.8rem 1.4rem;
  border-radius: 0 0 8px 0;
  text-decoration: none !important;
  font-size: 1.6rem;
  font-weight: 600;
  z-index: 9;
}

.headerSkip:hover,
.headerSkip:focus,
.headerSkip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}
#hs_cos_wrapper_footer {
  position: relative;
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts
  .hs-item-has-children:hover
  > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts
  .hs-item-has-children:hover
  > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts
    .hs-item-has-children:hover
    > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts
    .hs-item-has-children:hover
    > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
#ot-sdk-btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* Fade In Styles */

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in .button {
  opacity: 0;
}

.fade-in--left {
  transform: translateX(-100px);
}

.fade-in--right {
  transform: translateX(100px);
}

.fade-in--bottom {
  transform: translateY(100px);
}

.fade-in--left .button {
  transform: translateX(-100px);
}

.fade-in--right .button {
  transform: translateX(100px);
}

.fade-in--bottom .button,
.fade-in--bottom input[type='submit'] {
  transform: translateY(100px);
}

.fade-in.fade-in--fading-in {
  opacity: 1 !important;
  transform: translateX(0px) translateY(0px) !important;
}

@keyframes fadeInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  50% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  50% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes fadeInBottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  50% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.fade-in.fade-in--left.fade-in--fading-in .button {
  animation-name: fadeInLeft;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.fade-in.fade-in--right.fade-in--fading-in .button {
  animation-name: fadeInRight;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.fade-in.fade-in--bottom.fade-in--fading-in .button,
.fade-in.fade-in--bottom.fade-in--fading-in input[type='submit'] {
  animation-name: fadeInBottom;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
/* 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;
  }
}
.slideshow-w-images .glide__slides .glide__slide--active > div {
  border-color: var(--yellow) !important;
}