*, *:before, *:after {
  box-sizing: border-box;
}
/*! 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;
}
:root {
  --black: #1F2630;
  --blue: #4378B0;
  --orange: #FFBA34;
  --steel: #364657;
  --white: #fff;
}


/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

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

/*
* grid bs
*/
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--bs-gutter-x)*-.5);
  margin-right: calc(var(--bs-gutter-x)*-.5);
  margin-top: calc(var(--bs-gutter-y)*-1);
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col, .no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex:1 0 0%
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%
  }
}
.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: calc(var(--bs-gutter-x)*.5);
  padding-right: calc(var(--bs-gutter-x)*.5);
  width: 100%
}

.container.mx {
  max-width: 1088px;
}

@media (min-width: 576px) {
  .container,.container-sm {
    max-width:540px
  }
}

@media (min-width: 768px) {
  .container,.container-md,.container-sm {
    max-width:720px
  }
}

@media (min-width: 992px) {
  .container,.container-lg,.container-md,.container-sm {
    max-width:960px
  }
}

@media (min-width: 1200px) {
  .container,.container-lg,.container-md,.container-sm,.container-xl {
    max-width: 95vw;
  }
}

@media (min-width: 1400px) {
  .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
    max-width: 1376px;
  }
}

@media (min-width: 1600px) {
  .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
    max-width: 1498px;
  }
}
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  font-size: 14px;
  line-height: 1.42857143;
  font-family: "DM Sans", sans-serif;
  color: var(--black);
  margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
  margin: 0 0 16px;
  font-weight: 600;
  word-break: break-word;
}

strong {
  font-weight: 700;
}

h1 {
  font-size: 32px;
  line-height: 100%;
}

h2 {
  font-size: 28px;
  line-height: 125%;
}

h3 {
  font-size: 20px;
  line-height: 125.926%;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}

h5 {
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
}

h6 {
  font-size: 12px;
  font-weight: 600;
  line-height: 120%;
}

@media (min-width: 768px) {
  h1 {
    font-size: 90px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 27px;
  }
}

strong {
  font-weight: 700;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

ul li {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

button,input,select,textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit
}

a {
  color: inherit;
  text-decoration: none
}

a:focus,a:hover {
  color: inherit;
  text-decoration: none
}

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px
}

figure {
  margin: 0
}

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

/* 
* heading 
*/
.heading {
  position: relative;
  z-index: 2;
}

.heading.left {
  text-align: left;
}
.heading.center {
  text-align: center;
}
.heading.right {
  text-align: right;
}
.heading h2 {
  margin: 0 0 8px;
}

@media (min-width: 768px) {
  .heading p {
    margin: 50px 0;
  }

  .heading.center {
    max-width: 994px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767.98px) { 
  .heading {
    margin-bottom: 32px !important;
  }
}
.btn, .hs-button {
  display: inline-flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  transition: all 0.3s ease-out;
  text-align: center;
  border: 0;
  box-shadow: none;
}

.btn:hover, .hs-button:hover {
  filter: brightness(120%);
}

.btn.btn-primary, .hs-button.primary {
  background: var(--orange);
  color: var(--black);
}

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

.btn.btn-tertiary, .hs-button.tertiary {
  background-color: var(--black);
  color: var(--white);
}
/* Fields */
.hs-form fieldset {
  max-width: 100%!important
}

.hs-form .form-columns-1 .hs-input:not([type=checkbox]):not([type=radio]) {
  width: 100%!important
}

@media (min-width: 768px) {
  .hs-form fieldset.form-columns-2,.hs-form fieldset.form-columns-3 {
    display:flex;
    gap: 32px
  }

  .hs-form fieldset.form-columns-1 .input,
  .hs-form fieldset.form-columns-2 .input,
  .hs-form fieldset.form-columns-3.input {
    margin-right: 0!important
  }
}
.hs-form-field {
  margin-bottom: 24px;
}

/* Labels */

.hs-form .hs-form-field > label {
  color: var(--gray-900);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 8px;
  display: block;
}

/* 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;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid var(--gray-300);
  background: var(--white);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--gray-900);
  width: 100% !important;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--gray-900)
}

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: #f00;
}

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

.hs-error-msg, .error {
  color: #f00;
  margin-top: 1rem;
  display: inline-block;
  font-size: 12px;
}

/* Submit button */
.hs-form .hs-submit .actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: end;
}

