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

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

img {
  display: block;
  height: auto;
  min-width: 100%;
}

svg {
  display: block;
  height: 100%;
  width: 100%;
}
/*! 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;
}

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

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

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

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

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

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

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

/**
 * 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;
}
.animate-in {
  --duration: 850ms;
  --delay: 200ms;
}

.fade-in,
.fade-in-child > *:first-child {
  opacity: 0;
  transition: opacity var(--duration) cubic-bezier(0.33, 1, 0.68, 1) var(--delay);
}

.fade-in.intersected,
.fade-in-child.intersected > *:first-child {
  opacity: 1;
}

.fade-in-up,
.fade-in-up-child > *:first-child {
  opacity: 0;
  transition: opacity var(--duration) cubic-bezier(0.33, 1, 0.68, 1), transform var(--duration) cubic-bezier(0.33, 1, 0.68, 1);
  transform: translateY(2rem);
}

.fade-in-up.intersected,
.fade-in-up-child.intersected > *:first-child {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-shape-down::before {
  opacity: 0;
  transition: opacity var(--duration) cubic-bezier(0.33, 1, 0.68, 1) 500ms, transform var(--duration) cubic-bezier(0.33, 1, 0.68, 1) 500ms;
  transform: translateY(-2rem);
}

.fade-in-shape-down.intersected::before {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-shape-up::before {
  opacity: 0;
  transition: opacity var(--duration) cubic-bezier(0.33, 1, 0.68, 1) 500ms, transform var(--duration) cubic-bezier(0.33, 1, 0.68, 1) 500ms;
  transform: translateY(2rem);
}

.fade-in-shape-up.intersected::before {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-appear img {
  opacity: 0;
  transform: scale(1.1) translateY(-1rem);
  transition: opacity var(--duration) cubic-bezier(0.33, 1, 0.68, 1), transform 1200ms cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-appear.intersected img {
  opacity: 1;
  transform: scale(1) translateY(0);
}

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

/* CSS variables */
:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */
.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* Mobile layout */
/* main {
  overflow-x: hidden;
} */


  .row-fluid .span1,

  .row-fluid .span2,

  .row-fluid .span3,

  .row-fluid .span4,

  .row-fluid .span5,

  .row-fluid .span6,

  .row-fluid .span7,

  .row-fluid .span8,

  .row-fluid .span9,

  .row-fluid .span10,

  .row-fluid .span11,

  .row-fluid .span12
 {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */
@media (width >= 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
  max-width: 1200px;
}

.dnd-section .dnd-column {
  padding: 0;
  position: relative;
}

.dnd-section,
.content-wrapper--vertical-spacing {
  padding: 100px 20px;
}

@media (width >= 992px) {
  .dnd-section,
  .content-wrapper--vertical-spacing {
    padding: 160px 20px;
  }
}
.grid {
  display: grid;
  grid-gap: 1em;
}

@media (width >= 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

/* Proxima Nova */
@font-face {
  font-family: 'Proxima Nova';
  src: url('https://2759869.fs1.hubspotusercontent-na1.net/hubfs/2759869/fonts/ProximaNova-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('https://2759869.fs1.hubspotusercontent-na1.net/hubfs/2759869/fonts/ProximaNova-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('https://2759869.fs1.hubspotusercontent-na1.net/hubfs/2759869/fonts/ProximaNova-BoldIt.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('https://2759869.fs1.hubspotusercontent-na1.net/hubfs/2759869/fonts/ProximaNova-LightIt.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('https://2759869.fs1.hubspotusercontent-na1.net/hubfs/2759869/fonts/ProximaNova-RegularIt.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('https://2759869.fs1.hubspotusercontent-na1.net/hubfs/2759869/fonts/ProximaNova-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('https://2759869.fs1.hubspotusercontent-na1.net/hubfs/2759869/fonts/ProximaNova-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Variables */
:root {
  /* Colors */
  --color-white: #fff;
  --color-galaxy: #040725;
  --color-sinai-beach: #42EAC2;
  --color-black: #000000;
  --color-thrive: #00B5A5;
  
  /* Fonts */
  --font-family-proxima-nova: 'Proxima Nova', sans-serif;
}
body {
  line-height: 1.4;
}

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

/* Paragraphs */
p,
ul li,
ol li {
  font-size: 0.75rem;
  margin: 0 0 1.4rem;
}

@media (width >= 992px) {
  p,
  ul li,
  ol li {
    font-size: 1rem;
  }
}

@media (width >= 768px) {
  p,
  ul li,
  ol li {
    font-size: 0.875rem;
  }
}

/* Anchors */
a {
  cursor: pointer;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
  line-height: 1.15;
}

/* Lists */
ul,
ol {
  margin: 0 0 1.4rem;
}

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

/* Removes list styles on ul, ol elements */
ul[role="list"],
ol[role="list"] {
  padding: 0;
  list-style: none;
}

/* Code blocks */
pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */
blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 15px;
}

/* Image alt text */
img {
  font-size: 14px;
  word-break: normal;
}

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

html {
  font-size: 24px;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

body {
  color: var(--color-white);
  font-family: var(--font-family-proxima-nova);
  font-weight: normal;
  font-style: normal;
  position: relative;
  overflow-x: hidden;
  background-color: var(--color-galaxy);
}

.exact-2026 {
  position: relative;
}

p {
  font-family: var(--font-family-proxima-nova);
  font-weight: normal;
  font-style: normal;
}

a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

a:hover,
a:focus,
a:active {
  color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-proxima-nova);
  font-weight: 400;
}

small {
  display: block;
  font-size: 78%;
}

h1 {
  font-size: 28px;
  font-weight: 600;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
  font-weight: bold;
}

h5 {
  font-size: 16px;
  font-weight: normal;
}

h6 {
  font-size: 14px;
  font-weight: normal;
}

@media (width >= 992px) {
  h1 {
    font-size: min(14vw, 30px);
    min-height: 0vw;
  }
  
  h2 {
    font-size: min(4vw, 48px);
    min-height: 0vw;
  }
  
  h3 {
    font-size: 36px;
  }
  
  p, ul li {
    font-size: 28px;
  }
}

blockquote {
  border-left-color: #F8FAFC;
}

em {
  font-weight: 300;
}

.text-gradient {
  background: linear-gradient(4deg,#227fc8 12.12%,#2383c8 14.65%,#2b9fc6 32.36%,#37c7c3 60.19%,#3fe0c2 82.96%,#42eac2 96.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: bold;
  text-fill-color: transparent;
  text-transform: uppercase;
}

/* List */
.list__arrow li {
  padding-left: 2.5rem;
  position: relative;
}

.list__arrow li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 50 28'%3E%3Cpath stroke='%23040725' stroke-miterlimit='10' stroke-width='1.23' d='M50 14c-7.825 0-14.172-6.27-14.172-14M50 14c-7.825 0-14.172 6.27-14.172 14M50 14H0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 21px;
  left: 0;
  position: absolute;
  top: 0;
  width: 52px;
}

@media (width >= 768px) {
  .list__arrow li {
    margin-top: 1.4rem;
    padding-left: 2rem;
    text-wrap: pretty;
  }
  
  .list__arrow li::before {
    height: 41px;
    left: -2em;
    width: 72px;
  }
}
form input[type=submit],
.button {
  border: 2px solid var(--color-galaxy);
  background-color: transparent;
  border-radius: 40px;
  color: var(--color-galaxy);
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-proxima-nova);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  padding: 10px 30px;
  text-align: center;
  text-decoration: none;
  transition: background-color 300ms ease;
  white-space: normal;
}

@media (width >= 768px) {
  form input[type=submit],
  .button {
    font-size: 22px;
  }
}

.button:disabled {
  background-color: #D0D0D0;
  color: #E6E6E6;
}

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

.button--primary {
  background-color: transparent;
  border-color: var(--color-galaxy);
  color: var(--color-galaxy);
}

.button--primary:hover,
.button--primary:focus,
.button--primary:active {
  background-color: var(--color-galaxy);
  color: var(--color-white);
  text-decoration: none;
}

.button.button--secondary {
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.button.button--secondary:hover,
.button.button--secondary:focus,
.button.button--secondary:active {
  background-color: var(--color-white);
  color: var(--color-galaxy);
  text-decoration: none;
}

form input[type=submit] {
  background-color: var(--color-galaxy);
  color: var(--color-white);
  text-decoration: none;
}

.button--white {
  border-color: var(--color-white);
}

.button--white:hover,
.button--white:focus,
.button--white:active {
  background-color: var(--color-white);
  color: var(--color-galaxy);
  text-decoration: none;
}

.button--galaxy {
  background-color: var(--color-galaxy);
  border-color: var(--color-galaxy);
  color: var(--color-white);
}

.button--galaxy:hover,
.button--galaxy:focus,
.button--galaxy:active {
  background-color: var(--color-white);
  color: var(--color-galaxy);
  text-decoration: none;
}

.button--white.button--outline {
  color: var(--color-white);
}

.button--white.button--outline:hover,
.button--white.button--outline:focus,
.button--white.button--outline:active {
  background-color: var(--color-white);
  color: var(--color-galaxy);
}
/* Form fields */
.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */
form label {
  display: block;
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 0.35rem;
}

/* Help text - legends */
form legend {
  font-size: 0.75rem;
}

/* 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 select,
form textarea {
  background-color: var(--color-white);
  border: 1px solid;
  border-radius: 3px;
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.25rem;
  width: 100%;
}

form fieldset,
form .hs-input:not([type="radio"]) {
  min-width: 100% !important;
}

/* Inputs - checkbox/radio */
form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

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

/* Inputs - datepicker */
.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: var(--color-white);
}

.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: var(--color-white);
}

/* 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: 0.75rem;
  margin: 0 0 1.4rem;
}

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 {
  margin-left: 1rem !important;
}

/* Validation */
.hs-form-required {
/*   color: #EF6B51; */
  color: #E42C1A;
}

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

.hs-error-msg {
/*   color: #EF6B51; */
  color: #E42C1A;
  margin-top: 0.35rem;
}

/* Submit button */
form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  white-space: normal;
}

