/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

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

*, *: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 {
  -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: 87.5%;
}

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



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

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-right: -24px;
  row-gap: 32px;
}

@media (max-width: 767px) {
  .row {
    row-gap: 24px;
  }
}

.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.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-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto {
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  width: 100%
}

.col-1 {
  width: 8.333%
}

.col-2 {
  width: 16.66666667%
}

.col-3 {
  width: 25%
}

.col-4 {
  width: 33.333%
}

.col-5 {
  width: 41.66666667%
}

.col-6 {
  width: 50%
}

.col-7 {
  width: 58.33333333%
}

.col-8 {
  width: 66.66666667%
}

.col-9 {
  width: 75%
}

.col-10 {
  width: 83.33333333%
}

.col-11 {
  width: 91.66666667%
}

.col-12 {
  width: 100%
}

.offset-1 {
  margin-left: 8.333%
}

.offset-2 {
  margin-left: 16.66666667%
}

.offset-3 {
  margin-left: 25%
}

.offset-4 {
  margin-left: 33.333%
}

.offset-5 {
  margin-left: 41.66666667%
}

.offset-6 {
  margin-left: 50%
}

.offset-7 {
  margin-left: 58.33333333%
}

.offset-8 {
  margin-left: 66.66666667%
}

.offset-9 {
  margin-left: 75%
}

.offset-10 {
  margin-left: 83.33333333%
}

.offset-11 {
  margin-left: 91.66666667%
}

.offset-12 {
  margin-left: 100%
}

@media(min-width: 576px) {
  .col-sm-1 {
    width:8.333%
  }

  .col-sm-2 {
    width: 16.66666667%
  }

  .col-sm-3 {
    width: 25%
  }

  .col-sm-4 {
    width: 33.333%
  }

  .col-sm-5 {
    width: 41.66666667%
  }

  .col-sm-6 {
    width: 50%
  }

  .col-sm-7 {
    width: 58.33333333%
  }

  .col-sm-8 {
    width: 66.66666667%
  }

  .col-sm-9 {
    width: 75%
  }

  .col-sm-10 {
    width: 83.33333333%
  }

  .col-sm-11 {
    width: 91.66666667%
  }

  .col-sm-12 {
    width: 100%
  }
}

@media(min-width: 768px) {
  .col-md-1 {
    width:8.333%
  }

  .col-md-2 {
    width: 16.66666667%
  }

  .col-md-3 {
    width: 25%
  }

  .col-md-4 {
    width: 33.333%
  }

  .col-md-5 {
    width: 41.66666667%
  }

  .col-md-6 {
    width: 50%
  }

  .col-md-7 {
    width: 58.33333333%
  }

  .col-md-8 {
    width: 66.66666667%
  }

  .col-md-9 {
    width: 75%
  }

  .col-md-10 {
    width: 83.33333333%
  }

  .col-md-11 {
    width: 91.66666667%
  }

  .col-md-12 {
    width: 100%
  }

  .offset-md-1 {
    margin-left: 8.333%
  }

  .offset-md-2 {
    margin-left: 16.66666667%
  }

  .offset-md-3 {
    margin-left: 25%
  }

  .offset-md-4 {
    margin-left: 33.333%
  }

  .offset-md-5 {
    margin-left: 41.66666667%
  }

  .offset-md-6 {
    margin-left: 50%
  }

  .offset-md-7 {
    margin-left: 58.33333333%
  }

  .offset-md-8 {
    margin-left: 66.66666667%
  }

  .offset-md-9 {
    margin-left: 75%
  }

  .offset-md-10 {
    margin-left: 83.33333333%
  }

  .offset-md-11 {
    margin-left: 91.66666667%
  }

  .offset-md-12 {
    margin-left: 100%
  }

  .row-20 {
    margin: 0 -20px
  }

  .row-20>div {
    padding-left: 20px;
    padding-right: 20px
  }
}

