/* Theme base styles */

:root {

	/* Spacing */

	--container-width: 1200px;
	--container-width-narrow: 1000px;
	--vertical-spacing: 12rem;
  --gap: 2rem;
	--gap-1: 0.4rem;
	--gap-2: 0.8rem;
	--gap-3: 1.2rem;
	--gap-4: 1.6rem;
	--gap-5: 2rem;
	--gap-6: 2.4rem;
	--gap-7: 2.8rem;
	--gap-8: 3.2rem;
	--gap-9: 3.6rem;
	--gap-10: 4rem;
	--gap-11: 4.4rem;
	--gap-12: 4.8rem;
	--gap-13: 5.2rem;
	--gap-14: 5.6rem;
	--gap-15: 6rem;
	--gap-16: 6.4rem;
	--gap-17: 6.8rem;
	--gap-18: 7.2rem;
	--gap-19: 7.6rem;
	--gap-20: 8rem;

	/* Colors */

	--base-color: #192126;
	--primary-color: #00808F;
	--primary-color-hover: #003748;
	--secondary-color: #AFE2E2;
	--secondary-color-hover: #003748;

	--light-blue: #F0FAFA;
	--pink: #D79DD7;
	--pink-light: #ECBDEC;
	--purple: #851F55;
	--purple-light: #B85A7A;

	--neutral-0:   #FFFFFF;
	--neutral-10:  #F5F5F5;
	--neutral-20:  #EDEEF0;
	--neutral-30:  #DBE2E8;
	--neutral-40:  #A3A6A8;
	--neutral-50:  #8E9CAA; /* form borders, form placeholders, table borders, table header, table footer, dividers */
	--neutral-60:  #748492;
	--neutral-70:  #5E6467;
	--neutral-80:  #405463;
	--neutral-90:  #2B3C48;
	--neutral-100: #192126;

	/* Typography */

	--base-font-size: 1.8rem;
	--base-line-height: 1.5;
	--primary-font-family: 'Inter', sans-serif;
	--secondary-font-family: 'Poppins', sans-serif;

	/* Radius */

	--radius-xs: 4px;
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 24px;

	/* Shadows */

	--shadow-sm: 0 1px 3px 0 rgba(64, 84, 99, 0.10), 0 1px 2px 0 rgba(64, 84, 99, 0.06);

}

/* 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-5) * -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-5);
       -moz-column-gap: var(--gap-5);
            column-gap: var(--gap-5);
    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;
  --header-height: 0px;
  --anchor-nav-height: 0px;
  scroll-padding-top: var(--header-height);
}
html:has(.anchor-nav) {
  scroll-padding-top: calc(var(--header-height) + var(--anchor-nav-height));
}

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);
  font-weight: 300;
  line-height: var(--base-line-height);
}

/* Anchors */

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

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

.hs-richtext a {
  text-decoration: underline;
}

.hs-richtext a:hover {
  text-decoration: none;
}

/* Paragraphs */

p {
  margin: 0 0 2rem;
}

/* Headings */

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

h1,
.h1 {
  font-size: 4.6rem;
  line-height: 1.1;
  letter-spacing: -2px;
}
h2,
.h2 {
  font-size: 3.2rem;
  line-height: 1.25;
  letter-spacing: -1px;
}
h3,
.h3 {
  font-size: 2.8rem;
  line-height: 1.3;
  letter-spacing: unset;
}
h4,
.h4 {
  font-size: 2.4rem;
  line-height: 1.35;
  letter-spacing: unset;
}
h5,
.h5 {
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: unset;
}
h6,
.h6 {
  font-size: 1.4rem;
  line-height: 1.45;
  letter-spacing: unset;
}

@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 6.4rem;
  }
  h2,
  .h2 {
    font-size: 4.2rem;
  }
}

/* Weights */

b,
strong {
  font-weight: 500;
}

/* Lists */

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

.body-container-wrapper
  ul:not(.image-content__list, .hs-image__grid__list, .BambooHR-ATS-Department-List, .BambooHR-ATS-Jobs-List) {
  display: grid;
  grid-gap: var(--gap-2);
  justify-items: start;
}