form input[type=submit],
form .hs-button {
  cursor: pointer;
  background: var(--orange);
  color: var(--white);
  border: 0;
}

/* 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;
}
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  display: none;
  height: 100%;
  left: 0;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: var(--bs-modal-zindex)
}

.modal-dialog {
  margin: var(--bs-modal-margin);
  pointer-events: none;
  position: relative;
  width: auto
}

.modal.fade .modal-dialog {
  transform: translateY(-50px);
  transition: transform .3s ease-out
}

@media (prefers-reduced-motion:reduce) {
  .modal.fade .modal-dialog {
    transition: none
  }
}

.modal.show .modal-dialog {
  transform: none
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02)
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin)*2)
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto
}

.modal-dialog-centered {
  align-items: center;
  display: flex;
  min-height: calc(100% - var(--bs-modal-margin)*2)
}

.modal-content {
  background-clip: padding-box;
  background-color: var(--bs-modal-bg);
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  color: var(--bs-modal-color);
  display: flex;
  flex-direction: column;
  outline: 0;
  pointer-events: auto;
  position: relative;
  width: 100%
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  background-color: var(--bs-backdrop-bg);
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: var(--bs-backdrop-zindex)
}

.modal-backdrop.fade {
  opacity: 0
}

.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity)
}

.modal-header {
  align-items: center;
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding)
}

.modal-header .btn-close {
  margin: calc(var(--bs-modal-header-padding-y)*-.5) calc(var(--bs-modal-header-padding-x)*-.5) calc(var(--bs-modal-header-padding-y)*-.5) auto;
  padding: calc(var(--bs-modal-header-padding-y)*.5) calc(var(--bs-modal-header-padding-x)*.5)
}

.modal-title {
  line-height: var(--bs-modal-title-line-height);
  margin-bottom: 0
}

.modal-body {
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
  position: relative
}

.modal-footer {
  align-items: center;
  background-color: var(--bs-modal-footer-bg);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap)*.5)
}

.modal-footer>* {
  margin: calc(var(--bs-modal-footer-gap)*.5)
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin:1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15)
  }

  .modal-dialog {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--bs-modal-width)
  }

  .modal-sm {
    --bs-modal-width: 300px
  }
}

@media (min-width: 992px) {
  .modal-lg,.modal-xl {
    --bs-modal-width:800px
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width:1140px
  }
}

.modal-fullscreen {
  height: 100%;
  margin: 0;
  max-width: none;
  width: 100vw
}

.modal-fullscreen .modal-content {
  border: 0;
  border-radius: 0;
  height: 100%
}

.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header {
  border-radius: 0
}

.modal-fullscreen .modal-body {
  overflow-y: auto
}

/* MODAL */
.modal .modal-content {
  border: 0;
  border-radius: 0;
  outline: 0;
}