@media(min-width: 992px) {
  .col-lg-1 {
    width:8.333%
  }

  .col-lg-2 {
    width: 16.66666667%
  }

  .col-lg-3 {
    width: 25%
  }

  .col-lg-4 {
    width: 33.333%
  }

  .col-lg-5 {
    width: 41.66666667%
  }

  .col-lg-6 {
    width: 50%
  }

  .col-lg-7 {
    width: 58.33333333%
  }

  .col-lg-8 {
    width: 66.66666667%
  }

  .col-lg-9 {
    width: 75%
  }

  .col-lg-10 {
    width: 83.33333333%
  }

  .col-lg-11 {
    width: 91.66666667%
  }

  .col-lg-12 {
    width: 100%
  }

  .offset-lg-1 {
    margin-left: 8.333%
  }

  .offset-lg-2 {
    margin-left: 16.66666667%
  }

  .offset-lg-3 {
    margin-left: 25%
  }

  .offset-lg-4 {
    margin-left: 33.333%
  }

  .offset-lg-5 {
    margin-left: 41.66666667%
  }

  .offset-lg-6 {
    margin-left: 50%
  }

  .offset-lg-7 {
    margin-left: 58.33333333%
  }

  .offset-lg-8 {
    margin-left: 66.66666667%
  }

  .offset-lg-9 {
    margin-left: 75%
  }

  .offset-lg-10 {
    margin-left: 83.33333333%
  }

  .offset-lg-11 {
    margin-left: 91.66666667%
  }

  .offset-lg-12 {
    margin-left: 100%
  }
}

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

  .col-xl-2 {
    width: 16.66666667%
  }

  .col-xl-3 {
    width: 25%
  }

  .col-xl-4 {
    width: 33.333%
  }

  .col-xl-5 {
    width: 41.66666667%
  }

  .col-xl-6 {
    width: 50%
  }

  .col-xl-7 {
    width: 58.33333333%
  }

  .col-xl-8 {
    width: 66.66666667%
  }

  .col-xl-9 {
    width: 75%
  }

  .col-xl-10 {
    width: 83.33333333%
  }

  .col-xl-11 {
    width: 91.66666667%
  }

  .col-xl-12 {
    width: 100%
  }

  .offset-xl-1 {
    margin-left: 8.333%
  }

  .offset-xl-2 {
    margin-left: 16.66666667%
  }

  .offset-xl-3 {
    margin-left: 25%
  }

  .offset-xl-4 {
    margin-left: 33.333%
  }

  .offset-xl-5 {
    margin-left: 41.66666667%
  }

  .offset-xl-6 {
    margin-left: 50%
  }

  .offset-xl-7 {
    margin-left: 58.33333333%
  }

  .offset-xl-8 {
    margin-left: 66.66666667%
  }

  .offset-xl-9 {
    margin-left: 75%
  }

  .offset-xl-10 {
    margin-left: 83.33333333%
  }

  .offset-xl-11 {
    margin-left: 91.66666667%
  }

  .offset-xl-12 {
    margin-left: 100%
  }
}

@media (min-width: 1325px) {
  .row-gap-52 {
    margin:0 -52px
  }

  .row-gap-52>div {
    padding: 0 52px
  }

  .row-gap-48 {
    margin: 0 -48px
  }

  .row-gap-48>div {
    padding: 0 48px
  }
}
.content-wrapper,
.page-center {
  margin: 0 auto;
  padding: 0 24px;
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}
.dnd-section .dnd-column {
  padding: 0 24px;
}

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.5;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  margin: 0 0 1.5rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  line-height: 1.12;
  margin: 0 0 1.5rem;
}
h1, .h1 {
  line-height: 1.12;
}
h5, .h5 {
  line-height: 1.5;
  letter-spacing: 0.105px;
}
h6, .h6 {
  letter-spacing: 0.095px;
}
/* Lists */

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

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 {
  color: var(--primary);
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
  padding: 2rem 0;
  margin: 0 0 1.5rem;
  font-size: 1.3125rem;
  font-weight: 700;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  text-decoration: none !important;
}

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

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

.hs-form-field {
  margin-bottom: 16px;
}