.hs-submit .actions {
  text-align: center;
}

/* Captcha */
.grecaptcha-badge {
  margin: 0 auto;
}
/* Modals */
.button--modal {
  margin-bottom: 1rem;
  position: relative;
  z-index: 3;
}

dialog {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 0;
}

#modal-content {
  padding: 1em;
}

@media (width >= 768px) {
  .button--modal {
    margin-bottom: 0;
  }
  
  #modal-content {
    padding: 2em;
    width: 680px;
  }
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.85);
}

dialog[open]:not(:modal)::before {
  background-color: rgba(0, 0, 0, 0.85);
  content: '';
  height: 100vh;
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate3d(-50%, -50%, -1px);
  width: 100vw;
}

dialog[open] {
  animation: fadeIn 500ms 50ms ease forwards;
  border: none;
  display: grid;
  opacity: 0;
}

dialog[open]:not(:modal) {
  z-index: 2;
  transform-style: preserve-3d;
}

.modal h3 {
  padding-right: 2em;
}

.close {
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 1em;
  top: auto;
}

@media (width >= 768px) {
  .close {
    right: 2em;
  }
}

.close svg {
  height: 38px;
  vertical-align: middle;
  width: 38px;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.exact-26__image {
  overflow: hidden;
}

.exact-26__image--video {
  height: 424px;
}

.exact-26__image--video img {
  min-height: 100%;
  object-fit: cover;
}

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

.header .dnd-section {
  padding: 0;
}

.header {
  background-color: transparent;
  color: var(--color-white);
  padding: 30px 20px;
  position: fixed;
  transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  z-index: 2;
}

.header--floating {
  padding: 10px 20px;
  transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (width >= 768px) {
  .header {
    padding: 50px 20px;
  }
  
  .header--floating {
    padding: 30px 20px;
  }
}

.header.header--floating {
  background-color: var(--color-galaxy);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.2);
}

/* Header container */
.header__container {
  align-items: center;
  display: flex;
  gap: 0.5em;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1); 
}

