/* Theme base styles */

:root {

	/* Spacing */

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

	/* Colors */

	--base-color: #2B2D30;
	--blue: #0071BB;
  --blue-hover: #007AC9;
	--green: #8EC744;
	--orange: #FF7F02;
	--cyan: #5CB5D8;

	--black: #000;
	--jet-gray: #2B2D30;
	--space-gray: #4D4E50; 
	--light-gray: #fafafa;
  --aps-blue: #0071bb;
	--medium-gray: #939597; /* form borders, form placeholders, table borders, table header, table footer, dividers */
	--white: #fff;

	/* Typography */

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

}

/* Generic */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

main {
  display: block;
}

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

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

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

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

hr {
  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;
}

/* Objects */

.flex, .flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display:flex
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap:wrap !important
}

.flex-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex:1 0
}

.flexInline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display:inline-flex
}

.flex-column {
  flex-direction:column
}

.flex-column-reverse {
  flex-direction:column-reverse
}

.flex-row {
  flex-direction:row
}

.flex-row-reverse {
  flex-direction:row-reverse
}

.flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items:center
}

.flex-top, .flex-start {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items:flex-start
}

.flex-bottom {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items:flex-end
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content:center
}

.flex-end {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content:flex-end
}

.flex-self {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self:center
}

.flex-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items:stretch
}

.flex-space {
  -ms-flex-pack: distribute;
  justify-content:space-around
}

.flex-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content:space-between
}

.gap-xs {
  gap: .4rem;
}

.gap-sm {
  gap: .8rem;
}

.gap-md {
  gap: 1.6rem;
}

.gap {
  gap: 2rem;
}

.gap-lg {
  gap: 2.4rem;
}

.gap-xl {
  gap: 3.2rem;
}

@media (max-width: 767px) {
  .flex-column-reverse, .flex:not(.flex-row) {
      flex-direction:column
  }

  .flex-row-reverse {
      flex-direction:row
  }
}

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

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

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

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

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

@media (min-width: 769px) {
  .content-wrapper__right {
    padding-right: 2rem !important;
  }
  
  .content-media-1__content {
    max-width: 400px;
  }
}

@media (min-width: 1180px) {
  .content-wrapper__left {
    padding-right: 0 !important;
    margin-left: calc((100% - 1180px) / 2);
    margin-right: -2rem;
  }

  .content-wrapper__right {
    padding-right: 4rem !important;
    margin-right: calc((100% - 1180px) / 2);
    margin-left: -2rem;
  }
}

@media (max-width: 1179px) {
  .content-wrapper__left,
  .content-wrapper__right {
    max-width: var(--container-width);
    margin: 0 auto;
  }
}

.dnd-section {
  position: relative;
}

section,
.dnd-section:not([class*='force-full-width']),
.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 .hs-private {
  width: 100%; /* for the dnd add module here placeholder */
}