/*.body-container-wrapper
  ul:not(.image-content__list, .hs-image__grid__list, .BambooHR-ATS-Department-List, .BambooHR-ATS-Jobs-List) {
  display: grid;
  grid-gap: var(--gap-2);
  justify-items: start;
  padding: 0;
  list-style: none;
}
.body-container-wrapper
  ul:not(.image-content__list, .hs-image__grid__list, .BambooHR-ATS-Department-List, .BambooHR-ATS-Jobs-List)
  > li {
  position: relative;
  padding-left: 2.7rem;
  font-size: 1.6rem;
}
.body-container-wrapper
  ul:not(.image-content__list, .hs-image__grid__list, .BambooHR-ATS-Department-List, .BambooHR-ATS-Jobs-List)
  > li::before {
  position: absolute;
  left: 0;
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2213%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M6.364%209.192%2015.556%200l1.415%201.414L6.364%2012.021%200%205.657l1.414-1.414%204.95%204.95Z%22%20fill%3D%22%2395C748%22%2F%3E%3C%2Fsvg%3E");
}*/

.BambooHR-ATS-board ul {
  font-size: unset !important;
}
.BambooHR-ATS-Department-List {
  padding: 1rem 0 !important;
}
.BambooHR-ATS-Jobs-List {
  padding: 1rem 0 !important;
}
.BambooHR-ATS-board a {
  font-size: unset !important;
  line-height: unset !important;
}
.BambooHR-ATS-Location {
  display: block !important;
  float: unset !important;
  padding-top: 1rem !important;
}
@media (min-width: 768px) {
  .BambooHR-ATS-Location {
    float: right !important;
    padding-top: 0 !important;
  }
}

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 {
  margin: 4rem 0;
  padding-left: 2.4rem;
  border-left: 4px solid var(--secondary-color);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 500;
}

/* Quote */

q:before {
  position: absolute;
  transform: translateX(-100%);
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid var(--neutral-20);
  margin: 4rem auto;
}

/* Tag */

.tag {
  display: inline-block;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-xs);
  font-size: 1.2rem;
  line-height: 1.2;
}
.tag--neutral-0 {
  background-color: var(--neutral-0);
}
.tag--neutral-10 {
  background-color: var(--neutral-10);
  color: var(--white);
}
.tag--neutral-90 {
  background-color: var(--neutral-90);
  color: var(--white);
}
.button,
form input[type="submit"],
form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button,
form .button,
form .hs-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
	width: 100%;
  min-height: 5.6rem;
  padding: 1.6rem 2.4rem;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
	font-size: 1.3rem;
	font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  cursor: pointer;
}

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

/* Primary */

.button--primary,
form input[type="submit"],
form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button,
form .hs-button {
	justify-content: center;
  background-color: var(--primary-color);
	border-radius: 100vw;
  color: var(--neutral-0);
}

.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-color: var(--primary-color-hover);
  color: var(--neutral-0);
}

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-color: var(--primary-color-hover);
  color: var(--neutral-0);
}

/* Primary Dark */

.button--primary-dark {
	justify-content: center;
  background-color: var(--neutral-0);
	border-radius: 100vw;
  color: var(--primary-color);
}

.button--primary-dark:hover,
.button--primary-dark:focus,
.button--primary-dark:active {
  background-color: var(--primary-color);
  color: var(--neutral-0);
}

/* Secondary */

.button--secondary {
	justify-content: center;
  background-color: var(--light-blue);
	border-radius: 100vw;
  color: var(--primary-color);
}

.button--secondary:hover,
.button--secondary:focus,
.button--secondary:active {
  background-color: var(--primary-color-hover);
  color: var(--neutral-0);
}

/* Secondary Dark */

.button--secondary-dark {
	justify-content: center;
  background-color: rgba(255, 255, 255, 0.16);
	border-radius: 100vw;
  color: var(--neutral-0);
}

.button--secondary-dark:hover,
.button--secondary-dark:focus,
.button--secondary-dark:active {
  background-color: rgba(255, 255, 255, 0.32);
  color: var(--neutral-0);
}

/* Tertiary */

.button--tertiary {
	justify-content: center;
  background-color: transparent;
	border-radius: 100vw;
  color: var(--primary-color);
}

.button--tertiary:hover,
.button--tertiary:focus,
.button--tertiary:active {
  background-color: var(--light-blue);
  color: var(--primary-color-hover);
}

/* Tertiary Dark */

.button--tertiary-dark {
	justify-content: center;
  background-color: transparent;
	border-radius: 100vw;
  color: var(--neutral-0);
}