.modal .modal-header {
  border-bottom: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.modal .modal-title {
  color: #ff4800;
  font-size: 17px;
  line-height: 30px;
  font-weight: 300;
}

.modal .modal-header .close {
  opacity: 1;
  font-size: 30px;
  outline: 0;
}

.modal .modal-dialog {
  max-width: 680px;
}

@media (min-width: 1200px){
  .modal .modal-dialog {
    max-width: 980px;
  }
}

.modal .modal-header {
  border: 0;
}
.modal .modal-header .close {
  font-size: 30px;
  display: block;
  position: absolute;
  right: 8px;
  z-index: 5;
  top: 0;
  outline: none;
  border: 0;
  background: none;
  font-size: 30px;
  font-weight: 700;
  cursor: pointer
}

/* Quote */

.internal--quote {
	display: flex;
	gap: 1rem;
	flex-direction: column;
	padding: 1.5rem;
	background-color: #F5F6FA;
	font-style: italic;
	border-radius: 16px;
}

.internal--quote {
	font-style: normal;
	font-weight: bold;
	margin-left: 1rem;
}
.__high_contrast {
  filter: grayscale(1);
}

.__invert {
  filter: invert(100%);
}

.__zoom {
  zoom: 1.05;
}

.fade {
  transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
  .fade {
    transition: none
  }
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.fixed-top {
  top: 0
}

.fixed-bottom,.fixed-top {
  left: 0;
  position: fixed;
  right: 0;
  z-index: 1030
}

.fixed-bottom {
  bottom: 0
}

.ratio {
  position: relative;
  width: 100%
}

.ratio:before {
  content: "";
  display: block;
  padding-top: var(--bs-aspect-ratio)
}

.ratio>* {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%
}

.fade {
  transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
  .fade {
    transition: none
  }
}

iframe {
  border: 0;
}

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

img, svg {
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  /*   transition: all .3s ease-out; */
}

.nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center {
  position: relative;
}

.dropdown-menu {
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.175);
  border-radius: 0.375rem;
  color: #212529;
  display: none;
  font-size: 1rem;
  list-style: none;
  margin: 0;
  min-width: 10rem;
  padding: 0.5rem 0;
  position: absolute;
  text-align: left;
  z-index: 1000;
}

.collapse:not(.show) {
  display: none;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .justify-content-md-between {
    justify-content: space-between!important;
  }

  .mx-md-auto {
    margin-left: auto!important;
    margin-right: auto!important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .justify-content-lg-between {
    justify-content: space-between!important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-between {
  justify-content: space-between!important
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

@media (max-width: 1199.98px) {
  .column-reverse {
    flex-direction: column-reverse;
  }
}
.header {
  padding: 16px;
}

.header .header-content {
  padding: 16px 0;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.30) 0%, rgba(231, 243, 246, 0.30) 100%);
  box-shadow: 0px 14px 44px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(7px);
}

.header .header-content-lp {
  padding: 16px 0;
}

.header .container {
  max-width: 100%;
  padding: 0 24px;
}

.header .header-toggle, .menu__submenu {
  display: none
}

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

.header-main-nav .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.header-main-nav .menu__item--depth-1 > .menu__link,
.menu__submenu .menu__link {
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; 
  padding: 11px 20px;
  transition: all 0.3s ease;
  border-radius: 14px;
  display: block
}

.header-toggle {
  border: none;
  height: 30px;
  padding: 0;
  position: absolute;
  width: 40px;
  right: 20px;
  top: 19px;
  background: transparent;
}

.header-toggle span {
  background-color: var(--white);
  position: absolute;
  top: 8px;
  left: 0;
  display: block;
  height: 2px;
  border-radius: 0;
  width: 30px;
  margin: 5px;
  transition: all .3s ease-in-out;
}

.header-toggle span:first-child {
  top: 0
}

.header-toggle span:last-child {
  top: 16px;
}

.header-toggle.open span {
  opacity: 0;
  left: 0;
  transition: background .2s,top .2s,left .2s,opacity .2s,transform .2s .25s
}

.header-toggle.open span:first-child {
  left: 0;
  opacity: 1;
  top: 10px;
  transform: rotate(45deg);
}

.header-toggle.open span:last-child {
  left: 0;
  opacity: 1;
  top: 10px;
  transform: rotate(-45deg);
}

.header-collapse { display: none }

@media (min-width: 1200px) {
  .header.fx {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 99;
    transition: all 0.3s ease;
  }

  .header .header-content {
    transition: height 0.15s ease-out;
    transition-behavior: allow-discrete;
    height: auto;
  }

  .header .header-content.expanded {
    height: 125px;
  }

  .header-collapse {
    flex: 1;
    height: auto;
    left: unset;
    position: relative;
    top: unset;
    width: auto;
    display: block;
  }

  .header .container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-main-nav  {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-main-nav .nav-list {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    width: 86%;
    justify-content: center;
  }

  .menu__submenu {
    left: 0;
    position: absolute;
    top: auto;
    width: 100%;
    right: 0;
    margin: 0 auto;
    justify-content: center;
    padding: 12px 0;
    transition: all 0.2s ease;
  }

  .menu__item--has-submenu:hover .menu__submenu {
    display: flex;
  }

  .header-main-nav .menu__item--depth-1:hover > .menu__link {
    background-color: var(--white);
    color: var(--blue);
  }

}

@media (min-width: 1600px) {
  .header {
    padding: 44px 51px;
  }
}

/* mobile */
@media (max-width: 1199.98px) {
  .header .header-content {
    border-radius: 16px;
    position: relative;
  }

  .header .header-toggle,
  .header-collapse.show {
    display: block
  }

  .header-main-nav .nav-list {
    margin-top: 16px;
  }

  .menu__submenu {
    padding: 0 16px;
  }

  .header .btn {
    display: flex;
    margin-top: 32px;
  }

  .header-main-nav .menu__item--depth-1>.menu__link, 
  .menu__submenu .menu__link {
    padding: 11px 0;
  }

  .header-main-nav .menu__item--has-submenu>.menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-main-nav .menu__item--has-submenu>.menu__link:after {
    content: '';
    background: url('https://20455210.fs1.hubspotusercontent-na1.net/hubfs/20455210/CDX-Website-2025/core/arrow-menu-mob.svg') no-repeat top center;
    height: 14px;
    width: 10px;
    display: block;
    margin-right: 11px;
  }
  
  .header-main-nav .menu__item--has-submenu>.menu__link.open:after {
    transform: rotate(180deg);
  }

}
.footer {
  background-color: var(--orange);
  padding: 16px;
  color: var(--steel);
}

.footer-container {
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  border: 2px solid var(--white);
  max-width: 100%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 35px 24px 20px
}

.footer-awards {
  display: flex;
  gap: 1rem;
}

.award {
  background-color: var(--white);
  border-radius: 50%;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
}
.footer-container-lp {
  padding:10px;
}

@media (min-width: 768px) {
  .footer-main {
    padding: 35px 24px;
    border-top: 2px solid var(--white);
  }

  .footer-grid {
    display: grid;
    gap: 2rem;
  }

  .footer-group-menu {
    display: grid;
    gap: 2rem;
    justify-content: space-between;
    grid-template-columns: auto auto auto;
  }

  .footer-group-menu .footer-col { min-width: 210px }

  .footer-group-menu .footer-col div + div {
    margin-top: 100px 
  }
}

@media (min-width: 1200px) {
  .footer-grid {
    grid-template-columns: 528px auto;
  }
}

@media (min-width: 1600px) {
  .footer {
    padding: 54px 51px;
  }

  .footer-top {
    padding: 50px 70px 40px
  }

  .footer-main {
    padding: 50px 70px
  }

  .footer-group-menu {
    max-width: 80%;
    margin-left: auto
  }
}

.footer-col h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 20px;
}

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

.footer-col ul li {
  margin: 0.4rem 0;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  display: inline-block;
  padding: 5px 0
}

.footer-col ul li .title {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin: 0
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-col.newsletter h4 {
  margin-bottom: 5px;
}

.footer-col.newsletter p {
  margin: 0;
}

.email-form [data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content {
  padding: 0;
  margin: 30px 0;
}

.email-form [data-hsfc-id=Renderer] .hsfc-NavigationRow {
  margin-top: 0;
}

.email-form [data-hsfc-id=Renderer] .hsfc-TextInput {
  padding: 8px 20px;
  border-radius: 14px;
  border: none;
  background: var(--white);
  max-width: 420px;
}

.email-form [data-hsfc-id=Renderer] .hsfc-TextInput::placeholder {
  color: var(--black);
  font-family: "DM Sans";
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
}

.email-form [data-hsfc-id=Renderer] .hsfc-FieldLabel { display: none }

.email-form [data-hsfc-id=Renderer] .hsfc-NavigationRow__Buttons:has(>*:only-child) {
  justify-content: start;
}

.email-form [data-hsfc-id=Renderer] .hsfc-Button {
  padding: 8px 20px;
  border: none;
  border-radius: 14px;
  background-color: var(--blue);
  color: var(--white);
  font-weight: bold;
  cursor: pointer;
  width: fit-content;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; 
}

.email-form [data-hsfc-id=Renderer] .hsfc-Button:not([disabled]):hover {
  transform: none;
  filter: brightness(110%);
}

.email-form [data-hsfc-id=Renderer] .hsfc-NavigationRow__Alerts,
.email-form [data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content>*:not(:last-child):has(>*:not(div[style*="display: none"],
.email-form [style*="display:none"])):has(>*:not(input[type=hidden])) {
  margin-bottom: 10px;
}

.email-form [data-hsfc-id=Renderer] .hsfc-ErrorAlert {
  font-size: 12px;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 1.4rem;
}

.footer-bottom p {
  color: var(--steel);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0
}

.footer-bottom a {
  text-decoration: none;
  color: var(--steel);
}

.footer .footer-toggle {
  border: none;
  height: 30px;
  padding: 0;
  position: relative;
  width: 40px;
  background: transparent;
}

.footer .footer-toggle span {
  background-color: var(--orange);
  position: absolute;
  top: 8px;
  left: 0;
  display: block;
  height: 2px;
  border-radius: 0;
  width: 30px;
  margin: 5px;
  transition: all .3s ease-in-out;
}

.footer .footer-toggle span:first-child {
  top: 0
}

.footer .footer-toggle span:last-child {
  top: 16px;
}

.footer .footer-toggle.open span {
  opacity: 0;
  left: 0;
  transition: background .2s,top .2s,left .2s,opacity .2s,transform .2s .25s
}

.footer .footer-toggle.open span:first-child {
  left: 0;
  opacity: 1;
  top: 10px;
  transform: rotate(45deg);
}

.footer .footer-toggle.open span:last-child {
  left: 0;
  opacity: 1;
  top: 10px;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .footer { padding: 0 }

  .footer-collapse {
    padding: 32px;
    display: none;
  }

  .footer-collapse.show { display: block; }

  .footer-main {
    flex-direction: column;
  }

  .footer-top {
    padding: 16px;
    flex-direction: row;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.22);
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0 0 50px
  }

  .footer-top .footer-logo {
    max-width: 149px;
  }

  .footer .footer-top .footer-toggle span {
    background-color: var(--steel);
  }

  .footer-group-menu .footer-col div {
    border-bottom: 1px solid var(--white);
    margin-bottom: 16px;
  }

  .footer-group-menu .footer-col ul {
    margin-bottom: 10px;
  }

  .btn-tertiary {
    display: flex;
    margin: 45px 0
  }

  .newsletter {
    border-top: 1px solid #fff;
    padding-top: 32px;
  }

  .email-form [data-hsfc-id=Renderer] .hsfc-Button {
    width: 100%;
  }

  .footer-col h4 {
    margin-bottom: 0px;
  }

  .footer-awards {
    justify-content: space-between;
    margin-top: 32px;
  }

  .footer-col {
    min-width: 100%;
  }

  .email-form button {
    width: 100%;
    text-align: center;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .footer-bottom {
    background: var(--black);
    display: flex;
    padding: 24px 32px;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    color: var(--white);
    font-size: 12px;
    line-height: 16px; 
    letter-spacing: 0.24px;

  }

  .footer-bottom p a { 
    display: block;
    color: var(--white);
    margin: 14px 0 0;
  }

}
.dnd-page .body-container-wrapper > .container-fluid {
  padding: 0
}

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

@media (max-width: 767.98px) { 
  .dnd-page .dnd-section {
    padding: 80px 32px !important
  }

  .dnd-page .dnd-section[class*="force-full-width-section"] {
    padding: 80px 0 !important
  }

  .dnd-page #main-content .widget-type-space { display: none !important }

}

@media (min-width: 768px) and (max-width: 1300px) { 
  /*   .dnd-page .dnd-section:not(.row-number-1) {
  padding-left: 32px !important;
  padding-right: 32px !important
} */
  .dnd-page .dnd-section {
    padding-left: 32px !important;
    padding-right: 32px !important
  }
}

@media (min-width: 1200px) {
  .dnd-page .dnd-section > .row-fluid {
    --column-gap: 5.83%;
  }
}


body {
  background: var(--black) url('https://20455210.fs1.hubspotusercontent-na1.net/hubfs/20455210/CDX-Website-2025/core/bg-blue-dark.png') no-repeat top center;
}

/*
* cdx-card
*/
.cdx-card {
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--orange);
  position: relative;
  overflow: hidden;
  z-index: 2
}

.cdx-card .content {
  padding: 32px
}

.cdx-card .list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px
}

.cdx-card .list li {
  color: var(--blue);
  font-family: 'Jost';
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}

.cdx-card .image {
  display: flex;
  min-height: 100%;
}

.cdx-card .image a {
  display: block;
  width: 100%;
}

.cdx-card .image img {
  object-fit: cover;
  min-height: 100%;
  width: 100%;
}


@media (min-width: 768px) {
  .cdx-card .grid {
    display: grid;
    grid-template-columns: 500px auto;
  }

  .cdx-card.small .grid {
    grid-template-columns: 336px auto;
  }

  .cdx-card .content {
    padding: 75px 84px
  }

  .cdx-card .text {
    margin: 30px 0
  }
}


@media (max-width: 767px) {
  .cdx-card {
    margin-bottom: 32px;
  }

  .cdx-card .image {
    max-height: 120px;
  }

  .cdx-card .list {
    margin: 0 0 24px;
  }
}

/* 
* tabs 
*/
.tabs-horizontal {
  position: relative
}

.tabs-horizontal .nav.nav-tabs {
  display: none;
}

.tabs-horizontal.tab-align-left .nav.nav-tabs { margin: 0; }
.tabs-horizontal.tab-align-center .nav.nav-tabs { margin: 0 auto; }
.tabs-horizontal.tab-align-right .nav.nav-tabs { margin-left: auto; }

.tabs-horizontal .nav.nav-tabs {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 30px;
  background: #FFEAC2;
  list-style: none;
  width: fit-content;
  gap: 15px;
  margin: 0 auto;
}

.tabs-horizontal .nav.nav-tabs li:last-of-type {
  border: 0;
  margin: 0;
  padding: 0;
}

.tabs-horizontal .nav.nav-tabs li .nav-link {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  border: 0;
  border-radius: 0;
  text-transform: none;
  display: flex;
  padding: 10px 30px;
  background: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-radius: 14px;
  justify-content: center;
}
.tabs-horizontal .nav.nav-tabs li .nav-link:hover, .tabs-horizontal .nav.nav-tabs li .nav-link.active {
  background: var(--orange);
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.tabs-horizontal .load-more {
  display: flex;
  justify-content: center;
  width: 100%;
}

.tabs-horizontal .load-more button { cursor: pointer }

@media (min-width: 1200px) {
  .tabs-horizontal .tab-content {
    margin: 100px 0 0;
  }

  .tabs-horizontal .nav.nav-tabs li .nav-link {
    padding: 10px 50px;
    min-width: 200px
  }

  .tabs-horizontal .load-more {
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #fff 60.5%);
    padding: 300px 0 100px;
    position: absolute;
    bottom: 0;
    z-index: 3
  }

}

@media (max-width: 1199.98px) {
  .tabs-horizontal .tab-content {
    margin: 36px 0 0;
  }
}