@media (min-width: 768px) {
  .dnd-section .row-fluid {
    -webkit-column-gap: var(--gap);
    -moz-column-gap: var(--gap);
    column-gap: var(--gap);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .dnd-section [class*='span'] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

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

@media (min-width: 992px) {
  section,
  .dnd-section:not([class*='force-full-width']),
  .content-wrapper--vertical-spacing {
    padding: var(--vertical-spacing) 2rem;
  }
}

/* Visibilty classes */

.hide {
  display: none !important;
}

.show {
  display: block;
}

.show.flex {
  display: flex;
}

.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%;*/
  font-size: 10px;
  scroll-behavior: smooth;
  /*scroll-padding-top: 178px;
  --scroll-padding-top: 178px;*/
}
/*
html:has(.scroll-down) {
  scroll-padding-top: 84px;
  --scroll-padding-top: 84px;
}*/
/*
html:has(.secondary-nav) {
  scroll-padding-top: 235px;
  --scroll-padding-top: 235px;
}*/
/*
html:has(.secondary-nav):has(.scroll-down) {
  scroll-padding-top: 141px;
  --scroll-padding-top: 141px;
}*/

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

body {
  color: var(--base-color);
  font-family: var(--primary-font-family);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  word-break: break-word;
  letter-spacing: 0.5px;
}

.body {
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  letter-spacing: 0.5px;
  text-transform: none;
}

.body-sm {
  font-size: 1.4rem;
  line-height: 1.714285714285714;
  letter-spacing: 0.25px;
}

.semibold {
  font-weight: 600;
}

.space-gray {
  color: var(--space-gray);
}

/* Anchors */

a {
  color: var(--blue);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

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

a:active {
  color: var(--base-color);
}


.color-base {
  color: var(--base-color);
}

/* Paragraphs */

p {
  margin: 0 0 2rem;
}

/* Headings */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 2rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
}

h1 strong, .h1 strong,
h2 strong, .h2 strong,
h3 strong, .h3 strong,
h4 strong, .h4 strong,
h5 strong, .h5 strong,
h6 strong, .h6 strong {
  color: var(--cyan);
}

h1,
.h1,
.banner h2 {
  font-size: 4rem;
  letter-spacing: -1px;
}
h2,
.h2 {
  font-size: 3.2rem;
  line-height: 1.25;
}
h3,
.h3,
.content-media-1 h2,
.has-h3 h2 {
  font-size: 2.8rem;
  line-height: 1.142857142857143;
}
h4,
.h4 {
  font-size: 2.4rem;
  letter-spacing: unset;
}
h5,
.h5,
.has-h5 h3 {
  font-size: 2rem;
}
h6,
.h6 {
  font-size: 1.8rem;
}

@media (min-width: 992px) {
  h1,
  .h1,
  .banner h2 {
    font-size: 5.6rem;
    line-height: 1.142857142857143;
  }
  h2,
  .h2 {
    font-size: 4.8rem;
    line-height: 1.166666666666667;
    letter-spacing: -0.5px;
  }
  h3,
  .h3,
  .content-media-1 h2,
  .has-h3 h2 {
    font-size: 3.2rem;
    line-height: 1.25;
  }
  h4,
  .h4 {
    font-size: 2.8rem;
  }
  h5,
  .h5,
  .has-h5 h3 {
    font-size: 2.4rem;
    line-height: 1.333333333333333;
  }
}

.header-content p {
  color: var(--space-gray);
}

@media (max-width: 767px) {
  .header-content > img:first-child {
    float: none !important;
    margin: 0 0 2rem !important;
  }
}

.bg-jet-gray .header-content p {
  color: var(--white);
}

.subtitle, .subtitle-1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.15000000596046448px;
  text-transform: none;
}

.subtitle-2 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.777777777777778;
  letter-spacing: 0.10000000149011612px;
  text-transform: none;
}

.subtitle-3 {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.714285714285714;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  color: var(--space-gray);
}

/* Lists */

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

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

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

.ul-dots ul,
ul.dots {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.8rem;
  color: var(--space-gray);
}

.ul-dots ul li,
ul.dots li {
  padding-left: 2.4rem;
  position: relative;
}

.ul-dots ul li:before,
ul.dots li:before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: .7rem;
  top: .7rem;
  border-radius: 50%;
  background: var(--green);
}

.ul-dots-sm ul {
  font-size: 1.4rem;
  line-height: 1.714285714285714;
  letter-spacing: 0.25px;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 6px solid var(--green);
  font-size: 2.2rem;
  font-style: italic;
  padding-left: 2rem;
  max-width: 90%;
  margin: 2rem auto;
}

/* Horizontal rules */

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

/* Module Badge */

.badge {
  position: absolute;
  top: 0;
  left: 0;
}

.ribbon {
  align-items: center;
  background: var(--jet-gray);
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,.27);
  cursor: default;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 5px 15px;
  position: absolute;
  top: 0;
  transform: translate(20px,20px);
  transition: all .2s ease;
  width: max-content;
  z-index: 11;
}

.ribbon.invert {
  background: #fff;
  color: var(--jet-gray);
}
.button,
form input[type="submit"],
form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button,
form .hs-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  min-height: 4.4rem;
  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;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

/* 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 {
  background-color: var(--blue);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus,
.button--primary:active,
form input[type="submit"]:hover,
form input[type="submit"]:focus,
form input[type="submit"]:active,
form .hs-button:hover,
form .hs-button:focus,
form .hs-button:active {
  background-color: var(--blue-hover);
  color: var(--white);
}

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

/* Secondary */

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

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

/* White fill */

.button--white-fill {
  background-color: var(--white);
  color: var(--blue);
}