.button--tertiary-dark:hover,
.button--tertiary-dark:focus,
.button--tertiary-dark:active {
  background-color: rgba(255, 255, 255, 0.16);
  color: var(--neutral-0);
}

/* Text */

.button--text {
  min-height: auto;
  padding: 0;
  background: none;
  color: var(--primary-color);
}

.button--text:hover,
.button--text:focus,
.button--text:active {
  color: var(--primary-color-hover);
}

/* Text Dark */

.button--text-dark {
  min-height: auto;
  padding: 0;
  background: none;
  color: var(--neutral-0);
}

.button--text-dark:hover,
.button--text-dark:focus,
.button--text-dark:active {
  color: var(--neutral-30);
}

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

.button--icon span.hs_cos_wrapper_type_icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
	font-size: 0;
}

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

.button--icon-before {
  flex-direction: row-reverse;
}

/* Icon Only */

.button--icon-only {
  padding: 0;
  width: 5.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: 4rem;
  padding: 1rem 1.6rem;
	font-size: 1.4rem;
}

/* None */

.button--none {
	min-height: auto;
	padding: 0;
	background-color: transparent;
}

/* CTA Override */

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

form label,
.fakelabel {
  display: block;
  margin-bottom: 8px;
  font-size: 1.4rem;
	font-weight: 500;
}

/* Inputs */

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="tel"],
form input[type="number"],
form input[type="file"],
form input[type="search"],
form select,
form textarea {
  display: block;
  padding: 1.6rem 2rem;
  width: 100%;
  min-height: 5.6rem;
  margin-bottom: 2rem;
  background-color: var(--neutral-0);
	border-radius: 100vw;
  border: 1px solid var(--neutral-60);
	font-size: 1.6rem;
}

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(--neutral-60);
  -webkit-text-fill-color: var(--base-color);
  opacity: 1;
}

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

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

::-webkit-input-placeholder {
  color: var(--neutral-60);
}

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

/* 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-top: 0.4rem;
  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(--neutral-80);
  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(--neutral-80) !important;
  border-radius: 0 !important;
  color: #fff;
}

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

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

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

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

.hs-error-msg,
.hs-error-msg,
.hs-error-msgs {
  margin: -1rem 0 2rem 0;
  color: #E00000;
  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(--neutral-0) inset !important;
  box-shadow: 0 0 0 30px var(--neutral-0) 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(--neutral-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(--neutral-50);
}

/* Table header */

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

/* Table footer */

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

/* Components */

div[data-global-resource-path="Logically_2025/templates/partials/header.html"] {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 101;
}
/*.body-wrapper:has(.modal.is-open) > div[data-global-resource-path="Logically_2025/templates/partials/header.html"] {
  z-index: unset;
}*/

.header {
  position: relative;
	padding: 2rem;
	background-color: var(--neutral-0);
}

/* Logo */

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

/* Header Skip Link */

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

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

/* Search */

.header__search {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
  right: 0;
	padding: 2rem;
	background-color: var(--neutral-0);
  box-shadow: var(--shadow-sm);
}
.header__search.is-active {
	display: block;
}
.header__search form {
	display: grid;
	grid-template-columns: 1fr auto auto;
	grid-gap: var(--gap-2);
}
.header__search form input[type="search"] {
	border: 0;
}
.footer {
  padding: 5.6rem 2rem;
  background-color: var(--neutral-0);
}
.footer a {
  color: var(--neutral-100);
}
.footer a:hover,
.footer a:active,
.footer a:focus {
  color: var(--neutral-60);
}
.footer-top {
  display: grid;
  grid-gap: var(--gap-6);
  margin-bottom: 5.6rem;
}
.footer-top__logo {
	text-align: center;
}
.footer-top__subscribe {
  margin-top: 5.6rem;
  padding: 3.2rem;
  background-color: var(--neutral-10);
  border-radius: var(--radius-md);
  text-align: center;
}
.footer-top__subscribe .form-title {
  font-family: var(--primary-font-family);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}