/* 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: 16px;
  line-height: 1.5;
  padding: 12px 24px 12px 16px;
  min-height: 58px;
  width: 100%;
  outline: none;
}

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: 24px;
}

input[type=checkbox] {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

@media (max-width: 767px) {
  form input[type=checkbox],
  form input[type=radio] {
    margin-right: 16px;
  }
  input[type=checkbox] {
    width: 20px;
    height: 20px;    
  }

}

/* .hs-form-booleancheckbox a:not(:hover) {
  color: inherit;
} */

.hs-fieldtype-select .input {
  position: relative;
}
form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.hs-fieldtype-select .input:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10L12.0008 14.58L17 10' stroke='%230A090B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;  
  content: "";
  height: 24px;
  pointer-events: none;
  position: absolute;
  right: 24px;
  transform: translateY(-50%);
  width: 24px;
  top: 50%;
}


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

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


input[type="file" i]::-webkit-file-upload-button {
  background-color: #fff;
  border: 1px solid #aba9a9;
  border-radius: 8px;
  height: 30px;
  width: 88px;
  font-weight: 700;
  line-height: normal;
  font-family: "Plus Jakarta Sans";
  font-size: 12px;
  color: #686463;
  font-style: normal;
  margin-right: 10px;
}

/* 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-msgs label {
  color: #f2545b !important;
  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;
}


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

/* 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;
}
header.header {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
.body-container-wrapper {
  padding-top: 88px;
}
/* Header DND sections */

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

/* Header container */
.header .content-wrapper {
  max-width: 1440px;
  padding-left: 43.5px;
  padding-right: 43.5px;
}
.header__container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header_left_wrap {
  display: flex;
  align-items: center;
  gap: 115px;
  flex-grow: 1;
  padding: 22px 0px;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
}
.header__logo img {
  max-width: 100%;
}
.header__logo a {
  display: flex;
  align-items: center;
}
/* Navigation */
.header__navigation {
  display: flex;
  flex-grow: 1;
  position: relative;
  justify-content: space-between;
  align-items: baseline;
}
.mega-menu-wrapper {
  display: none;
}
.custom-menu-primary ul.menu__wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
.custom-menu-primary ul.menu__wrapper > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  padding: 8px 0px;
  letter-spacing: 0.095px;
  text-decoration: none;
}
.custom-menu-primary ul.menu__wrapper > li > a .icon {
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  transition: .5s;
}

.custom-menu-primary ul.menu__wrapper>li.child-open>a .icon {
  transform: rotate(180deg);
}

.custom-menu-primary ul.menu__wrapper .submenu--level-2 {
  /* display: none; */
  position: absolute;
  background-color: #fff;
  display: flex;
  padding: 24px 32px;
  align-items: flex-start;
  gap: 56px;
  border-radius: 24px;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.21);
  min-width: 806px;
  left: 0;
  top: calc(100% + 24px);
  opacity: 0;
  visibility: hidden;
}
.custom-menu-primary ul.menu__wrapper>li:hover .submenu--level-2 {
  opacity: 1;
  visibility: visible;
}
.custom-menu-primary ul.menu__wrapper .submenu--level-2:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 14px;
  top: -12px;
  background: transparent;
}
.custom-menu-primary ul.menu__wrapper .submenu--level-2 > li {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  max-width: calc((100% - 112px) / 3);
}

.custom-menu-primary ul.menu__wrapper .submenu--level-2 > li > a {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.custom-menu-primary ul.menu__wrapper .submenu--level-2 .icon-wrapper {
  display: flex;
  align-items: center;
  height: 40px;
  width: 40px;
}

.custom-menu-primary ul.menu__wrapper .submenu--level-2 > li .menu-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.custom-menu-primary ul.menu__wrapper .submenu--level-2 > li .desc {
  font-size: 14px;
}
.header-cta .hs-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  line-height: normal;
  padding: 14px 40px;
}

.hdr_search .hdr_search_container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px -1px rgba(6, 24, 44, .2);
  opacity: 0;
  padding: 16px;
  position: absolute;
  right: 24px;
  top: calc(100% + 18px);
  transform: scaleY(0);
  transform-origin: top;
  transition: all .3s ease;
  width: 400px;
}