.button--white-fill:hover,
.button--white-fill:focus,
.button--white-fill:active {
  background-color: var(--blue);
  color: var(--white);
}

/* Dark */

.button--dark {
  background-color: var(--jet-gray);
  color: var(--white);
}

.button--dark:hover,
.button--dark:focus,
.button--dark:active {
  background-color: var(--space-gray);
  color: var(--white);
}

/* Clear */

.button--clear {
  background-color: transparent;
  color: var(--jet-gray);
}

.button--clear:hover,
.button--clear:focus,
.button--clear:active {
  color: var(--jet-gray);
  background: rgba(43, 45, 48, 0.06);
}


/* Bordered blue */

.button--border {
  background-color: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}

.button--border.button--small {
  padding: .9rem 1.5rem;
}

.button--border:hover,
.button--border:focus,
.button--border:active {
  background: rgba(0, 113, 187, 0.06);
  color: var(--blue);
}

.button--border:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  transition: all .2s ease-in-out;
  pointer-events: none;
}

.button--border:hover:after,
.button--border:focus:after,
.button--border:active:after {
  border: 2px solid var(--blue);
}

.button--border.button--no-border {
  border: 0 !important;
  padding: 1rem;
}

.button--border.dark {
  color: var(--jet-gray);
  border: 1px solid var(--jet-gray);
}

.button--border.dark:hover,
.button--border.dark:focus,
.button--border.dark:active {
  background: rgba(43, 45, 48, 0.06);
  color: var(--jet-gray);
}

.button--border.dark:hover:after,
.button--border.dark:focus:after,
.button--border.dark:active:after {
  border: 2px solid var(--jet-gray);
}


/* White */

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

.button--white.button--small {
  padding: .9rem 1.5rem;
}

.button--white:hover,
.button--white:focus,
.button--white:active {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button--white:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  transition: all .2s ease-in-out;
  pointer-events: none;
}

.button--white:hover:after,
.button--white:focus:after,
.button--white:active:after {
  border: 2px solid var(--white);
}

.button--white.button--no-border {
  border: 0 !important;
  padding: 1rem;
}

/* Text */

.button--text {
  min-height: auto;
  padding: 0;
  background: none;
  color: var(--jet-gray);
  position: relative;
}

@media (max-width: 767px) {
  .button--text {
    line-height: 1.5;
    padding-bottom: .3rem;
  }
}

.button--icon span {
  position: relative;
}

.button--text:before,
.button--icon:not(.button--video) span:before {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  transition: width .2s ease-in-out;
  background: var(--space-gray);
  position: absolute;
  left: 0;
  bottom: -4px;
}

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

.button--text.hover:before,
.button--text:hover:before,
.button--text:focus:before,
.button--text:active:before,
.hs-menu-item:hover > a.button--text:before,
.hs-menu-item.opened > a.button--text:before,
.button--icon:hover span:before,
.button--icon:focus span:before,
.button--icon:active span:before {
  width: 100%;
}

.button--icon span:before {
  display: none !important;
}

.button--text.blue {
  color: var(--blue);
}

.button--text.blue:before,
.button--icon.blue span:before {
  background: var(--blue);
}

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

.button--text.white:before,
.button--icon.white span:before {
  background: var(--cyan);
}

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

/* Icon */

.button--icon {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-xs);
}

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

.button--icon svg {
  height: 2.4rem;
  transition: all .2s ease-in-out;
}

.button--icon svg path {
  fill: currentColor
}

.button--icon .hs_cos_wrapper_type_icon {
  display: inline-flex;
  align-items: center;
}

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

.button--icon:not(.before):hover svg {
  transform: translateX(.4rem);
}

/* Play */

.button--play {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  padding: 2.8rem;
  border-radius: 50%;
}

.button--play:hover {
  background: var(--blue);
}

.button--play svg {
  width: 2.4rem;
  height: 2.4rem;
}

.button--play svg path {
  transition: all .2s ease-in-out;
}

.button--play:hover svg path {
  fill: var(--white);
}

/* 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,
.footer__subscribe form input[type="submit"] {
  min-height: 2.4rem;
  font-size: 1.4rem;
  line-height: 1.714285714285714;
  padding: 1rem 1.6rem;
}

.button--text.button--small {
  padding: 0 !important;
}

/* Large */

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

/* CTA Override */

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