.footer-top__subscribe form {
  position: relative;
}
.footer-top__subscribe form .hs-form-field > label {
  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;
}
.footer-top__subscribe form input[type="text"],
.footer-top__subscribe form input[type="email"],
.footer-top__subscribe form input[type="password"],
.footer-top__subscribe form input[type="tel"],
.footer-top__subscribe form input[type="number"],
.footer-top__subscribe form input[type="file"],
.footer-top__subscribe form input[type="search"],
.footer-top__subscribe form select,
.footer-top__subscribe form textarea {
  padding-right: 8.2rem;
  border: 0;
}
.footer-top__subscribe form .hs-submit {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  height: 4rem;
}
.footer-top__subscribe form .hs-button {
  min-height: unset;
  width: 4rem;
  height: 4rem;
  padding: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath d='m16.172 11-5.364-5.364 1.414-1.414L20 12l-7.778 7.778-1.414-1.414L16.172 13H4v-2h12.172Z' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  color: transparent !important;
}
.footer-top__subscribe form .hs-recaptcha {
	display: grid;
	justify-content: center;
}
.footer-top__social {
  margin-top: 2.4rem;
  padding: 3.2rem;
  background-color: var(--neutral-10);
  border-radius: var(--radius-md);
}
.footer-bottom {
  display: grid;
  grid-gap: var(--gap-6);
  padding-top: 5.6rem;
  border-top: 1px solid var(--neutral-10);
}
.footer--no-navigation .footer-bottom {
  padding-top: 0;
  border-top: 0;
}
.footer-bottom {
  font-size: 1.4rem;
}
.footer-bottom__links ul {
  display: flex;
  flex-direction: column;
  gap: var(--gap-4);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .footer {
    padding-block: 8rem;
  }
  .footer--no-navigation {
    padding-block: 5.6rem;
  }
  .footer-top {
    grid-template-columns: 38rem 1fr;
    grid-gap: var(--gap-10);
    margin-bottom: 12rem;
  }
	.footer-top__logo {
		text-align: left;
	}
}
@media (min-width: 1200px) {
  .footer-top {
    grid-gap: 10rem;
  }
  .footer-bottom {
    grid-template-columns: 38rem 1fr;
    grid-gap: 10rem;
  }
  .footer-bottom__links ul {
    flex-direction: row;
    grid-gap: var(--gap-10);
    align-items: center;
  }
}

/* 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-primary {
  background-color: var(--primary-color);
  color: var(--neutral-0) !important;
}
.bg-secondary {
  background-color: var(--secondary-color);
}
.bg-light-blue {
  background-color: var(--light-blue);
}
.bg-pink {
  background-color: var(--pink);
}
.bg-purple {
  background-color: var(--purple);
  color: var(--neutral-0) !important;
}
.bg-neutral-0 {
  background-color: var(--neutral-0);
}
.bg-neutral-10 {
  background-color: var(--neutral-10);
}
.bg-neutral-20 {
  background-color: var(--neutral-20);
}
.bg-neutral-30 {
  background-color: var(--neutral-30);
}
.bg-neutral-40 {
  background-color: var(--neutral-40);
}
.bg-neutral-50 {
  background-color: var(--neutral-50);
  color: var(--neutral-0) !important;
}
.bg-neutral-60 {
  background-color: var(--neutral-60);
  color: var(--neutral-0) !important;
}
.bg-neutral-70 {
  background-color: var(--neutral-70);
  color: var(--neutral-0) !important;
}
.bg-neutral-80 {
  background-color: var(--neutral-80);
  color: var(--neutral-0) !important;
}
.bg-neutral-90 {
  background-color: var(--neutral-90);
  color: var(--neutral-0) !important;
}
.bg-neutral-100 {
  background-color: var(--neutral-100);
  color: var(--neutral-0) !important;
}

/* Background Images */

.bg-dots {
  position: relative;
}
.bg-dots::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  aspect-ratio: 10/1;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.bg-dots--top::after {
  top: 0;
}
.bg-dots--bottom::after {
  bottom: 0;
}
.bg-dots--top.bg-dots--white::after {
  background-image: url("https://4883612.fs1.hubspotusercontent-na1.net/hubfs/4883612/Logically_2025/bg-dots-white.png");
  transform: scaleY(-1);
}
.bg-dots--bottom.bg-dots--white::after {
  background-image: url("https://4883612.fs1.hubspotusercontent-na1.net/hubfs/4883612/Logically_2025/bg-dots-white.png");
}
.bg-dots--top.bg-dots--blue::after {
  background-image: url("https://4883612.fs1.hubspotusercontent-na1.net/hubfs/4883612/Logically_2025/bg-dots-blue.png");
}
.bg-dots--bottom.bg-dots--blue::after {
  background-image: url("https://4883612.fs1.hubspotusercontent-na1.net/hubfs/4883612/Logically_2025/bg-dots-blue.png");
  transform: scaleY(-1);
}
.bg-dots > .row-fluid,
.bg-dots .content-wrapper {
  position: relative;
  z-index: 1;
}

