/* Theme base styles */


:root {

	/* Spacing */

	--container-width: 1320px;
	--vertical-spacing: 5rem;
	--vertical-spacing-mobile: 1rem;
	--gap: 2rem;
	--gap-xs: calc(var(--gap) / 4);
	--gap-sm: calc(var(--gap) / 2);
	--gap-md: calc(var(--gap) * 0.75);
	--gap-lg: calc(var(--gap) * 2);
	--gap-xl: calc(var(--gap) * 3);

	/* Colors */

	--base-color: #252525;

  
	--blue_zodiac: #12284C;
	--blue_yonder: #5169AD;
	--blue_pantone: #329FFF;
	--blue_stone: #121D2F;
	--red: #FE251B;
	--purple: #A12083;
	--orange: #F58220;
	--green: #667C3E;
	--black: #000;
	--white: #fff;

	/* Typography */

	--base-font-size: 1.6rem;
	--base-line-height: 2rem;
	--primary-font-family: 'Open Sans', sans-serif;
	--secondary-font-family: 'Montserrat', sans-serif;
}

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

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

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

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

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

body {
  margin: 0;
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, 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: 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 and Firefox.
 * 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 and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

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

.grid {
  display: grid;
}

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

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

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

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

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

.block {
  display: block;
}


.col-full {
  width: 100%;
}

.gap {
  gap: var(--gap);
}

.gap-xs {
  gap: var(--gap-xs);
}

.gap-sm {
  gap: var(--gap-sm);
}

.gap-md {
  gap: var(--gap-md);
}

.gap-lg {
  gap: var(--gap-lg);
}

.gap-xl {
  gap: var(--gap-xl);
}

.mb {
  margin-bottom: var(--gap);
}

.mb-md {
  margin-bottom: var(--gap-md);
}

.mt-lg {
  margin-top: var(--gap-lg);
}

@media (max-width: 767px) {
  .mb\:gap {
    gap: var(--gap);
  }

  .mb\:gap-sm {
    gap: var(--gap-sm);
  }

  .mb\:gap-xs {
    gap: var(--gap-xs);
  }
}

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

section,
.dnd-section:not([class*='force-full-width']) {
  padding: 2rem 1rem 0;
}

@media (max-width: 767px) {
  .dnd-section:last-child:not([class*='force-full-width']) {
    padding-bottom: 2rem;
  }
}

.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) {
  section,
  .dnd-section:not([class*='force-full-width']) {
    padding: var(--vertical-spacing-mobile)  2rem;
  }

  .row-fluid {
    -webkit-column-gap: var(--gap);
       -moz-column-gap: var(--gap);
            column-gap: var(--gap);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

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

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

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

/* Visibility classes */

.hide {
  display: none !important;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

/* Responsive visibility classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

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

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

body {
  color: var(--blue_stone);
  font-family: var(--primary-font-family);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

/*.body-wrapper {
  overflow-x: hidden;
}*/

@media (max-width: 767px) {
  body {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

/* Paragraphs */

p {
  margin: 0 0 1rem;
}

/* Anchors */

a {
  cursor: pointer;
  transition: all .3s;
  font-weight: 700;
  color: var(--blue_stone);
}

/* Headings */

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

h1,
.h1 {
  font-size: 3.2rem;
}
h2,
.h2 {
  font-size: 2.9rem;
}
h3,
.h3 {
  font-size: 2.6rem;
}
h4,
.h4 {
  font-size: 2.3rem;
}
h5,
.h5 {
  font-size: 2rem;
}
h6,
.h6 {
  font-size: 1.8rem;
}

.tagline {
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 600;
}

.caption {
  font-size: 1rem;
  line-height: 1.6rem;
}

.caption-small {
  font-size: 1.1rem;
}

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

@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 6.4rem;
  }
  h2,
  .h2 {
    font-size: 4rem;
  }
  h3,
  .h3 {
    font-size: 3.3rem;
  }
  h4,
  .h4 {
    font-size: 2.8rem;
  }
  h5,
  .h5 {
    font-size: 2.3rem;
  }
  h6,
  .h6 {
    font-size: 1.9rem;
  }

  .tagline {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  .caption {
    font-size: 1.1rem;
    line-height: 2rem;
  }

  .caption-small {
    font-size: 0.9rem;
  }
}

.bold {
  font-weight: 700;
}

.light {
  font-weight: 300;
}

.text-small {
  font-size: 1.4rem;
}

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

.text-center {
  text-align: center;
}

.header-content *:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .header-content .header-text {
    text-align: center;
  }

  .header-content .buttons {
    justify-content: center;
    width: 100%;
  }

  .header-content .buttons .button:first-child:last-child {
    width: 100%;
  }
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
.site-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-white {
  background: #fff;
}

.bg-blue,
.bg-blue-zodiac {
  background-color: var(--blue_zodiac);
  color: var(--white);
}


.bg-blue-yonder {
  background-color: var(--blue_yonder);
  color: var(--white);
}

.bg-blue-pantone {
  background-color: var(--blue_pantone);
  color: var(--white);
}

.bg-blue-stone {
  background-color: var(--blue_stone);
  color: var(--white);
}

.bg-red {
  background-color: var(--red);
}

.bg-purple {
  background-color: var(--purple);
  color: var(--white);
}

.bg-orange {
  background-color: var(--orange);
}

.bg-green {
  background-color: var(--green);
}
.button,
form input[type="submit"],
form .hs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 1.5rem 3.5rem;
  border: 0;
  border-radius: 0;
  appearance: none;
  transition: all 0.2s ease;
  text-align: center;
  white-space: normal;
  cursor: pointer;

  font-size: 1.6rem;
  line-height: 1.1875;
  font-weight: 400;
  font-family: var(--primary-font-family);
  text-decoration: none;
}

@media (max-width: 767px) {
  .button,
  form input[type="submit"],
  form .hs-button {
    font-size: 1.4rem;
    line-height: 1.285714285714286;
    padding: 1rem 2.35rem;
  }
}

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

.button:hover {
  transform: translateY(-3px);
}

/* No button */

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


/* Primary - blue zodiax */
.button--primary,
form input[type="submit"],
form .hs-button {
  background-color: var(--blue_zodiac);
  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_zodiac);
  color: var(--white);
}


/* Secondary - blue_pantone */
.button--secondary {
  background-color: var(--blue_pantone);
  color: var(--white);
}

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


/* Tertiary - blue_yonder */
.button--tertiary {
  background-color: var(--blue_yonder);
  color: var(--white);
}

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


/* Text */

.button--text {
  background-color: transparent;
  border-color: transparent;
  color: var(--blue_zodiac);

  text-decoration: underline;
  text-decoration-color: var(--blue_zodiac);
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;

  padding: 0;
}

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

.splide__slide .card {
  height: 100%;
}

.card__content {
  padding: 2rem;
}

.icon__card {
  padding: 2rem;
}

@media (min-width: 768px) {
  .card__large .card__content {
    padding: 6rem 2rem;
  }

  .card__large .card__content-inner {
    max-width: calc(100% - 8rem);
    margin: 0 auto;
  }
}

.icon__card .card__content {
  padding: 0;
}

.card__media {
  height: 20.3858rem;
}

.card__icon-image {
  height: 3rem;
}

.card__small {
  width: 25.7rem;
}

.card__small .card__media {
  height: 16.3rem;
}

.card__large {
  width: 54.7rem;
  max-width: 90vw;
}

.card__large .card__media {
  height: 16.8rem;
}

@media (min-width: 768px) {
  .card__media {
    height: 31.4rem;
  }

  .card__small .card__media {
    height: 17.6rem;
  }

  .card__large .card__media {
    height: 30.6rem;
  }

  .card__icon-image {
    height: 5.5rem;
  }
}

@media (max-width: 767px) {
  .icon__card {
    gap: 1rem;
  }

  .splide .card__large {
    max-width: 80vw;
  }
}

/* Icon Cards Slider */
@media (min-width: 768px) {
  .icon-cards-slider,
  .icon-cards-slider .splide__track {
    height: 100%;
  }

  .icon-cards-slider.splide:not(.is-active) .splide__list {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .icon-cards-slider .splide__slide {
    width: 25.7rem;
  }

  .icon-cards-slider .splide__list {
    flex-direction: row;
  }

  .icon-cards-slider .splide__track {
    overflow: visible;
  }
}

.card__content *:last-child,
.ci__text *:last-child {
  margin-bottom: 0;
}



.carousel-bar-wrapper {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3rem;
  margin-top: 2rem;
}

.bg-white .carousel-bar-wrapper {
  background: rgba(177, 173, 173, 0.2);
}

.carousel-bar {
  background: rgba(18, 40, 76, 0.58);
  height: 1.2rem;
  border-radius: 3rem;
  transition: width 400ms ease;
  width: 33.333%;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-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 - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  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;
}

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

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

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.header {
}
.footer-top {
  padding: 6rem 2rem;
  border-bottom: 0.5px solid var(--blue_yonder, #5169AD);
}

.footer-bottom {
  padding: 4rem 2rem;
}

.footer-logo {
  max-width: 19.4rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-top {
    padding: 10rem 2rem;
  }

  .footer-col {
    max-width: 22.8rem;
  }

  .footer-logo {
    max-width: 15rem;
  }
}

.footer h5 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.footer a {
  color: #FFF;
  text-decoration: none;
  font-weight: 400;
}

.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: 0.5px;
}

.footer-menu a {
  text-decoration-line: underline;
  text-decoration-thickness: 0.5px;
}

.footer-menu a:hover {
  text-decoration: none;
}

.footer-menu .hs-menu-wrapper.hs-menu-flow-vertical > ul {
  gap: 0.5rem;
}


@media (max-width: 767px) {
  .footer {
    text-align: center;
    font-size: 1.3rem;
  }

  .footer-menu {
    font-size: 1.4rem;
  }

  .footer-bottom {
    font-size: 1.1rem;
  }

  .footer-logo {
    margin: 2rem auto;
  }

  .footer-menu .hs-menu-wrapper.hs-menu-flow-vertical > ul {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .footer-menu ul {
    max-width: 100%;
    display: none !important;
  }

  .footer-menu h5 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer !important;
    margin-bottom: 0;
  }

  .footer-menu h5:after {
    content: '';
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.116994 0.658424C-0.0389986 0.805694 -0.0389986 1.04387 0.116994 1.19078L3.42243 4.30454C3.49529 4.37424 3.58298 4.42974 3.68018 4.46767C3.77737 4.50559 3.88203 4.52515 3.9878 4.52515C4.09357 4.52515 4.19823 4.50559 4.29542 4.46767C4.39262 4.42974 4.48031 4.37424 4.55317 4.30454L7.883 1.16823C7.95742 1.09705 7.99925 1.00279 7.99999 0.904593C8.00073 0.806394 7.96034 0.711618 7.887 0.639515C7.85079 0.603796 7.80689 0.575217 7.75804 0.555546C7.70918 0.535875 7.6564 0.525532 7.60297 0.525157C7.54954 0.524782 7.49659 0.534383 7.44741 0.553366C7.39822 0.572349 7.35385 0.600309 7.31703 0.635515L4.27038 3.50601C4.23395 3.54089 4.19009 3.56866 4.14148 3.58764C4.09286 3.60662 4.04051 3.61641 3.9876 3.61641C3.93469 3.61641 3.88234 3.60662 3.83372 3.58764C3.78511 3.56866 3.74125 3.54089 3.70481 3.50601L0.682165 0.658424C0.645767 0.623555 0.601942 0.595788 0.55336 0.576813C0.504778 0.557838 0.452456 0.548052 0.39958 0.548052C0.346704 0.548052 0.294381 0.557838 0.245799 0.576813C0.197217 0.595788 0.153392 0.623555 0.116994 0.658424Z' fill='white'/%3E%3C/svg%3E%0A");
    width: 8px;
    height: 5px;
    transform: rotate(-90deg);
    transition: all .2s ease;
  }

  .footer-menu.open h5:after {
    transform: rotate(0deg);
  }

  .footer-menu.open .hs-menu-wrapper ul {
    display: flex !important;
  }

  .footer-bottom .content-wrapper {
    gap: 1rem;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

.no-flyouts .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: unset;
  opacity: 1;
  position: unset;
}

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

.no-flyouts .hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  white-space: normal;
}

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

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

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

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

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

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

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

/* Rounded */

.rounded {
  border-radius: 2rem;
}

.rounded-sm {
  border-radius: 1rem;
}

/* Positioning */

.pos-rel {
  position: relative;
  z-index: 1;
}

.pos-abs {
  position: absolute;
}

/* Images */

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

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