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



/* 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));
    }
  
}
.dnd-section > .row-fluid,
.page-center,
.content-wrapper {
  margin:0 auto;
  padding: 0 20px;
  width:100%;
}
.page-center.full_width,
.content-wrapper.full_width{
  width:100%;
  max-width:100%;
}
.dnd-section[class*="force-full-width-section"]>.row-fluid .dnd-column {
  padding: 0;
}

.dnd-section[class*="force-full-width-section"] > .row-fluid {
  padding:0;
}

.dnd-section[class*="force-full-width-section"]{
  padding:0;
}

.dnd-section .dnd-column {
  padding: 0 15px;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
  
}

/* Elements
Base HTML 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.6;
  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;
}

th{
  text-align:left; 
}
/* Paragraphs */

p {
  margin: 0 0 15px;
}

p:last-child{
  margin-bottom: 0;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration:none;
  transition:all 0.3s ease;
}
/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 32px;
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */
.quote_wrap {
  margin-top: 28px;
}

blockquote {
  line-height: 1.5;
  padding: 20px;
  width: 100%;
  border-left: 4px solid var(--primary_color);
  border-radius: 0 8px 8px 0;
  margin: 0;
  background: rgba(110, 158, 150, 0.08);
  font-style: italic;
}

.eyebrow_text{
  margin-bottom:8px;
}
@media(max-width:767px){
  ol {
    padding-left: 20px;
  }
  ul {
    padding-left: 20px;
  }
}
/* Horizontal rules */

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

/* Image alt text */

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

svg{
  vertical-align: middle;
}
.hs-search-results__listing {
  margin-bottom: 24px !important;
}
.systems-page p,.systems-page p:last-child {
  margin-bottom: 16px;
}
.hs-search-results__pagination{
  flex-wrap: wrap;
}

.skip-content-btn a{
  display: inline-block;
  margin-left: 43px;
  text-align: center;
  transform: translateY(-200%);
  transition: transform 0.3s;
  position: absolute;
  top: 30px;
  left: 90px;
  z-index: 99999;
}

.skip-content-btn > a:focus {
  transform: translateY(0%);
  outline: none;
}
@media(min-width: 768px) {
  .visible_mobile {
    display:none !important;
  }
}
@media(max-width: 767px) {
  .hidden_mobile {
    display:none !important;
  }
}
button,
.button,
.hs-button,
.primary_btn,
.primary-btn a,
.btn-custom a,
.secondary_btn,
.secondary-btn a,
.tertiary_btn,
.tertiary-btn a {
  cursor: pointer;
  display: inline-flex;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  line-height:inherit;
  justify-content:center;
  align-items:center;
  line-height:1.66666666667;
}

.link {
  display: inline-flex;
  align-items: center;
}

.link a {
  vertical-align: middle;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  line-height:inherit;
  position:relative;
  padding-right:20px;
}

.link a:after {
  position: absolute;
  content: '→';
  display: inline-block;
  right: 0;
  width: 16px;
  top: 0px;
  height: auto;
  transition: all 0.3s ease;
}

.link a:hover:after {
  right: -5px;
}

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;
  margin-bottom: 8px;
}

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

/* Help text */

form legend {
  font-size: 12px;
}

form{
  margin-bottom: 20px;
}