.bg-dots-top-right {
  position: relative;
}
.bg-dots-top-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
	max-width: 50%;
  aspect-ratio: 247 / 193;
}
.bg-dots-top-right--small::after {
	max-width: 25%;
}
.bg-dots-top-right--blue::after {
  background-image: url("https://4883612.fs1.hubspotusercontent-na1.net/hubfs/4883612/Logically_2025/bg-dots-blue-top-right.png");
}

.bg-card {
  background-repeat: no-repeat;
  background-position: top right;
}
.bg-card--neutral-90 {
  background-image: url("https://4883612.fs1.hubspotusercontent-na1.net/hubfs/4883612/Logically_2025/bg-card-neutral-90.png");
}
.bg-card--purple {
  background-image: url("https://4883612.fs1.hubspotusercontent-na1.net/hubfs/4883612/Logically_2025/bg-card-purple.png");
}

/* Text Colors */

.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.text-light-blue {
  color: var(--light-blue) !important;
}
.text-pink {
  color: var(--pink) !important;
}
.text-purple {
  color: var(--purple) !important;
}
.text-neutral-0 {
  color: var(--neutral-0) !important;
}
.text-neutral-10 {
  color: var(--neutral-10) !important;
}
.text-neutral-20 {
  color: var(--neutral-20) !important;
}
.text-neutral-30 {
  color: var(--neutral-30) !important;
}
.text-neutral-40 {
  color: var(--neutral-40) !important;
}
.text-neutral-50 {
  color: var(--neutral-50) !important;
}
.text-neutral-60 {
  color: var(--neutral-60) !important;
}
.text-neutral-70 {
  color: var(--neutral-70) !important;
}
.text-neutral-80 {
  color: var(--neutral-80) !important;
}
.text-neutral-90 {
  color: var(--neutral-90) !important;
}
.text-neutral-100 {
  color: var(--neutral-100) !important;
}

/* Spacing */

.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: var(--gap-1) !important;
}
.mt-2 {
  margin-top: var(--gap-2) !important;
}
.mt-3 {
  margin-top: var(--gap-3) !important;
}
.mt-4 {
  margin-top: var(--gap-4) !important;
}
.mt-5 {
  margin-top: var(--gap-5) !important;
}
.mt-6 {
  margin-top: var(--gap-6) !important;
}
.mt-7 {
  margin-top: var(--gap-7) !important;
}
.mt-8 {
  margin-top: var(--gap-8) !important;
}
.mt-9 {
  margin-top: var(--gap-9) !important;
}
.mt-10 {
  margin-top: var(--gap-10) !important;
}
.mt-11 {
  margin-top: var(--gap-11) !important;
}
.mt-12 {
  margin-top: var(--gap-12) !important;
}
.mt-13 {
  margin-top: var(--gap-13) !important;
}
.mt-14 {
  margin-top: var(--gap-14) !important;
}
.mt-15 {
  margin-top: var(--gap-15) !important;
}
.mt-16 {
  margin-top: var(--gap-16) !important;
}
.mt-17 {
  margin-top: var(--gap-17) !important;
}
.mt-18 {
  margin-top: var(--gap-18) !important;
}
.mt-19 {
  margin-top: var(--gap-19) !important;
}
.mt-20 {
  margin-top: var(--gap-20) !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: var(--gap-1) !important;
}
.mb-2 {
  margin-bottom: var(--gap-2) !important;
}
.mb-3 {
  margin-bottom: var(--gap-3) !important;
}
.mb-4 {
  margin-bottom: var(--gap-4) !important;
}
.mb-5 {
  margin-bottom: var(--gap-5) !important;
}
.mb-6 {
  margin-bottom: var(--gap-6) !important;
}
.mb-7 {
  margin-bottom: var(--gap-7) !important;
}
.mb-8 {
  margin-bottom: var(--gap-8) !important;
}
.mb-9 {
  margin-bottom: var(--gap-9) !important;
}
.mb-10 {
  margin-bottom: var(--gap-10) !important;
}
.mb-11 {
  margin-bottom: var(--gap-11) !important;
}
.mb-12 {
  margin-bottom: var(--gap-12) !important;
}
.mb-13 {
  margin-bottom: var(--gap-13) !important;
}
.mb-14 {
  margin-bottom: var(--gap-14) !important;
}
.mb-15 {
  margin-bottom: var(--gap-15) !important;
}
.mb-16 {
  margin-bottom: var(--gap-16) !important;
}
.mb-17 {
  margin-bottom: var(--gap-17) !important;
}
.mb-18 {
  margin-bottom: var(--gap-18) !important;
}
.mb-19 {
  margin-bottom: var(--gap-19) !important;
}
.mb-20 {
  margin-bottom: var(--gap-20) !important;
}