form label,
.fakelabel {
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

/* Inputs */

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="tel"],
form input[type="number"],
form input[type="file"],
form input[type="search"],
form select,
form textarea {
  display: block;
  padding: 1rem;
  width: 100%;
  min-height: 4.4rem;
  margin-bottom: 2rem;
  background-color: var(--white);
  border: 1px solid var(--medium-gray);
}

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

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

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

::-webkit-input-placeholder {
  color: var(--jet-gray);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

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


/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }



/* Inputs - checkbox/radio */

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

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

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

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

/* 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(--space-gray);
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

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

/* Inputs - file picker */

form input[type="file"] {
  width: auto !important;
  min-height: auto;
  background-color: transparent;
  border: initial;
  padding: initial;
}
form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button {
  margin-right: var(--gap);
}

/* Headings and text */

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

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

/* GDPR */

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

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

/* Validation */

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

.hs-input.invalid.error {
  border-color: var(--orange);
}

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

.hs_error_rollup {
  display: none;
}

/* Captcha */

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

/* Change Autocomplete styles in Chrome */

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

/* Fix Column Layouts */

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

@media (min-width: 992px) {
  .hs-form fieldset.form-columns-1 .hs-form-field {
    width: 100% !important;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field {
    width: 50% !important;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(1) {
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field {
    width: 33.333% !important;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(1) {
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(3) {
    padding-left: 0.75rem;
  }
}
.hero {
  padding: 0 1.6rem;
  position: relative;
  overflow: hidden;

  color: #fff;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.777777777777778;

  display: flex;
  align-items: flex-end;
}

.body-container--home .hero {
  min-height: 80vh !important;
}

.hero div[class*=content-wrapper] {
  gap: 4rem;
  position: relative;
  z-index: 3;
}

.hero__content {
  padding-top: 27.2rem;
  padding-bottom: 15.2rem;
}

.hero__small .hero__content {
  padding-bottom: 10rem;
}

.hero.noimage .hero__content {
  padding-top: 24rem;
  padding-bottom: 8rem;
}

.hero__medium {
  min-height: 70rem;
}

.hero.has_video,
.hero__tall {
  min-height: 80rem;
}

.hero.has_video .hero__content,
.hero__tall .hero__content {
  padding-bottom: 6.4rem;
}

.hero__content *:last-child {
  margin: 0;
}

.hero .ctas {
  margin-top: 3rem;
}

.hero .ctas .button--icon {
  margin-top: 3rem;
}

.hero .content-wrapper {
  position: relative;
  width: 100%;
  z-index: 3;
}

.hero__content {
  width: 100%;
  max-width: 100%;
}

.hero__rich-text {
  max-width: 78rem;
  width: 100%;
}

.has_side .hero__rich-text {
  max-width: 58rem;
}

.has_video .hero__rich-text {
  max-width: 68rem;
}

.hero__side {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -14rem;
}

.hero__side img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.hero__bg,
.hero__video {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero__bg img,
.hero__video video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.hero__bg:before,
.hero__video:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-repeat: repeat;
  background-size: 10%;
  background-image: url(https://24142450.fs1.hubspotusercontent-na1.net/hubfs/24142450/_img/hero/hero-pattern.jpg);
}

.hero__bg:after,
.hero__video:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), linear-gradient(180deg, #000000 -12.25%, rgba(0, 0, 0, 0) 48.12%, #000000 113.75%);
}

@media (max-width: 767px) {
  .hero__side {
    display: none;
  }

  .hero__content {
    padding: 10rem 0;
  }

  html:has(.info-bar-header) .hero__content {
    padding-top: 23.2rem;
  }
}

.hero-form .modal__container {
  max-width: 50rem;
  margin: 0 auto;
  padding: 6rem 4rem 4rem;
  background: #fff;
  position: relative;
}

.hero-form .modal__close {
  top: 1rem;
  right: 1rem;
}
/* Table */

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

/* Table cells */

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

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

/* Table header */

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

/* Table footer */

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

/* Components */

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

.header {
  position: relative;
  z-index: 101;
}

.header__container {
  padding: 2rem;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  transition: all .2s ease-in-out;
}

.header[class*="nav"] .header__container {
  background: #fff;
}

.header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* Logo */

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

/* Nav */

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

/* Navigation skipper */

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

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}
.footer {
  padding: 8rem 2rem;
  background: var(--light-gray);
}

.footer__top {
  gap: 2rem;
}

.footer h3 {
  text-transform: none;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: .8rem;
}

.footer__subscribe {
  max-width: 38rem;
  width: 100%;
}

.footer__subscribe .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__subscribe form input[type=email] {
  border-color: #fff;
}

@media (min-width: 550px) {
  .footer__subscribe form {
    display: flex;
    gap: .8rem;
  }

  .footer__subscribe form .hs_email {
    flex: 1;
  }

  .footer__subscribe form .hs_submit input[type=submit] {
    white-space: nowrap;
  }

  .footer__subscribe .hs-error-msgs {
    position: absolute;
  }
}

@media (max-width: 549px) {
  .footer__subscribe form {
    width: 100%;
  }

  .footer__subscribe form > * {
    width: 100%;
  }

  .footer__subscribe form .hs_submit input[type=submit] {
    text-align: center;
    justify-content: center;
  }

  .footer__subscribe form input[type=email] {
    margin-bottom: 1rem;
  }
}

.footer__subscribe .hs-error-msg,
.footer__subscribe .hs-error-msgs {
  text-transform: none;
}

.footer__social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0;
}

.footer__social a {
  display: block;
  width: 4.4rem;
  height: 4.4rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  text-decoration: none;
}

.footer__social a:hover {
  background: rgba(43, 45, 48, 0.06);
}

.footer__copyright {
  
  text-align: center;

  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.714285714285714;
  letter-spacing: 0.25px;
}

.footer__copyright .hs_cos_wrapper_type_text {
  display: flex;
  flex-direction: column;
  gap: 1rem 4rem;
}

.footer__copyright a {

}

.footer__copyright a:hover {
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .footer__copyright .hs_cos_wrapper_type_text {
    flex-direction: row;
    justify-content: center;
  }
}

.footer__menu {
  /*margin-top: 5.6rem;
  padding: 5.6rem 0;
  border-top: 1px solid rgba(239, 240, 240, 1);
  border-bottom: 1px solid rgba(239, 240, 240, 1);*/

  margin: 2.8rem 0;
}

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

.footer__menu .hs-menu-wrapper > ul {
  /*display: grid;
  grid-template-columns: repeat(6, 1fr);*/
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer a {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.25px;
  color: var(--jet-gray);
}

.footer__menu a,
.footer__copyright a {
  text-underline-offset: .1rem;
  text-decoration: underline;
  text-decoration-thickness: .1rem;
  text-decoration-color: transparent;
}

.footer__menu a span {
  display: block;
}

.footer__menu a:hover,
.footer__copyright a:hover {
  text-decoration-color: var(--jet-gray);
}

.footer__menu li.hs-menu-depth-1 > a {
  font-family: Open Sans;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: var(--jet-gray);
}

.footer__menu li.hs-menu-depth-1 > a[href*="javascript"] {
  cursor: text;
  text-decoration: none !important;
}

.footer__menu ul ul {
  display: grid;
  gap: .8rem;
  margin-top: 1.2rem;
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
  }

  .footer__logo,
  .footer__social,
  .footer__subscribe,
  .footer__copyright {
    text-align: center;
  }

  .footer__social ul {
    justify-content: center;
  }

  .footer__subscribe {
    margin: 0 auto 2rem;
  }

  .footer__menu {
    margin-top: 0;
    padding: 0;
  }

  .footer__copyright {
    margin-top: 2.8rem;
  }
}




@media (max-width: 767px) {

  .footer__social ul {
    justify-content: center;
  }

  .footer__menu .hs-menu-flow-horizontal > ul {
    display: grid;
    text-align: center;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 auto;
  }

  .footer__menu .hs-menu-flow-horizontal ul ul {
    display: none;
    list-style: none;
    margin: 0;
    padding: 1.6rem 0;
    grid-template-columns: 1fr;
    gap: 16px;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: .5px;
  }

  .footer__menu .hs-menu-flow-horizontal > ul > li {
    border-bottom: 1px solid rgba(43, 45, 48, 0.06);
  }

  .footer__menu .hs-menu-flow-horizontal > ul > li > a {
    padding: 1.6rem 0;
  }

  .footer__menu .hs-menu-flow-horizontal > ul > li:last-child {
    border-bottom: none;
  }

  .footer__menu ul > li.hs-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer !important;
  }

  .footer__menu ul > li.hs-item-has-children > a:after {
    content: '';
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='10' viewBox='0 0 19 10' fill='none'%3E%3Cpath d='M17 2L9.5 8L2 2' stroke='%230071BB' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    width: 19px;
    height: 10px;
    transition: all .2s ease;
  }

  .footer__menu ul > li.hs-item-has-children > a.open:after {
    transform: rotate(180deg);
  }

  .footer__menu .hs-menu-flow-horizontal ul ul {
    text-align: left;
  }

  .footer__menu .hs-menu-flow-horizontal ul ul a {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
  }

  .footer__menu .hs-menu-flow-horizontal ul a.open + ul {
    display: grid;
  }
}

/* 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-jet-gray {
  background-color: var(--jet-gray);
  color: var(--white);
}
.bg-light-gray {
  background-color: var(--light-gray);
}
.bg-white {
  background-color: var(--white);
}
.bg-aps-blue{
background-color: var(--aps-blue);
}

.bg-blue,
.bg-primary {
  background-color: var(--blue);
}




.bg-pattern {
  position: relative;
}

.bg-pattern.absolute {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42.361111111111111%;
}

.bg-pattern.bg-pattern-41.absolute {
  width: 28.472222222222222%;
}

.bg-pattern.absolute.bg-left {
  right: auto;
  left: 0;
}

@media (max-width: 767px) {
  .bg-pattern.absolute {
    display: none !important;
  }
}

.bg-pattern:before {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-repeat: repeat;
  /*background-size: 15%;*/
  background-size: 150px;
  background-image: url(https://24142450.fs1.hubspotusercontent-na1.net/hubfs/24142450/_img/hero/hero-pattern.jpg);
}

.bg-light-gray.bg-pattern:before {
  opacity: 0.03;
}

.bg-jet-gray.bg-pattern:before {
  opacity: 0.03;
}


/* Spacing */

.mt-none {
  margin-top: 0 !important;
}
.mt-xs {
  margin-top: calc(var(--gap) * 0.2) !important;
}
.mt-sm {
  margin-top: calc(var(--gap) * 0.4) !important;
}
.mt-md {
  margin-top: calc(var(--gap) * .8) !important;
}
.mt-lg {
  margin-top: calc(var(--gap) * 1.2) !important;
}
.mt-xl {
  margin-top: calc(var(--gap) * 1.6) !important;
}
.mt-xxl {
  margin-top: calc(var(--gap) * 2.4) !important;
}

.mb-none {
  margin-bottom: 0 !important;
}
.mb-xs {
  margin-bottom: calc(var(--gap) * 0.2) !important;
}
.mb-sm {
  margin-bottom: calc(var(--gap) * 0.4) !important;
}
.mb-md {
  margin-bottom: calc(var(--gap) * .8) !important;
}
.mb-lg {
  margin-bottom: calc(var(--gap) * 1.2) !important;
}
.mb-xl {
  margin-bottom: calc(var(--gap) * 1.6) !important;
}
.mb-xxl {
  margin-bottom: calc(var(--gap) * 2.4) !important;
}
.mb-xxxl {
  margin-bottom: calc(var(--gap) * 4) !important;
}

@media (min-width: 1180px) {
  .ml-half {
    margin-left: calc((100% - 1180px) / 2);
  }
}


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

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

.pl-none {
  padding-left: 0 !important;
}

.pr-none {
  padding-right: 0 !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: calc(var(--base-font-size) * 1.2);
}
.text-small {
  font-size: calc(var(--base-font-size) * 0.8);
}

/* Responsive embed */

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

.hs-responsive-embed-wrapper {
  max-width: 100% !important;
  max-height: unset !important;
  min-width: unset !important;
}


@media (max-width: 767px) {
  .desktop {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .desktop-lg {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .mobile {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .tablet {
    display: none !important;
  }
}


.BambooHR-ATS-Department-List,
#BambooHR-Footer {
  padding-left: 3rem;
}

.BambooHR-ATS-Location::before {
  content: " - ";
}

.BambooHR-ATS-Location {
  padding-left: 0; 
}


.row-fluid [id],
[data-hs-anchor] {
  scroll-margin-top: 80px;
}