.hdr_search .hdr_search_container form {
  -webkit-box-shadow: 0px 2px 5px -1px rgba(6, 24, 44, .2);;
  box-shadow: 0px 2px 5px -1px rgba(6, 24, 44, .2);;
}

.hdr_search_container .hs-search-field__input {
  padding: 12px 55px 12px 16px;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  border: 1px solid #009ac4;
  border-radius: 4px;
  min-height: 44px;
  height: 44px;
}

.hdr_search_container button {
  align-items: center;
  border-radius: 0;
  display: flex;
  font-size: 0;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
}
.hdr_search_container button:hover {
  border-radius: 0;
  background: #e94834;
}
.hdr_search_icon {
  cursor: pointer;
  position: relative;
  top: -2px;
}

.hdr_search_icon svg {
  vertical-align: middle;
  width: 25px;
  height: 24px;
}

.hdr_search_icon svg path {
  fill: #00677f;
}

.hdr_search.search-open .hdr_search_container {
  opacity: 1;
  transform: scaleY(1);
}

.hdr_search_container button svg {
  height: 16px !important;
  fill: #f9f9f9;
}

.hdr_search .hs-search-field--open .hs-search-field__suggestions {
  border: 0;
}

.hs-search-field--open .hs-search-field__suggestions li a {
  padding: 5px;
  color: #00677F;
}

.hs-search-field--open .hs-search-field__suggestions li#results-for {
  padding: 15px 5px 10px 5px;
  color: #00677F;
}

.hs-search-field--open .hs-search-field__suggestions li a {
  background: unset;
}
body:has(.go3128134379) header.header {
    top: 60px;
}

@media (min-width: 992px) {
  .mobile-overlay, .mobile-trigger,.child_menu_trigger, .header_mobile__navigation {
    display: none;
  }
  .hdr_search {
    position: relative;
  }
  .hdr_search .hdr_search_container {
    right: 0;
    top: calc(100% + 26px);
  }
  .custom-menu-primary ul.menu__wrapper>li:before {
    content: '';
    display: table;
    position: absolute;
    width: 120px;
    height: 65px;
    background: transparent;
    cursor: pointer;
  }
  .custom-menu-primary ul.menu__wrapper>li>a {
    z-index: 1;
    position: relative;
  }
}

@media (max-width: 1199px) {
  .header_left_wrap {
    gap: 40px;
  } 
  .custom-menu-primary ul.menu__wrapper {
    gap: 20px;
  }
  .custom-menu-primary ul.menu__wrapper>li>a {
    font-size: 16px;
  }
  .custom-menu-primary ul.menu__wrapper .submenu--level-2 {
    left: -30%;
    min-width: 750px;
  }
}