.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: var(--gap-1) !important;
}
.pt-2 {
  padding-top: var(--gap-2) !important;
}
.pt-3 {
  padding-top: var(--gap-3) !important;
}
.pt-4 {
  padding-top: var(--gap-4) !important;
}
.pt-5 {
  padding-top: var(--gap-5) !important;
}
.pt-6 {
  padding-top: var(--gap-6) !important;
}
.pt-7 {
  padding-top: var(--gap-7) !important;
}
.pt-8 {
  padding-top: var(--gap-8) !important;
}
.pt-9 {
  padding-top: var(--gap-9) !important;
}
.pt-10 {
  padding-top: var(--gap-10) !important;
}
.pt-11 {
  padding-top: var(--gap-11) !important;
}
.pt-12 {
  padding-top: var(--gap-12) !important;
}
.pt-13 {
  padding-top: var(--gap-13) !important;
}
.pt-14 {
  padding-top: var(--gap-14) !important;
}
.pt-15 {
  padding-top: var(--gap-15) !important;
}
.pt-16 {
  padding-top: var(--gap-16) !important;
}
.pt-17 {
  padding-top: var(--gap-17) !important;
}
.pt-18 {
  padding-top: var(--gap-18) !important;
}
.pt-19 {
  padding-top: var(--gap-19) !important;
}
.pt-20 {
  padding-top: var(--gap-20) !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: var(--gap-1) !important;
}
.pb-2 {
  padding-bottom: var(--gap-2) !important;
}
.pb-3 {
  padding-bottom: var(--gap-3) !important;
}
.pb-4 {
  padding-bottom: var(--gap-4) !important;
}
.pb-5 {
  padding-bottom: var(--gap-5) !important;
}
.pb-6 {
  padding-bottom: var(--gap-6) !important;
}
.pb-7 {
  padding-bottom: var(--gap-7) !important;
}
.pb-8 {
  padding-bottom: var(--gap-8) !important;
}
.pb-9 {
  padding-bottom: var(--gap-9) !important;
}
.pb-10 {
  padding-bottom: var(--gap-10) !important;
}
.pb-11 {
  padding-bottom: var(--gap-11) !important;
}
.pb-12 {
  padding-bottom: var(--gap-12) !important;
}
.pb-13 {
  padding-bottom: var(--gap-13) !important;
}
.pb-14 {
  padding-bottom: var(--gap-14) !important;
}
.pb-15 {
  padding-bottom: var(--gap-15) !important;
}
.pb-16 {
  padding-bottom: var(--gap-16) !important;
}
.pb-17 {
  padding-bottom: var(--gap-17) !important;
}
.pb-18 {
  padding-bottom: var(--gap-18) !important;
}
.pb-19 {
  padding-bottom: var(--gap-19) !important;
}
.pb-20 {
  padding-bottom: var(--gap-20) !important;
}

/* 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: 2rem;
}
.text-small {
  font-size: 1.6rem;
}

/* Responsive embed */

.embed-container {
  position: relative;
  height: 0;
  max-width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.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%;
}

/* HubSpot Video */

.hs-video-wrapper {
	border-radius: var(--radius-md);
	overflow: hidden;
}

/* Color Scheme */

.cs-dark {
  color: var(--neutral-0) !important;
}
.cs-dark em {
  color: var(--pink) !important;
}
.cs-dark a:not(.button) {
  color: var(--pink) !important;
}
.cs-dark a:not(.button):hover,
.cs-dark a:not(.button):active,
.cs-dark a:not(.button):focus {
  color: var(--pink-light) !important;
}