/* 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: block;
  line-height:normal;
  padding: 8px 24px !important;
  width: 100%;
  outline:0;
  font-size:18px;
  min-height: 56px !important;
}

form textarea {
  resize: vertical;
}

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

.form-title:empty {
  display: none;
}

/* 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 > li {
  margin-top: 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: 12px;
  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: #a32828 !important;
}

.hs-input.invalid.error {
  border-color: #a32828 !important;
}
.hs-error-msgs label{
  color: #a32828 !important;
}
.hs-error-msg {
  color: #a32828 !important;
  margin-top: 0.35rem;
}
.hs-error-msgs label {
  background: #a32828 !important;
  color: #fff !important;
  padding: 6px 14px;
  font-size: 14px;
  line-height: 1.57142857143;
  border-radius: 5px;
}
fieldset .input {
  margin-right: 0 !important;
}

form input[type=email],
form input[type=number],
form input[type=password],
form input[type=search],
form input[type=tel],
form input[type=text],
form select,
form textarea {
  width: 100% !important;
}
form textarea {
  min-height: 100px;
}

form .hs-submit {
  padding-top: 10px;
}
/* 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;
  font-weight: 700;
  line-height:1.66666666667;
}
.submitted-message{
  font-weight:bold !important;
}
/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
@media(min-width:768px){
  fieldset.form-columns-2 .hs-form-field:first-child .input {
    margin-right: 16px !important;
  }
}
@media(max-width:768px){
  fieldset .hs-form-field{
    float: none !important;
    width: 100% !important;
  }
}


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

html {
  scroll-behavior: smooth;
}
.header_logo {
  line-height: 0;
}
.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;
}
.cm_header {
  padding:22px 0;
}
.header_grid {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}
.header-navigation-wrapper .hs-menu-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
}
.header-navigation-wrapper .hs-menu-wrapper > ul > li > a {
  padding: 9px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
}
.btn_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.header_right_column {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
}
.btn_icon {
  width: 40px;
  height: 40px;
}
.btn_icon svg {
  width: 100%;
  height: 100%;
}



.languageHeaderWrap:empty {
  display: none;
}
.language-switcher-holder {
  position: relative;
}
.language-switcher-holder .languageTrigger {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.language-switcher-holder .languageTrigger:before {
  content: "";
  background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.11/img/globe.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  width: 20px;
  height: 20px;
}
.language-switcher-holder .lang_switcher_class {
  display: block;
  position: static;
}
.language-switcher-holder .lang_list_class {
  display: block;
  top: 0;
  left: 0;
  right: 0;
  position: relative;
  bottom: 0;
  transform: none;
  padding-top: 10px;
}
.language-switcher-holder .globe_class {
  width: auto;
  height: auto;
  cursor: auto;
  border-radius:0;
  background:transparent;
}
.language-switcher-holder .language-abs {
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  z-index: 2;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.language-switcher-holder .languageTrigger:hover .language-abs {
  opacity:1;
  visibility:visible;
}
.language-switcher-holder .lang_list_class:after, 
.language-switcher-holder .lang_list_class:before {
  left: auto;
  right: 0;
}
.language-switcher-holder .lang_list_class:before {
  border-bottom-color: var(--secondary_color);
}
.language-switcher-holder .lang_list_class li {
  border-color: var(--secondary_color) !important;
  padding: 0px !important;
}
.language-switcher-holder .lang_list_class li a {
  display: block;
  line-height: 1;
  color: var(--primary_color);
  font-weight: bold;
  white-space: nowrap;
  padding: 10px 15px;
}
.language-switcher-holder .lang_list_class li a:hover {
  background-color:var(--quaternary_color);
  color: var(--primary_color);
}
.language-switcher-holder .lang_list_class li:first-child a {
  background-color:var(--secondary_color);
  color:#fff;
}
.language-switcher-holder .lang_list_class:after {
  border-bottom-color:var(--secondary_color);
}

@media(min-width: 768px) {
  .hs-button.has_icon {
    padding: 8px;
    padding-right: 24px;
    gap: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hs-button.has_icon:hover {
    padding-right: 8px;
    padding-left: 24px;
  }
  .header-navigation-wrapper .hs-menu-wrapper > ul li.hs-item-has-children {
    position: relative;
  }
  .header-navigation-wrapper .hs-menu-wrapper > ul li.hs-item-has-children > ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    height:auto !important;
    overflow: visible !important;
    display:block !important;
    min-width: 200px;
  }
  .header-navigation-wrapper .hs-menu-wrapper > ul li.hs-item-has-children:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  .header-navigation-wrapper .hs-menu-wrapper > ul li.hs-item-has-children > ul a {
    display: inline-flex;
    align-items: center;
    padding: 9px 24px;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
    width: 100%;
  }
  .header-navigation-wrapper .hs-menu-wrapper > ul li.hs-item-has-children ul ul {
    top: 0 ;
    left: 100% ;
    right: auto ;
  }
  .mobile_trigger {
    display:none !important;
  }
  .languageHeaderWrap.mobLang {
    display: none !important;
  }
}
@media(max-width: 991px) and (min-width: 768px) {
  .header_right_column {
    gap: 15px;
  }
  .header-navigation-wrapper .hs-menu-wrapper > ul > li > a {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header_logo img {
    width: 180px;
  }
}
@media(max-width: 767px) {
  .language-switcher-holder .languageTrigger:before {
    filter: invert(1);
  }
  .languageHeaderWrap.mobLang {
    border-top: 1px solid #fff;
    padding-top: 15px;
    margin-top: 20px;
  }
  .language-switcher-holder .language-abs {
    left: 0;
    right: auto;
  }
  .language-switcher-holder .lang_list_class:after, .language-switcher-holder .lang_list_class:before {
    left: 0;
    right: auto;
    margin-left: 0;
  }
  .mobile_open {
    overflow: hidden;
  }
  .languageHeaderWrap.deskLang {
    display: none !important;
  }
  .cm_header {
    padding: 8px 0;
  }
  .header_logo img {
    width: 164px;
  }
  .btn_icon {
    display: none;
  }
  .mobile_trigger {
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:all 0.4s;
  }
  .mobile_trigger span,.mobile_trigger span:before, .mobile_trigger span:after {
    width: 24px;
    display: block;
    height: 3px;
    background: var(--primary_color);
    transition:all 0.4s;
  }
  .mobile_trigger span:before, .mobile_trigger span:after {
    content: "";
  }
  .mobile_trigger span:before {
    position: relative;
    top: -8px;
  }
  .mobile_trigger span:after {
    margin-top: 5px;
  }
  .mobile_open .mobile_trigger span:before {
    opacity:0;
  }
  .mobile_open .mobile_trigger span:after {
    margin: 0;
    transform: rotate(90deg);
    top: -3px;
    position: relative;
  }
  .mobile_open .mobile_trigger {
    transform: rotate(45deg);
  }
  .header_right_column {
    gap: 16px;
  }
  .navigation-wrapper {
    position: fixed;
    top: 0;
    left: -250px;
    height: 100%;
    width: 250px;
    background: var(--primary_color);
    padding: 16px;
    transition: all 0.4s;
    z-index:99;
  }
  .mobile_open .navigation-wrapper {
    left:0;
  }
  .header-navigation-wrapper .hs-menu-wrapper > ul {
    flex-direction: column;
  }
  .header-navigation-wrapper .hs-item-has-children {
    position:relative;
  }
  .header-navigation-wrapper ul li a {
    color: #fff !important;
    background: transparent !important;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
    display: block !important;
    padding: 10px 0 !important;
  }
  .header-navigation-wrapper ul ul {
    background: transparent !important;
  }
  .header-navigation-wrapper ul ul {
    display: none;
  }
  .header-navigation-wrapper ul li:hover a {
    color:var(--tertiary_color);
  }
  .child-trigger {
    position: absolute;
    right: 0;
    top: 0;
    height: 44px;
    width: 40px;
    cursor: pointer;
  }
  .child-trigger {
    position: absolute;
    right: 0;
    top: 0;
    height: 44px;
    width: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .child-trigger:before, .child-trigger:after {
    content: "";
    display: block;
    height: 2px;
    background: #fff;
    width: 20px;
  }
  .child-trigger:before, .child-trigger:after {
    content: "";
    display: block;
    height: 2px;
    background: #fff;
    width: 13px;
  }
  .child-trigger:after {
    transform: rotate(90deg);
    position: relative;
    top: -1px;
    transition: all 0.1s;
  }
  .submenu-open > .child-trigger:after {
    transform: none;
  }
  .header-navigation-wrapper .submenu-open > ul {
    display: block;
    padding: 0 10px;
  }
  .header-navigation-wrapper ul ul li a {
    font-size: 15px;
  }
}
@media(max-width: 515px) {
  .header_logo img {
    width: 120px;
  }
  .cm_header .hs-button {
    font-size: 14px;
    padding: 10px 15px;
  }
}
@media(max-width: 400px) {
  .header_grid {
    gap: 7px;
  }
  .cm_header .hs-button {
    font-size: 12px;
    padding: 7px 12px;
  }
  .mobile_trigger {
    width: 20px;
    height: 20px;
  }
  .mobile_trigger span:after {
    margin-top: 3px;
  }
  .mobile_trigger span:before {
    position: relative;
    top: -6px;
  }
  .header_logo img {
    width: 100px;
  }
  .mobile_trigger span, .mobile_trigger span:before, .mobile_trigger span:after {
    width: 100%;
  }
}
/* 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;
  }
}
/* html {
  overflow-x: hidden;
}
body {
  margin-right: -16px;
} */
b, strong {
  font-weight: 900;
}
.bg_body {
  background:var(--body_bg_color);
}
.bg_primary {
  background:var(--primary_color);
}
.bg_secondary {
  background:var(--secondary_color);
}
.bg_tertiary {
  background:var(--tertiary_color);
}
.bg_quaternary {
  background:var(--quaternary_color);
}
.bg_quinary {
  background:var(--quinary_color);
}
.bg_senary {
  background:var(--senary_color);
}
.bg_septenary {
  background:var(--septenary_color);
}
.text_body {
  color:var(--body_bg_color);
}
.text_primary {
  color:var(--primary_color);
}
.text_secondary {
  color:var(--secondary_color);
}
.text_tertiary {
  color:var(--tertiary_color);
}
.text_quaternary {
  color:var(--quaternary_color);
}
.text_quinary {
  color:var(--quinary_color);
}
mark {
  background: transparent;
  color: var(--primary_color);
}
.flex {
  display:flex;
}
.flex-wrap-wrap {
  flex-wrap:wrap;
}
.align-flex-start {
  align-items:flex-start;
}
.align-flex-end {
  align-items:flex-end;
}
.align-center {
  align-items:center;
}
/* Footer css */
footer.footer {
  border-radius: 100px 100px 0 0;
}
.cm_footer {
  padding: 80px 0;
}
.footer_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: space-between;
}
.footer_menu_col {
  font-size: 16px;
}
.socialColumn {
  margin-top:40px;
}
.socialColumn  .hs-social-follow {
  justify-content: flex-start;
}
.footer_logo_area {
  width: calc(46.8% - 320px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer_logo_area {
  text-align: center;
}
.footerLogo_image, .footer_arrow_image {
  line-height: 0;
}
.justify-flex-start {
  justify-content:flex-start;
}
.justify-center {
  justify-content:center;
}
.justify-flex-end {
  justify-content:flex-end;
}
.footer_menu_col .hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer_menu_col ul li a {
  font-weight: 800;
}
.footer_menu_col ul {
  line-height: 1.5;
}
.cm_footer h6:after {
  content: "";
  display: block;
  height: 2px;
  background: currentColor;
  width: 50px;
  margin-top: 10px;
}
.cm_footer h6 {
  text-transform: uppercase;
}
.footer_copyright_section {
  border-top: 1px solid #ddd;
  margin-top: 40px;
  padding-top: 30px;
}
.footer_copyright_column {
  text-align: center;
}
@media(max-width: 1200px) {
  .footer_flex {
    gap: 30px;
  }
  .footer_logo_area {
    width: calc(50% - 120px);
  }
}

@media(max-width: 767px) {
  .cm_footer {
    padding: 32px 0;
  }
  footer.footer {
    border-radius: 0;
  }
  .logo_and_btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    width: 100%;
    align-items: center;
  }
  .footer_logo {
    width: 244px;
  }
  .footer_flex {
    gap: 24px;
  }
  .footer_menu_col {
    width: calc(50% - 12px);
  }
  .footer_arrow_image {
    width: 244px;
    margin: 0 auto;
    display: block;
  }
  .footer_menu_col {
    width: 100%;
    text-align: center;
  }
  .cm_footer h6:after {
    margin-left: auto;
    margin-right: auto;
  }
  .socialColumn .hs-social-follow {
    justify-content: center;
  }
}


.ad_banner {
  overflow:hidden;
}
.two_col_content_media .banner_flec {
  gap:var(--gapMob);
}
.two_col_content_media .content_col,
.two_col_content_media .media-column {
  width:100%;
}
.ad_banner .media-column {
  position:relative;
}
.ad_banner .media-column .svgShape {
  position: absolute;
  top: -71px;
  right: auto;
  z-index: -1;
  left: 23%;
}
.ad_banner .content_col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.ad_banner h1, .ad_banner h2, .ad_banner h3 {
  margin: 0 0 32px;
}
.two_col_content_media .img-holder {
  line-height: 0;
}
.text-center {
  text-align:center;
}
.sec_header {
  margin-bottom:48px;
}
.process_flex {
  margin: 0 -16px;
}
.process_flex .process_item {
  width: 33.3333333333%;
  padding: 0 16px;
}
.cm-card2 {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px;
  height:100%;
}
.cm-card2 h2, .cm-card2 h3, .cm-card2 h4, .cm-card2 h5, .cm-card2 h6 {
  margin-bottom: 16px;
}
body .hs-button.stepBadge {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.875;
  padding: 5px 24px;
  pointer-events: none;
  white-space:nowrap;
}
.process_flex {
  row-gap: 32px;
}
.relative {
  position:relative;
}
.content-with-media-wrapper .bg_shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.content-with-media-wrapper .bg_shape svg {
  width:100%;
  height:auto;
}
hr {
  display: block;
  border: none;
  width: 30px;
  height: 10px;
  margin: 32px 0px;
  background: var(--quinary_color);
}
.has_checklist ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.has_checklist ul li {
  padding-left: 55.99px;
  position: relative;
  margin-bottom: 16px;
}
.has_checklist ul li:last-child {
  margin-bottom: 0;
}
.has_checklist ul li:before {
  content: "";
  width: 32px;
  height: 32px;
  display: block;
  background: var(--secondary_color);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.has_checklist ul li:after {
  content: "";
  height: 14px;
  display: block;
  width: 15px;
  position: absolute;
  top: 10px;
  left: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media(min-width: 768px) {
  .two_col_content_media .banner_flec {
    gap:var(--gapDesk);
  }
  .two_col_content_media .content_col {
    width:var(--contWidth);
  }
  .two_col_content_media .media-column {
    width:var(--imageWidth);
  }
  .img_pos_desktop_left .media-column {
    order: 1;
  }
  .img_pos_desktop_left .content_col {
    order: 2;
  }
  .img_pos_desktop_right .media-column {
    order: 2;
  }
  .img_pos_desktop_right .content_col {
    order: 1;
  }
}
@media(max-width: 991px) {
  .cm-card2 {
    padding:24px;
  }
}
@media(max-width: 767px) {
  .img_pos_mobile_top .media-column {
    order: 1;
  }
  .img_pos_mobile_top .content_col {
    order: 2;
  }
  .img_pos_mobile_bottom .media-column {
    order: 2;
  }
  .img_pos_mobile_bottom .content_col {
    order: 1;
  }

  .ad_banner .media-column .svgShape {
    top: -35px;
    right: auto;
    left: 32%;
  }
  .ad_banner .media-column .svgShape svg {
    width: 140%;
    height: auto;
  }
  .process_flex .process_item {
    width:50%;
  }
  .process_flex {
    margin: 0 -12px;
  }
  .process_flex .process_item {
    padding: 0 12px;
  }
  .process_flex {
    row-gap: 24px;
  }
  body .hs-button.stepBadge {
    margin-bottom: 24px;
  }
}
@media(max-width: 500px) {
  .process_flex .process_item {
    width:100%;
  }
  .two_col_content_media .img-holder img {
    max-width: 282px;
  }
  .content-with-media-wrapper .bg_shape svg {
    height: 248px;
  }
  
}