@media (max-width: 991px) {
  .header-cta.for-mobile {
    padding-top: 32px;
  }
  .header-cta.for-desktop {
    display: none;
  }
  .header__navigation .custom-menu-primary {
    display: none;
  }
  .mobile-trigger {
    cursor: pointer;
  }
  .header .content-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
  .header_mobile__navigation {
    position: fixed;
    display: flex;
    align-items: flex-start;
    background: #fff;
    flex-direction: column;
    flex-wrap: nowrap;
    height: calc(100% - 88px);
    overflow-y: auto;
    padding: 40px 24px;
    right: 0;
    top: 88px;
    transform: translateX(100%);
    transition: all .3s ease;
    width: 60%;
    z-index: 10;
    overflow-x: hidden;
  }
  .mobile-open .header_mobile__navigation{
    transform: translateX(0);
  }
  .custom-menu-primary ul.menu__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .mobile-overlay {
    background: rgba(0,103,127,.75);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 88px;
    transition: all .3s ease;
    visibility: hidden;
    width: 100%;
    z-index: 9
  }

  .mobile-open .mobile-overlay {
    opacity: 1;
    visibility: visible
  }
  .child_menu_trigger {
    cursor: pointer;
    height: 25px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  /*   .header_mobile__navigation > div {
  width: 100%;
} */

  .custom-menu-primary ul.menu__wrapper>li>a {
    position: relative;
    padding: 0;
  }

  .custom-menu-primary ul.menu__wrapper>li {
    width: 100%;
    position: relative;
  }
  .custom-menu-primary ul.menu__wrapper .submenu--level-2 {
    position: static;
    display: flex;
    padding: 0;
    flex-direction: column;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    border-radius: 0px;
    box-shadow: none;
    gap: 20px;
    padding-left: 15px;
    height: 0;
    overflow: hidden;
    transition: all .35s ease;
  }

  .custom-menu-primary ul.menu__wrapper .submenu--level-2 > li {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .custom-menu-primary ul.menu__wrapper .submenu--level-2 > li:first-child {
    margin-top: 24px;
  }
}

@media (max-width:767px) {
  .hdr_search .hdr_search_container {
    width: 320px;
  }
}

@media (max-width:479px) {
  .hdr_search .hdr_search_container {
    width: 250px;
  }
  .header_mobile__navigation {
   width: 80%; 
  }
}

/* @media (max-width: 575px) {
.header-cta .hs-button {
padding: 8px 10px;
font-size: 12px;
}
} */
.cstm_footer {
  padding: 24px 0;
}
.ftr_logo {
  margin-bottom: 29px;
}
.ftr_logo img {
  max-width: 42px;
}
.ftr_copyright {
  padding-top: 34px;
  padding-bottom: 11px;
  font-size: 12px;
  line-height: normal;
}
.ftr_copyright p:last-child {
  margin-bottom: 0;
  font-weight: 700;
}
.social_icons {
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
}
.social_icons a:not(:last-child) {
  margin-right: 24px;
}
.footer_col h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 44px;
  padding-top: 15px;
}
.ftr_menu {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 27px 34px 48px;
  row-gap: 34px;
}
.ftr_menu .hs-menu-wrapper ul {
  display: block;
}
.ftr_menu .hs-menu-wrapper ul li:not(:last-child) {
  margin-bottom: 16px;
}
.ftr_menu .hs-menu-wrapper ul li a {
  font-weight: 700;
  line-height: normal;
  font-size: 12px;
  text-decoration: none; 
}
.footer_col {
  padding: 0 20px;
  width: 25%;
}
.cstm_footer .ftr_menu h5 span {
  color: inherit;
}
.ftr_menu .hs-menu-wrapper ul li a[href="javascript:;"] {
  pointer-events: none;
}

@media (max-width: 991px) {
  .footer_col {
    width: 50%;
  }
  .footer_col h5 {
    margin-bottom: 34px;
  }
}

@media (max-width: 767px) {
  .footer_col {
    width: 100%;
  }
  .ftr_copyright {
    text-align: left;
  }
  .row.ftr_menu {
    padding-left: 4px;
    padding-right: 4px;
  }
  .ftr_menu {
    padding-left: 24px;
    padding-right: 24px;
  }
}
/* 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;
}

@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;
}

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

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

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

@media (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;
  }
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hs-button img {
  margin-right: .5rem;
}
.hs-button.btn_none {
  background: transparent !important;
  border: none !important;
  color: inherit;
  padding: 0 !important;
}
.text-purple {
  color: #8B448D !important;
}
h2 a,
h5 a {
  font: inherit;
}
.arrow-btn {
  font-weight: 700;
}
.arrow-btn svg {
  vertical-align: middle;
  margin-left: 0;
  transition: all 0.3s ease;
  width: 20px;
}
.g_card:hover .arrow-btn svg {
  margin-left: 10px;
}
.arrow-btn svg path {
  stroke: currentColor;
  color: inherit;
}
.row-gap-24 {
  margin-left: -12px;
  margin-right: -12px;
}
.row-gap-24 > div {
  padding-left: 12px;
  padding-right: 12px;
}
.hs_pretitle {
  color: #8B448D;
}
.text-black {
  color: #000; 
}
.hs_recaptcha .grecaptcha-badge {
  margin: 0 !important;
}

@media (max-width: 767px) {
  .hidden-phone {
    display: none !important;
  }
  .heading br,
  .description br {
    display: none;
  }


}

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