.header .navigation--visible {
  transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header [href="#register-now"] {
  text-wrap: nowrap;
}

/* Header toggle */
.header__toggle {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 25'%3E%3Cpath fill='%23fff' d='M2.5 0h33a2.5 2.5 0 0 1 0 5h-33a2.5 2.5 0 0 1 0-5Zm0 20h33a2.5 2.5 0 0 1 0 5h-33a2.5 2.5 0 0 1 0-5Zm0-10h33a2.5 2.5 0 0 1 0 5h-33a2.5 2.5 0 0 1 0-5Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  cursor: pointer;
  display: inline-block;
  width: 26px;
  height: 26px;
  padding: 0;
  text-indent: -999em;
}

@media (width >= 992px) {
  .header__toggle {
    display: none;
  }
}

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

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
  z-index: 2;
}

/* Logo */
.header__logo {
  transform-origin: left;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.header__logo img {
  width: 90px;
  height: 53px;
}

.header--floating .header__logo {
  transform: scale(1);
  transform-origin: left;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (width >= 768px) {
  .header__logo img {
    height: 41px;
    width: 197px;
    transform: scale(1);
  }
  
  .header--floating .header__logo {
    transform: scale(0.8);
  }
}

.header__column--last {
  align-items: center;
  display: flex;
  gap: 10px;
}

.perceptyx-logo {
  display: none;
}

@media (width >= 768px) {
  .header__column--last {
    gap: 30px;
  }
}

.header .button--modal {
  margin-bottom: 0;
}

/* Announcement banner */
/* .announcement-banner {
  background-color: var(--color-galaxy);
  color: var(--color-white);
  display: none;
  font-size: 16px;
  width: 100%;
  transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.announcement-banner--active {
  align-items: center;
  display: flex;
  min-height: 65px;
  padding: 10px 0;
  text-align: center;
  transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header--floating .announcement-banner--active {
  min-height: 60px;
}

.announcement-banner__content {
  align-items: center;
  display: flex;
  gap: 2em;
  height: 100%;
  justify-content: center;
}
  
.announcement-banner__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 20px;
}

.announcement-banner__inner span,
.announcement-banner__content a,
.announcement-banner__content button {
  font-size: inherit;
}

@media (max-width: 768px) {
  .pyx-header:has(> .announcement-banner--active) + #main-content {
    margin-top: 60px;
  }
}

@media (max-width: 640px) {
  .pyx-header:has(> .announcement-banner--active) + #main-content {
    margin-top: 90px;
  }
} */
/* 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 (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 (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 (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;
  }
}

.hs-inline-edit .fade-in,
.hs-inline-edit .fade-in-child > *:first-child,
.hs-inline-edit .fade-in-shape-down::before,
.hs-inline-edit .fade-in-shape-up::before {
  opacity: 1 !important;
}
.footer {
  padding: 80px 0;
}

.footer__container {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.footer__logo {
  margin-bottom: 0.5em;
  max-width: 250px;
}

.footer__logo a {
  display: block;
}

.footer__copyright {
  font-size: 18px;
}

@media (width >= 992px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer__copyright {
    font-size: 21px;
  }
}

/* Sections
Styles for section partials
*/
/* Register */
.register {
  color: var(--color-galaxy);
  position: relative;
  overflow: hidden;
}

.register .dnd-section {
  position: relative;
}

.register .dnd-section::before {
  animation: gradient 10s ease infinite;
  background: linear-gradient(240deg, #227FC8, #2B9FC6, #37C7C3, #42EAC2);
  background-repeat: no-repeat;
  background-size: 125% 125%;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  
  50% {
    background-position: 100% 50%;
  }
  
  100% {
    background-position: 0% 50%;
  }
}

.register__grid {
  display: grid;
  gap: 40px;
}

.register__grid img {
  width: 100%;
}

.register__grid h2 {
  margin-bottom: 0;
}

.footer__register {
  display: grid;
  gap: 40px;
  justify-items: flex-start;
}

@media (width >= 525px) {
  .register__grid img {
    padding-right: 60px;
  }
}

@media (width >= 768px) {
  .register__grid h2 {
    margin-bottom: 1.4rem;
  }
  
  .register__grid img {
    grid-area: 1 / 1 / 2 / 2;
  }
  
  .register h2 {
    grid-area: 2 / 1 / 3 / 2;
  }
  
  .register__grid {
    grid-template-columns: 1fr auto;
  }
  
  .footer__register {
    grid-area: 2 / 2 / 3 / 3;
    margin-top: 40px;
    max-width: 400px;
  }
  
  .footer__register .button--primary {
    align-self: flex-start;
  }
}

@media (width >= 992px) {
  .register__grid {
    gap: 80px 140px;
  }
}

body:has(dialog[open]) {
  overflow: hidden;
}