/* 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;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
}

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

a:hover {
  text-decoration: none;
}

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



.body-wrapper{
  overflow:hidden;
}
/* 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));
    }
  
}
.custom-listing-blog .blog-index--2-col__post:nth-child(4n+1) {
clear: left;
}
.content-with-icon .content-item h3 a {
    color: inherit;
}
.cm-accelerators .flex-diffdep-child h3 a {
  color: inherit;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}

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

body {
  line-height: 1.56;
  overflow-wrap: break-word;
}
html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}
p {
  margin: 0 0 15px;
}
p:last-child{
  margin-bottom:0;
}
a {
  cursor: pointer;
}
.body-container-wrapper ul,
.body-container-wrapper ol {
  margin: 8px 0;
  padding-left: 18px;
}
.body-container-wrapper li{
  margin-bottom: 2px;
  margin-top: 2px;
  padding-left: 10px;
}
ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
pre {
  overflow: auto;
}
code {
  vertical-align: bottom;
}
/* blockquote {
border-left: 2px solid;
margin: 0 0 1.4rem;
padding-left: 0.7rem;
} */
hr {
  border: none;
  border-bottom: 1px solid #CCC;
}
img {
  font-size: 0.583rem;
  word-break: normal;
}
.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: background 0.5s ease;
  white-space: normal;
}
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;
}
.button.secondary:before{
  display:none;
}
.button.secondary{
  background-color:#fff;
  color:var(--primary-color);
  box-shadow: 0 2px 0 rgba(0,0,0,.05);
}
.button.secondary:hover{
  color:#fff;
  background-image:none!important;
}
.link{
  color:var(--primary-color);
  font-size:16px;
  font-weight:700!important;
}
.link:hover{
  color:var(--button_color2);
}
.red-button {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  display: inline-block;
  color: rgb(255, 255, 255);
  background: linear-gradient(270deg, rgb(228, 46, 44), rgb(250, 103, 120));
}
.red-button:hover {
  background: #e42e2c;
  color: #fff;
}
.log-button {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: 0.3s ease;
  display: inline-block;
  color: #e42e2c;
  border: 1px solid #e42e2c;
}
.log-button:hover {
  background: rgb(250, 103, 120, 0.2);
  color: #e42e2c;
}
.white-btn {
  background: #fff;
  color: #e42e2c;
  font-size: 16px;
  line-height: 24px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
}
.white-btn:hover,
.white-btn:focus,
.white-btn:active {
  color: #e42e2c;
  text-decoration: none;
  background-color: #fbe3e8;
}
.button.tertiary {
  color: #e42e2c;
  border: 1px solid #e42e2c;
  background: transparent;
}
.button.tertiary:before {
  display: none;
}
.button.tertiary:hover {
  border: 1px solid transparent;
  background: rgb(250, 103, 120, 0.2);
  color: #e42e2c;
}
.redcolor {
  color: #e42e2c;
}
.black {
  background-color: #242527;
  font-weight: 700;
  color: #fff;
  display: block;
  text-align: center;
  transition: all .3s ease;
}
.black:hover {
  opacity: 0.8;
  color: #fff;
}
@media (max-width: 1024px) {
  .red-button, .log-button {
    padding: 9.6px;
  }
}
@media (max-width: 767px) {
  .red-button, .log-button, .white-btn {
    padding: 10px 14px;
    font-size: 14px;
    line-height: 20px;
  }
}
/* Fields */
.hs-form-field {
  margin-bottom: 1rem;
}
/* Labels */
form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}
/* Form Title */
.form-title {
  margin-bottom: 0;
}
/* Help text */
form legend {
  font-size: 0.875rem;
}
/* Inputs */
form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}
.form-title:empty{
  display:none!important;
}
form select{
  appearance:none;
  -webkit-appearance:none;
  background-image:url(https://43943246.fs1.hubspotusercontent-na1.net/hubfs/43943246/WEBSITE%20ASSETS%20%3E%20DO%20NOT%20DELETE/icons/select-arrow-down.svg);
  background-repeat:no-repeat;
  background-position:center right 15px;
}
form textarea {
  resize: vertical;
}
form fieldset {
  max-width: 100% !important;
}
/* Inputs - checkbox/radio */
form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}
form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}
form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}
/* Inputs - date picker */
.hs-dateinput {
  position: relative;
}
.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}
.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}
/* Inputs - file picker */
form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}
/* Headings and text */
form .hs-richtext img {
  max-width: 100% !important;
}
/* GDPR */
.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}
/* Validation */
.hs-form-required {
  color: #EF6B51;
}
.hs-input.invalid.error {
  border-color: #EF6B51;
}
.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}
/* Submit button */
form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  width:100%;
  font-weight:700!important;
  background-image: linear-gradient(270deg,#e42e2c,#fa6778);
}
@media (max-width: 767px) {
  .legal-consent-container~.hs_recaptcha {
    overflow-y: auto;
  }
}
/* 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;
}
.formTheme .hs-richtext {
    font-size: 15px;
}

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

.custom-menu-primary .hs-menu-wrapper > ul > li > ul > li > a:hover,
.custom-menu-primary .hs-menu-wrapper > ul > li > ul > li > ul > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
    background-color: #f3f4f5;
    color: #242527;
}
img {
    max-width: 100%;
}
.header a:hover {
    text-decoration: none;
}
.header {
    position: fixed;
    z-index: 9;
    top: 0;
    width: 100%;
}
.account-box {
  display:none !important;
    background: #fff;
    background: linear-gradient(90deg, #fff 30%, #fdb5be 80%);
    padding: 10px 0;
}
.account-box a {
    color: #242527;
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
}
.business-box {
    padding: 1em 0;
    background: #fff;
    background: linear-gradient(90deg, #fff 30%, #e4302f 80%);
}
.business-box p,
.menutitle {
    margin-top: 8px;
}
.business-button {
    background: #fff;
    color: #e42e2c !important;
    border-radius: 10px;
    padding: 8px 12px;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover,
.header .btn-contact:focus,
.header .btn-contact:hover,
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:focus,
.navbar-inverse .navbar-nav > .open > a:hover {
    color: #e42e2c;
    background-color: #e42e2c14;
}
.business-button:hover {
    background-color: #fbe3e8;
}
.flex-header {
    display: flex;
    justify-content: space-between;
}
.navbar-inverse {
    border: none;
    padding: 1em 0;
    background: #fff;
    background: linear-gradient(90deg, #fff 30%, #fc95a2 80%);
    border-radius: 0;
    margin: 0;
}
.navbar-brand {
    padding: 0;
}
.img-business {
    width: 160px;
    margin-top: 16px;
}
.img-personal {
    width: 100px;
    margin-top: 16px;
}
.custom-menu-primary .hs-menu-wrapper > ul,
.navbar-left {
    margin-left: 2em;
}
.header .btn-contact {
    color: #242527;
    font-size: 14px;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 10px;
    line-height: 1.63;
    transition: 0.5s;
    display: inline-block;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .active > a:hover {
    color: #e42e2c;
    background-color: #e42e2c14;
    font-weight: 700;
}
.navbar-nav > li > .dropdown-menu {
    padding: 1em;
    border-radius: 10px;
}
.dropdown-menu {
    padding: 0;
    top: 120%;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > ul > li,
.dropdown-menu > li {
    margin: 2px 0;
}
.dropdown-menu > li > a {
    padding: 10px 20px 16px 16px;
    font-size: 14px;
    color: #242527;
    border-radius: 10px;
}
.svgcolor {
    width: 24px;
    height: 24px;
    color: #e42e2c;
    font-size: 24px;
    position: relative;
    bottom: -4px;
    margin-right: 6.5px;
}
.dropdown-toggle span {
    font-size: 16px;
    font-weight: 700;
}
.menu-width {
    min-width: 600px;
}
.left-bdr {
    border-left: 2px solid;
}
.navbar-inverse .navbar-toggle {
    border-color: #fff0;
}
.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #333;
}
.headerbtn-active {
    color: #e42e2c !important;
    background-color: #e42e2c14;
    width: 98%;
}
.btn-contact {
    background: linear-gradient(270deg, #e42e2c, #fa6778);
    color: #fff !important;
}
.btn-contact:hover,
.custom-menu-primary .hs-menu-wrapper > ul > li.Industries ul ul li.Allfunctions > a:hover,
.custom-menu-primary .hs-menu-wrapper > ul > li.Industries ul ul li.Allindustries > a:hover {
    background: linear-gradient(270deg, #e42e2c, #cf1818);
}
.divider {
    font-size: 27px !important;
    font-weight: 400 !important;
    color: rgb(0 0 0 / 0.1) !important;
    background: 0 0 !important;
}
.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover {
    background-color: #fff;
    background-color: #fff0;
}
.downloadshow {
    position: fixed;
    background: #fff;
    width: 36%;
    top: 10%;
    right: 9%;
    padding: 1em 0;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 0 1px #0d111726, 0 8px 10px -2px #0d11171a, 0 16px 25px -2px #0d11171a;
}
.downloadshow p {
    color: #000;
    font-size: 16px;
}
.social-icon {
    background: #000;
}
.app-area {
    margin-top: 26px;
}
.qrcode {
    padding: 1.2em 0;
    border: 1px solid #e42e2c;
    border-radius: 12px;
}
.qrcode img {
    width: 100px;
    margin: auto;
}
.activeshowapp,
.lp-header .mobiletrigger {
    display: none;
}
.btn-inner {
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    background: linear-gradient(270deg, #e42e2c, #fa6778) !important;
    color: #fff !important;
    padding: 10px 16px !important;
    display: inline-block !important;
    margin-left: 18px;
    margin-top: 10px;
}
header .navbar-collapse {
    border-top: 0;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a {
    position: relative;
    display: block;
    border-radius: 10px;
    color: #242527;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.63;
    padding: 10px 20px;
    transition: 0.5s;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > ul > li > a,
.custom-menu-primary .hs-menu-wrapper > ul > li > ul > li > ul > li > a {
    border-radius: 10px;
    clear: both;
    color: #242527;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    padding: 12px 16px;
    transition: 0.5s;
    white-space: nowrap;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > ul > li > a:before,
.custom-menu-primary .hs-menu-wrapper > ul > li > ul > li > ul > li > a:before {
    width: 16px;
    height: 18px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    color: #e42e2c;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > ul > li.PersonalAccount > a:before {
    content: "";
    background-image: url('data:image/svg+xml,      <svg class="svgcolor" xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none"><path d="M1.77778 18C1.28889 18 0.87037 17.8238 0.522222 17.4713C0.174074 17.1188 0 16.695 0 16.2V3.6C0 3.105 0.174074 2.68125 0.522222 2.32875C0.87037 1.97625 1.28889 1.8 1.77778 1.8H5.51111C5.71852 1.26 6.04444 0.825 6.48889 0.495C6.93333 0.165 7.43704 0 8 0C8.56296 0 9.06667 0.165 9.51111 0.495C9.95556 0.825 10.2815 1.26 10.4889 1.8H14.2222C14.7111 1.8 15.1296 1.97625 15.4778 2.32875C15.8259 2.68125 16 3.105 16 3.6V16.2C16 16.695 15.8259 17.1188 15.4778 17.4713C15.1296 17.8238 14.7111 18 14.2222 18H1.77778ZM8 2.925C8.19259 2.925 8.35185 2.86125 8.47778 2.73375C8.6037 2.60625 8.66667 2.445 8.66667 2.25C8.66667 2.055 8.6037 1.89375 8.47778 1.76625C8.35185 1.63875 8.19259 1.575 8 1.575C7.80741 1.575 7.64815 1.63875 7.52222 1.76625C7.3963 1.89375 7.33333 2.055 7.33333 2.25C7.33333 2.445 7.3963 2.60625 7.52222 2.73375C7.64815 2.86125 7.80741 2.925 8 2.925ZM1.77778 15.165C2.57778 14.37 3.50741 13.7438 4.56667 13.2863C5.62593 12.8288 6.77037 12.6 8 12.6C9.22963 12.6 10.3741 12.8288 11.4333 13.2863C12.4926 13.7438 13.4222 14.37 14.2222 15.165V3.6H1.77778V15.165ZM8 10.8C8.85926 10.8 9.59259 10.4925 10.2 9.8775C10.8074 9.2625 11.1111 8.52 11.1111 7.65C11.1111 6.78 10.8074 6.0375 10.2 5.4225C9.59259 4.8075 8.85926 4.5 8 4.5C7.14074 4.5 6.40741 4.8075 5.8 5.4225C5.19259 6.0375 4.88889 6.78 4.88889 7.65C4.88889 8.52 5.19259 9.2625 5.8 9.8775C6.40741 10.4925 7.14074 10.8 8 10.8ZM3.55556 16.2H12.4444V15.975C11.8222 15.45 11.1333 15.0563 10.3778 14.7938C9.62222 14.5313 8.82963 14.4 8 14.4C7.17037 14.4 6.37778 14.5313 5.62222 14.7938C4.86667 15.0563 4.17778 15.45 3.55556 15.975V16.2ZM8 9C7.62963 9 7.31482 8.86875 7.05556 8.60625C6.7963 8.34375 6.66667 8.025 6.66667 7.65C6.66667 7.275 6.7963 6.95625 7.05556 6.69375C7.31482 6.43125 7.62963 6.3 8 6.3C8.37037 6.3 8.68519 6.43125 8.94444 6.69375C9.2037 6.95625 9.33333 7.275 9.33333 7.65C9.33333 8.025 9.2037 8.34375 8.94444 8.60625C8.68519 8.86875 8.37037 9 8 9Z" fill="%23E53131"></path></svg>');
}
.custom-menu-primary .hs-menu-wrapper > ul > li > ul > li.DigitalID.Verification.\(KYC\) > a:before {
    content: "";
    background-image: url('data:image/svg+xml,      <svg class="svgcolor" xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none"><path d="M1.77778 18C1.28889 18 0.87037 17.8238 0.522222 17.4713C0.174074 17.1188 0 16.695 0 16.2V3.6C0 3.105 0.174074 2.68125 0.522222 2.32875C0.87037 1.97625 1.28889 1.8 1.77778 1.8H5.51111C5.71852 1.26 6.04444 0.825 6.48889 0.495C6.93333 0.165 7.43704 0 8 0C8.56296 0 9.06667 0.165 9.51111 0.495C9.95556 0.825 10.2815 1.26 10.4889 1.8H14.2222C14.7111 1.8 15.1296 1.97625 15.4778 2.32875C15.8259 2.68125 16 3.105 16 3.6V16.2C16 16.695 15.8259 17.1188 15.4778 17.4713C15.1296 17.8238 14.7111 18 14.2222 18H1.77778ZM8 2.925C8.19259 2.925 8.35185 2.86125 8.47778 2.73375C8.6037 2.60625 8.66667 2.445 8.66667 2.25C8.66667 2.055 8.6037 1.89375 8.47778 1.76625C8.35185 1.63875 8.19259 1.575 8 1.575C7.80741 1.575 7.64815 1.63875 7.52222 1.76625C7.3963 1.89375 7.33333 2.055 7.33333 2.25C7.33333 2.445 7.3963 2.60625 7.52222 2.73375C7.64815 2.86125 7.80741 2.925 8 2.925ZM1.77778 15.165C2.57778 14.37 3.50741 13.7438 4.56667 13.2863C5.62593 12.8288 6.77037 12.6 8 12.6C9.22963 12.6 10.3741 12.8288 11.4333 13.2863C12.4926 13.7438 13.4222 14.37 14.2222 15.165V3.6H1.77778V15.165ZM8 10.8C8.85926 10.8 9.59259 10.4925 10.2 9.8775C10.8074 9.2625 11.1111 8.52 11.1111 7.65C11.1111 6.78 10.8074 6.0375 10.2 5.4225C9.59259 4.8075 8.85926 4.5 8 4.5C7.14074 4.5 6.40741 4.8075 5.8 5.4225C5.19259 6.0375 4.88889 6.78 4.88889 7.65C4.88889 8.52 5.19259 9.2625 5.8 9.8775C6.40741 10.4925 7.14074 10.8 8 10.8ZM3.55556 16.2H12.4444V15.975C11.8222 15.45 11.1333 15.0563 10.3778 14.7938C9.62222 14.5313 8.82963 14.4 8 14.4C7.17037 14.4 6.37778 14.5313 5.62222 14.7938C4.86667 15.0563 4.17778 15.45 3.55556 15.975V16.2ZM8 9C7.62963 9 7.31482 8.86875 7.05556 8.60625C6.7963 8.34375 6.66667 8.025 6.66667 7.65C6.66667 7.275 6.7963 6.95625 7.05556 6.69375C7.31482 6.43125 7.62963 6.3 8 6.3C8.37037 6.3 8.68519 6.43125 8.94444 6.69375C9.2037 6.95625 9.33333 7.275 9.33333 7.65C9.33333 8.025 9.2037 8.34375 8.94444 8.60625C8.68519 8.86875 8.37037 9 8 9Z" fill="%23E53131"></path></svg>');
}
.custom-menu-primary .hs-menu-wrapper > ul > li > ul > li.VerifiedeSignatures.for.Business > a:before {
    content: "";
    height: 16px;
    width: 16px;
    background-image: url('data:image/svg+xml,      <svg class="svgcolor" xmlns="http://www.w3.org/2000/svg" width="17" height="14" viewBox="0 0 16 16" fill="none"><path d="M3.55556 12.4444H5.33333V8H3.55556V12.4444ZM10.6667 12.4444H12.4444V3.55556H10.6667V12.4444ZM7.11111 12.4444H8.88889V9.77778H7.11111V12.4444ZM7.11111 8H8.88889V6.22222H7.11111V8ZM1.77778 16C1.28889 16 0.87037 15.8259 0.522222 15.4778C0.174074 15.1296 0 14.7111 0 14.2222V1.77778C0 1.28889 0.174074 0.87037 0.522222 0.522222C0.87037 0.174074 1.28889 0 1.77778 0H14.2222C14.7111 0 15.1296 0.174074 15.4778 0.522222C15.8259 0.87037 16 1.28889 16 1.77778V14.2222C16 14.7111 15.8259 15.1296 15.4778 15.4778C15.1296 15.8259 14.7111 16 14.2222 16H1.77778ZM1.77778 14.2222H14.2222V1.77778H1.77778V14.2222Z" fill="%23E53131"></path></svg>');
}
.custom-menu-primary .hs-menu-wrapper > ul > li > ul > li.ConfigurableAPI.\(Verification.\&.eSign\) > a:before {
    content: "";
    height: 21px;
    background-image: url('data:image/svg+xml,      <svg class="svgcolor" xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22" fill="none"><path d="M8.47914 20.1666L8.11248 17.2333C7.91386 17.1569 7.72671 17.0652 7.55102 16.9583C7.37532 16.8513 7.20345 16.7367 7.03539 16.6145L4.30831 17.7603L1.78748 13.4062L4.14789 11.6187C4.13261 11.5117 4.12498 11.4086 4.12498 11.3093V10.6905C4.12498 10.5912 4.13261 10.4881 4.14789 10.3812L1.78748 8.59367L4.30831 4.2395L7.03539 5.38534C7.20345 5.26311 7.37914 5.14853 7.56248 5.04159C7.74581 4.93464 7.92914 4.84297 8.11248 4.76659L8.47914 1.83325H13.5208L13.8875 4.76659C14.0861 4.84297 14.2732 4.93464 14.4489 5.04159C14.6246 5.14853 14.7965 5.26311 14.9646 5.38534L17.6916 4.2395L20.2125 8.59367L17.8521 10.3812C17.8673 10.4881 17.875 10.5912 17.875 10.6905V11.3093C17.875 11.4086 17.8597 11.5117 17.8291 11.6187L20.1896 13.4062L17.6687 17.7603L14.9646 16.6145C14.7965 16.7367 14.6208 16.8513 14.4375 16.9583C14.2541 17.0652 14.0708 17.1569 13.8875 17.2333L13.5208 20.1666H8.47914ZM10.0833 18.3333H11.8937L12.2146 15.9041C12.6882 15.7819 13.1274 15.6023 13.5323 15.3655C13.9371 15.1287 14.3076 14.8423 14.6437 14.5062L16.9125 15.4458L17.8062 13.8874L15.8354 12.3978C15.9118 12.1839 15.9653 11.9586 15.9958 11.7218C16.0264 11.485 16.0416 11.2444 16.0416 10.9999C16.0416 10.7555 16.0264 10.5148 15.9958 10.278C15.9653 10.0412 15.9118 9.81589 15.8354 9.602L17.8062 8.11242L16.9125 6.55409L14.6437 7.51659C14.3076 7.1652 13.9371 6.8711 13.5323 6.63429C13.1274 6.39749 12.6882 6.21797 12.2146 6.09575L11.9166 3.66659H10.1062L9.78539 6.09575C9.31178 6.21797 8.87255 6.39749 8.46768 6.63429C8.06282 6.8711 7.69234 7.15756 7.35623 7.49367L5.08748 6.55409L4.19373 8.11242L6.16456 9.57909C6.08817 9.80825 6.0347 10.0374 6.00414 10.2666C5.97359 10.4958 5.95831 10.7402 5.95831 10.9999C5.95831 11.2444 5.97359 11.4812 6.00414 11.7103C6.0347 11.9395 6.08817 12.1687 6.16456 12.3978L4.19373 13.8874L5.08748 15.4458L7.35623 14.4833C7.69234 14.8346 8.06282 15.1287 8.46768 15.3655C8.87255 15.6023 9.31178 15.7819 9.78539 15.9041L10.0833 18.3333ZM11.0458 14.2083C11.9319 14.2083 12.6882 13.8951 13.3146 13.2687C13.9409 12.6423 14.2541 11.886 14.2541 10.9999C14.2541 10.1138 13.9409 9.35756 13.3146 8.73117C12.6882 8.10478 11.9319 7.79159 11.0458 7.79159C10.1444 7.79159 9.38435 8.10478 8.7656 8.73117C8.14685 9.35756 7.83748 10.1138 7.83748 10.9999C7.83748 11.886 8.14685 12.6423 8.7656 13.2687C9.38435 13.8951 10.1444 14.2083 11.0458 14.2083Z" fill="%23E53131"></path></svg>');
}
.custom-menu-primary .hs-menu-wrapper > ul > li > ul > li.Agreements > a:before {
    content: "";
    height: 19px;
    background-image: url('data:image/svg+xml,      <svg class="svgcolor" xmlns="http://www.w3.org/2000/svg" width="14" height="19" viewBox="0 0 14 19" fill="none"><path d="M11.7016 7.97799H6.94254C6.94254 7.97799 6.52889 7.77226 6.7549 6.73941C6.8871 6.13482 8.35405 2.14198 5.70586 1.44082C5.68881 1.44082 5.67175 1.43662 5.65469 1.43242C5.63763 1.43242 5.62058 1.42822 5.60352 1.42822C5.58646 1.42822 5.57367 1.42822 5.55661 1.42822C5.53955 1.42822 5.52676 1.42822 5.5097 1.42822C5.49264 1.42822 5.47985 1.42822 5.46279 1.42822C5.46279 1.42822 5.45853 1.42822 5.45426 1.42822C5.44147 1.42822 5.42868 1.42822 5.42015 1.42822C5.3903 1.42822 5.36045 1.43662 5.33486 1.44502C5.32207 1.44502 5.30927 1.45341 5.29648 1.45761C5.28369 1.46181 5.27516 1.46601 5.26237 1.47021C5.24531 1.47861 5.22825 1.487 5.21546 1.4954C5.20267 1.5038 5.18987 1.51219 5.18134 1.52059C5.18134 1.52059 5.15576 1.54158 5.14296 1.55418C5.14296 1.55418 5.13443 1.55838 5.13443 1.56258C5.13443 1.56258 5.13017 1.56678 5.12591 1.57097C5.12164 1.57097 5.11738 1.57937 5.11311 1.58357C5.10458 1.59617 5.09179 1.60876 5.08326 1.62136C5.08326 1.62136 5.079 1.62556 5.07473 1.62975C5.0662 1.64235 5.05768 1.65495 5.05341 1.66754C5.04488 1.68014 5.03635 1.69693 5.03209 1.70953C4.97239 1.83129 4.94254 1.98663 4.92548 2.15877C4.86578 2.80535 5.00224 3.72484 4.63977 4.28325C4.37964 4.68211 3.72292 5.5848 3.03209 6.52948C2.37964 7.41958 1.7016 8.34746 1.30501 8.92686C1.09179 9.23756 0.959595 9.44749 0.959595 9.49787V17.1435C0.959595 17.3828 1.15576 17.5801 1.40309 17.5801H9.73571C9.90202 17.5801 10.0598 17.5465 10.2091 17.4877C10.2091 17.4877 10.2517 17.4709 10.2688 17.4626C10.3285 17.4374 10.3882 17.4038 10.4436 17.3702C10.482 17.345 10.5161 17.3198 10.5502 17.2946C10.5843 17.2694 10.6184 17.24 10.6483 17.2064C10.6611 17.1938 10.6696 17.1854 10.6824 17.1729C10.6952 17.1603 10.7037 17.1519 10.7165 17.1393C10.7464 17.1057 10.7762 17.0679 10.8061 17.0259L10.8317 16.9881C10.8487 16.9629 10.8658 16.9377 10.8786 16.9083C10.9042 16.8622 10.9255 16.8118 10.9468 16.7614C10.9553 16.7404 10.9639 16.7152 10.9724 16.69C10.9809 16.6606 10.9894 16.6312 10.998 16.6018C10.998 16.5851 11.0065 16.5683 11.0108 16.5515C11.0193 16.5095 11.0278 16.4633 11.0321 16.4171C11.0321 16.4003 11.0321 16.3835 11.0321 16.3667C11.0321 16.3625 11.0321 16.3583 11.0321 16.3541C11.0321 16.3331 11.0321 16.3121 11.0321 16.2912C11.0321 16.266 11.0321 16.2408 11.0321 16.2198C11.0321 16.2114 11.0321 16.203 11.0321 16.1946C11.0321 16.1736 11.0321 16.1484 11.0236 16.1274C11.0236 16.1022 11.015 16.0812 11.0108 16.056C11.0108 16.0434 11.0065 16.035 11.0022 16.0224C11.0022 16.014 11.0022 16.0056 10.998 15.9973C10.9894 15.9679 10.9809 15.9343 10.9724 15.9049C10.9681 15.8881 10.9596 15.8713 10.9553 15.8545C10.9297 15.7873 10.8999 15.7201 10.8615 15.6572C10.9425 15.6446 11.0193 15.6194 11.0961 15.59C11.1131 15.5858 11.1259 15.5774 11.143 15.5732C11.2027 15.548 11.2581 15.5186 11.3135 15.485C11.3263 15.4766 11.3391 15.4682 11.3519 15.4598C11.3775 15.443 11.4074 15.422 11.4329 15.4053C11.4585 15.3843 11.4798 15.3675 11.5012 15.3465C11.514 15.3339 11.5268 15.3255 11.5353 15.3129C11.5481 15.3003 11.5566 15.2919 11.5694 15.2793C11.659 15.1869 11.7357 15.0778 11.7912 14.9644L11.8039 14.935C11.8167 14.9014 11.8338 14.872 11.8423 14.8384C11.8509 14.8217 11.8551 14.8049 11.8594 14.7839C11.8636 14.7671 11.8722 14.7503 11.8764 14.7293C11.8807 14.7125 11.885 14.6999 11.8892 14.6831C11.8935 14.6579 11.8978 14.6369 11.902 14.6117C11.902 14.6033 11.902 14.5907 11.9063 14.5823C11.9063 14.5697 11.9063 14.5613 11.9106 14.5487C11.9106 14.5362 11.9106 14.5278 11.9106 14.5152C11.9106 14.4984 11.9106 14.4774 11.9106 14.4606C11.9106 14.4396 11.9106 14.4228 11.9106 14.4018C11.9106 14.3514 11.9106 14.301 11.902 14.2506C11.902 14.2339 11.902 14.2213 11.8935 14.2045C11.8935 14.1919 11.8935 14.1835 11.8892 14.1709C11.8892 14.1541 11.885 14.1373 11.8807 14.1247C11.8807 14.1079 11.8722 14.0911 11.8679 14.0743C11.8679 14.0659 11.8636 14.0575 11.8594 14.0491C11.8381 13.9861 11.8167 13.9232 11.7869 13.8644C11.7826 13.8518 11.7741 13.8392 11.7698 13.8266C11.7229 13.7384 11.6675 13.6545 11.6035 13.5789C11.5353 13.4991 11.4585 13.4277 11.3732 13.3689C11.514 13.3606 11.6462 13.3312 11.7698 13.2808C11.7997 13.2682 11.8295 13.2556 11.8594 13.243C11.8892 13.2304 11.9148 13.2136 11.9447 13.1968C11.9575 13.1884 11.9745 13.18 11.9873 13.1716C12.0001 13.1632 12.0129 13.1548 12.03 13.1464C12.0555 13.1296 12.0811 13.1086 12.1067 13.0918C12.1195 13.0834 12.1323 13.0709 12.1451 13.0625C12.1707 13.0415 12.192 13.0205 12.2176 12.9995C12.2389 12.9785 12.2602 12.9575 12.2773 12.9365C12.2943 12.9155 12.3157 12.8945 12.3285 12.8735C12.3455 12.8483 12.3626 12.8273 12.3796 12.8021C12.3967 12.777 12.4138 12.7518 12.4265 12.7266C12.4351 12.714 12.4393 12.7014 12.4479 12.6888C12.4564 12.6762 12.4607 12.6594 12.4692 12.6468C12.482 12.6174 12.4948 12.588 12.5076 12.5586C12.5118 12.546 12.5161 12.5334 12.5204 12.5208C12.5289 12.4956 12.5374 12.4705 12.5459 12.4411C12.5459 12.4285 12.5545 12.4159 12.5545 12.4033C12.5715 12.3403 12.5801 12.2773 12.5843 12.2143C12.5843 12.1975 12.5843 12.1808 12.5843 12.164C12.5843 12.143 12.5843 12.122 12.5843 12.101C12.5843 12.0758 12.5843 12.0506 12.5843 12.0296C12.5843 12.0212 12.5843 12.0128 12.5843 12.0044C12.5843 12.0044 12.5843 11.996 12.5843 11.9918C12.5843 11.975 12.5843 11.9582 12.5801 11.9414C12.5801 11.9204 12.5758 11.8994 12.5715 11.8785C12.5673 11.8491 12.5587 11.8155 12.5545 11.7903C12.5417 11.7399 12.5246 11.6895 12.5076 11.6433C12.4905 11.5972 12.4692 11.551 12.4436 11.5048C12.4223 11.4586 12.3924 11.4166 12.3626 11.3746C12.3498 11.3536 12.3327 11.3326 12.3157 11.3158C12.2858 11.2739 12.2517 11.2361 12.2133 11.2025C12.1792 11.1689 12.1408 11.1311 12.0982 11.1017C12.0769 11.0849 12.0598 11.0723 12.0385 11.0555C11.8253 10.9086 11.5694 10.8204 11.2922 10.8204H11.6845C11.8935 10.8204 12.0897 10.7784 12.2688 10.6987C12.2858 10.6903 12.2986 10.6861 12.3157 10.6777C12.3242 10.6777 12.3285 10.6693 12.337 10.6693C12.3413 10.6693 12.3498 10.6651 12.354 10.6609C12.3882 10.6441 12.418 10.6273 12.4479 10.6063C12.5076 10.5727 12.563 10.5307 12.6142 10.4845C12.627 10.4719 12.6398 10.4635 12.6526 10.4509C12.6654 10.4383 12.6781 10.43 12.6909 10.4174C12.7037 10.4048 12.7165 10.3922 12.7251 10.3796C12.7378 10.367 12.7464 10.3544 12.7592 10.3418C12.772 10.3292 12.7805 10.3166 12.789 10.304C12.8103 10.2788 12.8317 10.2494 12.853 10.22C12.8658 10.2032 12.8786 10.1822 12.8914 10.1654C12.8914 10.1654 12.8956 10.157 12.8999 10.1528C12.9127 10.1319 12.9255 10.1109 12.9383 10.0941C12.9809 10.0227 13.015 9.94292 13.0449 9.86314C13.0491 9.85055 13.0534 9.83375 13.0577 9.82116C13.0577 9.80856 13.0662 9.79597 13.0705 9.78757C13.0705 9.77497 13.079 9.75818 13.0833 9.74558C13.0961 9.691 13.1088 9.63642 13.1131 9.58184C13.1131 9.56925 13.1131 9.56085 13.1131 9.54825C13.1131 9.52306 13.1174 9.49787 13.1174 9.47268C13.1174 9.44749 13.1174 9.4223 13.1174 9.4013C13.1174 8.61617 12.4692 7.98219 11.676 7.98219L11.7016 7.97799Z" stroke="%23E53131" stroke-linejoin="round"></path></svg>');
}
.custom-menu-primary .hs-menu-wrapper > ul > li > ul > li.People > a:before {
    content: "";
    width: 17px;
    background-image: url('data:image/svg+xml,      <svg class="svgcolor" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><path d="M9 17C13.4183 17 17 13.4183 17 9C17 4.58172 13.4183 1 9 1C4.58172 1 1 4.58172 1 9C1 13.4183 4.58172 17 9 17Z" stroke="%23E53131" stroke-miterlimit="10"></path><path d="M5 15.8V13C5 12.116 5.716 11.4 6.6 11.4H11.4C12.284 11.4 13 12.116 13 13V15.8" stroke="%23E53131" stroke-miterlimit="10"></path><path d="M7 16.6V14.2" stroke="%23E53131" stroke-miterlimit="10"></path><path d="M11 16.6V14.2" stroke="%23E53131" stroke-miterlimit="10"></path><path d="M8.99998 9.39998C10.3255 9.39998 11.4 8.32546 11.4 6.99998C11.4 5.67449 10.3255 4.59998 8.99998 4.59998C7.67449 4.59998 6.59998 5.67449 6.59998 6.99998C6.59998 8.32546 7.67449 9.39998 8.99998 9.39998Z" stroke="%23E53131" stroke-miterlimit="10"></path></svg>');
}
.custom-menu-primary .hs-menu-wrapper > ul > li > ul > li.Business > a:before {
    content: "";
    width: 18px;
    background-image: url('data:image/svg+xml,      <svg class="svgcolor" xmlns="http://www.w3.org/2000/svg" width="18" height="17" viewBox="0 0 18 17" fill="none"><path d="M16.5833 4.21436H1.70833C1.31713 4.21436 1 4.53415 1 4.92864V13.5001C1 13.8946 1.31713 14.2144 1.70833 14.2144H16.5833C16.9745 14.2144 17.2917 13.8946 17.2917 13.5001V4.92864C17.2917 4.53415 16.9745 4.21436 16.5833 4.21436Z" stroke="%23E53131" stroke-miterlimit="10"></path><path d="M6.66671 1.35718H11.625C12.0146 1.35718 12.3334 1.67861 12.3334 2.07146V4.21432H5.95837V2.07146C5.95837 1.67861 6.27712 1.35718 6.66671 1.35718Z" stroke="%23E53131" stroke-miterlimit="10"></path><path d="M3.125 14.2144H5.60417V15.2858C5.60417 15.4822 5.44479 15.6429 5.25 15.6429H3.47917C3.28437 15.6429 3.125 15.4822 3.125 15.2858V14.2144Z" stroke="%23E53131" stroke-miterlimit="10"></path><path d="M12.3334 14.2144H14.8125V15.2858C14.8125 15.4822 14.6532 15.6429 14.4584 15.6429H12.6875C12.4927 15.6429 12.3334 15.4822 12.3334 15.2858V14.2144Z" stroke="%23E53131" stroke-miterlimit="10"></path></svg>');
}
.custom-menu-primary .hs-menu-wrapper ul > li.Accounting\&.Tax > a:before {
   content: "";
   height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.29743 1.5C3.47631 1.5 2 2.93472 2 4.70454V15.1506C2 16.9204 3.47631 18.3552 5.29743 18.3552H8.88036C9.21738 18.3552 9.49059 18.0897 9.49059 17.7621C9.49059 17.4346 9.21738 17.1691 8.88036 17.1691H5.29743C4.15034 17.1691 3.22044 16.2654 3.22044 15.1506V4.70454C3.22044 3.58976 4.15034 2.68606 5.29743 2.68606H14.2548C15.4019 2.68606 16.3318 3.58976 16.3318 4.70454V11.6686C16.3318 11.9961 16.605 12.2616 16.942 12.2616C17.279 12.2616 17.5522 11.9961 17.5522 11.6686V4.70454C17.5522 2.93472 16.0759 1.5 14.2548 1.5H5.29743Z' fill='%23E42E2C'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.64105 4.1114C5.56198 4.1114 4.68722 4.96151 4.68722 6.01018C4.68722 7.05885 5.56198 7.90897 6.64105 7.90897H12.9112C13.9903 7.90897 14.865 7.05885 14.865 6.01018C14.865 4.96151 13.9903 4.1114 12.9112 4.1114H6.64105ZM5.90766 6.01018C5.90766 5.61655 6.23601 5.29745 6.64105 5.29745H12.9112C13.3162 5.29745 13.6446 5.61655 13.6446 6.01018C13.6446 6.40381 13.3162 6.72291 12.9112 6.72291H6.64105C6.23601 6.72291 5.90766 6.40381 5.90766 6.01018Z' fill='%23E42E2C'/%3E%3Cpath d='M4.59262 9.9277C4.59262 9.60018 4.86582 9.33467 5.20284 9.33467H6.28767C6.62469 9.33467 6.89789 9.60018 6.89789 9.9277C6.89789 10.2552 6.62469 10.5207 6.28767 10.5207H5.20284C4.86582 10.5207 4.59262 10.2552 4.59262 9.9277Z' fill='%23E42E2C'/%3E%3Cpath d='M5.20284 11.907C4.86582 11.907 4.59262 12.1725 4.59262 12.5C4.59262 12.8275 4.86582 13.093 5.20284 13.093H6.28767C6.62469 13.093 6.89789 12.8275 6.89789 12.5C6.89789 12.1725 6.62469 11.907 6.28767 11.907H5.20284Z' fill='%23E42E2C'/%3E%3Cpath d='M4.59262 15.0723C4.59262 14.7448 4.86582 14.4793 5.20284 14.4793H6.28767C6.62469 14.4793 6.89789 14.7448 6.89789 15.0723C6.89789 15.3998 6.62469 15.6653 6.28767 15.6653H5.20284C4.86582 15.6653 4.59262 15.3998 4.59262 15.0723Z' fill='%23E42E2C'/%3E%3Cpath d='M9.23361 9.33467C8.89659 9.33467 8.62339 9.60018 8.62339 9.9277C8.62339 10.2552 8.89659 10.5207 9.23361 10.5207H10.3184C10.6555 10.5207 10.9287 10.2552 10.9287 9.9277C10.9287 9.60018 10.6555 9.33467 10.3184 9.33467H9.23361Z' fill='%23E42E2C'/%3E%3Cpath d='M8.62339 12.5C8.62339 12.1725 8.89659 11.907 9.23361 11.907H10.3184C10.6555 11.907 10.9287 12.1725 10.9287 12.5C10.9287 12.8275 10.6555 13.093 10.3184 13.093H9.23361C8.89659 13.093 8.62339 12.8275 8.62339 12.5Z' fill='%23E42E2C'/%3E%3Cpath d='M13.2644 9.33467C12.9274 9.33467 12.6542 9.60018 12.6542 9.9277C12.6542 10.2552 12.9274 10.5207 13.2644 10.5207H14.3492C14.6862 10.5207 14.9594 10.2552 14.9594 9.9277C14.9594 9.60018 14.6862 9.33467 14.3492 9.33467H13.2644Z' fill='%23E42E2C'/%3E%3Cpath d='M12.6542 12.5C12.6542 12.1725 12.9274 11.907 13.2644 11.907H14.3492C14.6862 11.907 14.9594 12.1725 14.9594 12.5C14.9594 12.8275 14.6862 13.093 14.3492 13.093H13.2644C12.9274 13.093 12.6542 12.8275 12.6542 12.5Z' fill='%23E42E2C'/%3E%3Cpath d='M17.8213 14.6992C18.0596 14.4676 18.0596 14.0921 17.8213 13.8605C17.583 13.6289 17.1966 13.6289 16.9583 13.8605L13.6727 17.0536L12.0136 15.3261C11.7837 15.0866 11.3975 15.0737 11.1511 15.2972C10.9048 15.5206 10.8914 15.8959 11.1214 16.1353L13.2114 18.3116C13.3244 18.4292 13.4816 18.4971 13.647 18.4999C13.8125 18.5027 13.972 18.44 14.089 18.3263L17.8213 14.6992Z' fill='%23E42E2C'/%3E%3C/svg%3E%0A");
}
.custom-menu-primary .hs-menu-wrapper ul > li.FinTech > a:before {
    content: "";
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.42379 11.6538C6.42379 11.3455 6.17391 11.0957 5.86566 11.0957C5.5574 11.0957 5.30752 11.3455 5.30752 11.6538V14.1344C5.30752 14.4427 5.5574 14.6926 5.86566 14.6926C6.17391 14.6926 6.42379 14.4427 6.42379 14.1344V11.6538Z' fill='%23E42E2C'/%3E%3Cpath d='M8.34623 9.44186C8.65448 9.44186 8.90437 9.69175 8.90437 10V14.1344C8.90437 14.4426 8.65448 14.6925 8.34623 14.6925C8.03798 14.6925 7.78809 14.4426 7.78809 14.1344L7.78809 10C7.78809 9.69175 8.03798 9.44186 8.34623 9.44186Z' fill='%23E42E2C'/%3E%3Cpath d='M13.8986 9.6417C13.4189 9.443 12.8911 9.39101 12.3818 9.49231C11.8725 9.59361 11.4048 9.84364 11.0376 10.2108C10.6704 10.578 10.4204 11.0457 10.3191 11.555C10.2178 12.0643 10.2698 12.5921 10.4685 13.0719C10.6672 13.5516 11.0037 13.9616 11.4354 14.2501C11.8672 14.5385 12.3747 14.6925 12.894 14.6925C13.2022 14.6925 13.4521 14.4426 13.4521 14.1344C13.4521 13.8261 13.2022 13.5762 12.894 13.5762C12.5955 13.5762 12.3038 13.4877 12.0556 13.3219C11.8074 13.1561 11.614 12.9204 11.4998 12.6447C11.3856 12.3689 11.3557 12.0655 11.4139 11.7728C11.4722 11.4801 11.6159 11.2112 11.8269 11.0001C12.038 10.7891 12.3069 10.6454 12.5996 10.5871C12.8923 10.5289 13.1957 10.5588 13.4715 10.673C13.7472 10.7872 13.9829 10.9806 14.1487 11.2288C14.3145 11.477 14.403 11.7687 14.403 12.0672C14.403 12.3754 14.6529 12.6253 14.9612 12.6253C15.2694 12.6253 15.5193 12.3754 15.5193 12.0672C15.5193 11.5479 15.3653 11.0404 15.0769 10.6086C14.7884 10.1769 14.3784 9.84041 13.8986 9.6417Z' fill='%23E42E2C'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.0388 2C3.36054 2 2.00005 3.3605 2.00005 5.03876V6.68561L2 6.69286L2.00005 6.70011V14.9612C2.00005 16.6395 3.36054 18 5.0388 18H14.9612C16.6395 18 18 16.6395 18 14.9612V5.03876C18 3.3605 16.6395 2 14.9612 2H5.0388ZM3.11632 7.251V14.9612C3.11632 16.023 3.97704 16.8837 5.0388 16.8837H14.9612C16.023 16.8837 16.8837 16.023 16.8837 14.9612V7.251L3.11632 7.251ZM16.8837 6.13472V5.03876C16.8837 3.977 16.023 3.11628 14.9612 3.11628H8.90437L8.90437 6.13472H16.8837ZM7.78809 6.13472V3.11628H5.0388C3.97704 3.11628 3.11632 3.977 3.11632 5.03876V6.13472L7.78809 6.13472Z' fill='%23E42E2C'/%3E%3C/svg%3E%0A");
}
.custom-menu-primary .hs-menu-wrapper ul > li.Insurance > a:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.7612 2.04791C9.91369 1.98403 10.0863 1.98403 10.2388 2.04791L16.1326 4.51705C16.3555 4.61043 16.5 4.82467 16.5 5.06173V11.6461C16.5 13.5835 15.0329 15.1778 13.6322 16.231C12.9133 16.7716 12.1678 17.2036 11.5424 17.5025C11.2297 17.652 10.9402 17.7714 10.6931 17.8549C10.4671 17.9314 10.2139 18 10 18C9.78612 18 9.53292 17.9314 9.30686 17.8549C9.05981 17.7714 8.77032 17.652 8.45763 17.5025C7.83216 17.2036 7.08665 16.7716 6.36775 16.231C4.9671 15.1778 3.5 13.5835 3.5 11.6461V5.06173C3.5 4.82467 3.64452 4.61043 3.86742 4.51705L9.7612 2.04791ZM4.71244 5.45248V11.6461C4.71244 13.0008 5.77124 14.2872 7.10699 15.2916C7.75629 15.7798 8.4316 16.1709 8.99015 16.4378C9.26947 16.5713 9.51279 16.6705 9.70317 16.7348C9.8935 16.7992 9.98449 16.8125 9.99824 16.8145L10 16.8148L10.0018 16.8145C10.0155 16.8125 10.1065 16.7992 10.2968 16.7348C10.4872 16.6705 10.7305 16.5713 11.0099 16.4378C11.5684 16.1709 12.2437 15.7798 12.893 15.2916C14.2288 14.2872 15.2876 13.0008 15.2876 11.6461V5.45248L10 3.23731L4.71244 5.45248Z' fill='%23E42E2C'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.7252 8.60802C12.9619 8.83944 12.9619 9.21465 12.7252 9.44607L10.1993 11.9152C10.0856 12.0263 9.93139 12.0888 9.77061 12.0888C9.60983 12.0888 9.45563 12.0263 9.34195 11.9152L7.65801 10.2691C7.42127 10.0377 7.42127 9.66248 7.65801 9.43106C7.89475 9.19964 8.27859 9.19964 8.51533 9.43106L9.77061 10.6581L11.8679 8.60802C12.1046 8.37659 12.4884 8.37659 12.7252 8.60802Z' fill='%23E42E2C'/%3E%3C/svg%3E%0A");
   
}
.custom-menu-primary .hs-menu-wrapper ul > li.Technology\&.Software > a:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.7277 3C4.22123 3 3 4.22123 3 5.7277V11.4241C3 12.9306 4.22123 14.1518 5.7277 14.1518H7.98434V15.8169H5.72766C5.40096 15.8169 5.13611 16.0817 5.13611 16.4085C5.13611 16.7352 5.40096 17 5.72766 17H14.2723C14.599 17 14.8638 16.7352 14.8638 16.4085C14.8638 16.0817 14.599 15.8169 14.2723 15.8169H12.0156V14.1518H14.2723C15.7781 14.1518 16.9989 12.9317 17 11.4261L15.8169 10.5418V10.5401L17 11.4242V5.7277C17 4.22123 15.7788 3 14.2723 3H5.7277ZM7.31078 4.1831H5.7277C4.87464 4.1831 4.1831 4.87464 4.1831 5.7277V10.8327H15.8169V10.5418L7.31078 4.1831ZM7.31078 4.1831L15.8169 10.5401V5.7277C15.8169 4.87464 15.1254 4.1831 14.2723 4.1831H7.31078ZM10.8325 15.8169V14.152H9.16744V15.8169H10.8325ZM4.30048 12.0158H15.6995C15.4673 12.5752 14.9158 12.9687 14.2723 12.9687H5.7277C5.08424 12.9687 4.53268 12.5752 4.30048 12.0158Z' fill='%23E42E2C'/%3E%3C/svg%3E%0A");
}
.custom-menu-primary .hs-menu-wrapper ul > li.Construction > a:before{
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_167_306)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.3908 15.0381H15.091C15.091 15.0381 15.091 15.0333 15.091 15.0284L11.4646 4.73586C11.4646 4.73586 11.4549 4.72143 11.4501 4.707C11.3341 4.29818 10.9569 3.99518 10.5073 3.99518C10.0576 3.99518 9.69011 4.29337 9.56923 4.69738C9.5644 4.71181 9.54989 4.72143 9.54505 4.73586L5.91868 15.0284C5.91868 15.0284 5.91868 15.0333 5.91868 15.0381H5.60923C5.27077 15.0381 5 15.2545 5 15.519C5 15.7836 5.2756 16 5.60923 16H15.3859C15.7244 16 15.9952 15.7836 15.9952 15.519C15.9952 15.2545 15.7196 15.0381 15.3859 15.0381H15.3908ZM8.7811 9.81963H12.2286L13.0844 12.2485H7.92527L8.7811 9.81963ZM10.5459 5.02444C10.5459 5.02444 10.5459 5.04368 10.5459 5.05329L11.8853 8.85289H9.11473L10.4541 5.05329C10.4541 5.05329 10.4541 5.02925 10.4541 5.01963C10.4637 5.0052 10.4782 4.99558 10.4976 4.99558C10.5169 4.99558 10.5314 5.01001 10.5411 5.02444H10.5459ZM7.58681 13.2056H13.4229L14.0659 15.0381H6.94374L7.58681 13.2056Z' fill='%23E42E2C'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 15.5C5 15.2239 5.1824 15 5.40741 15H15.5926C15.8176 15 16 15.2239 16 15.5C16 15.7761 15.8176 16 15.5926 16H5.40741C5.1824 16 5 15.7761 5 15.5Z' fill='%23E42E2C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_167_306'%3E%3Crect width='11' height='12' fill='white' transform='translate(5 4)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.custom-menu-primary .hs-menu-wrapper ul > li.Hire\&.Rental > a:before{
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_167_306)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.3908 15.0381H15.091C15.091 15.0381 15.091 15.0333 15.091 15.0284L11.4646 4.73586C11.4646 4.73586 11.4549 4.72143 11.4501 4.707C11.3341 4.29818 10.9569 3.99518 10.5073 3.99518C10.0576 3.99518 9.69011 4.29337 9.56923 4.69738C9.5644 4.71181 9.54989 4.72143 9.54505 4.73586L5.91868 15.0284C5.91868 15.0284 5.91868 15.0333 5.91868 15.0381H5.60923C5.27077 15.0381 5 15.2545 5 15.519C5 15.7836 5.2756 16 5.60923 16H15.3859C15.7244 16 15.9952 15.7836 15.9952 15.519C15.9952 15.2545 15.7196 15.0381 15.3859 15.0381H15.3908ZM8.7811 9.81963H12.2286L13.0844 12.2485H7.92527L8.7811 9.81963ZM10.5459 5.02444C10.5459 5.02444 10.5459 5.04368 10.5459 5.05329L11.8853 8.85289H9.11473L10.4541 5.05329C10.4541 5.05329 10.4541 5.02925 10.4541 5.01963C10.4637 5.0052 10.4782 4.99558 10.4976 4.99558C10.5169 4.99558 10.5314 5.01001 10.5411 5.02444H10.5459ZM7.58681 13.2056H13.4229L14.0659 15.0381H6.94374L7.58681 13.2056Z' fill='%23E42E2C'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 15.5C5 15.2239 5.1824 15 5.40741 15H15.5926C15.8176 15 16 15.2239 16 15.5C16 15.7761 15.8176 16 15.5926 16H5.40741C5.1824 16 5 15.7761 5 15.5Z' fill='%23E42E2C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_167_306'%3E%3Crect width='11' height='12' fill='white' transform='translate(5 4)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.custom-menu-primary .hs-menu-wrapper ul > li.RealEstate > a:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.87295 6.69812C6.32881 6.69812 6.69835 6.32858 6.69835 5.87273C6.69835 5.41687 6.32881 5.04733 5.87295 5.04733C5.4171 5.04733 5.04755 5.41687 5.04755 5.87273C5.04755 6.32858 5.4171 6.69812 5.87295 6.69812Z' fill='%23E42E2C'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 7.11111C2 4.28832 4.28832 2 7.11111 2C9.9339 2 12.2222 4.28832 12.2222 7.11111C12.2222 7.66116 12.1351 8.19179 11.9737 8.68941L17.8326 14.5483C17.9398 14.6555 18 14.8008 18 14.9524V17.4286C18 17.7442 17.7442 18 17.4286 18H14.9524C14.8008 18 14.6555 17.9398 14.5483 17.8326L13.3147 16.599L13.3102 16.5945L13.3057 16.59L11.6639 14.9483L11.6594 14.9437L11.6549 14.9392L8.68941 11.9737C8.19179 12.1351 7.66116 12.2222 7.11111 12.2222C4.28832 12.2222 2 9.9339 2 7.11111ZM15.1891 16.8571L14.5224 16.1905L14.9437 15.7691C15.1669 15.546 15.1669 15.1842 14.9437 14.961C14.7205 14.7379 14.3587 14.7379 14.1356 14.961L13.7143 15.3823L12.8716 14.5397L13.2929 14.1183C13.5161 13.8952 13.5161 13.5334 13.2929 13.3102C13.0697 13.0871 12.7079 13.0871 12.4848 13.3102L12.0635 13.7315L9.23966 10.9077C9.07664 10.7447 8.83163 10.6956 8.61839 10.7833C8.15441 10.9739 7.64579 11.0794 7.11111 11.0794C4.9195 11.0794 3.14286 9.30272 3.14286 7.11111C3.14286 4.9195 4.9195 3.14286 7.11111 3.14286C9.30272 3.14286 11.0794 4.9195 11.0794 7.11111C11.0794 7.64579 10.9739 8.15441 10.7833 8.61839C10.6956 8.83163 10.7447 9.07664 10.9077 9.23966L16.8571 15.1891V16.8571H15.1891Z' fill='%23E42E2C'/%3E%3C/svg%3E%0A");
    
}
.custom-menu-primary .hs-menu-wrapper ul > li.Healthcare > a:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.60526 2.63158C6.60526 2.28277 6.88803 2 7.23684 2H12.7632C13.112 2 13.3947 2.28277 13.3947 2.63158V6.60526H17.3684C17.7172 6.60526 18 6.88803 18 7.23684V12.7632C18 13.112 17.7172 13.3947 17.3684 13.3947H13.3947V17.3684C13.3947 17.7172 13.112 18 12.7632 18H7.23684C6.88803 18 6.60526 17.7172 6.60526 17.3684V13.3947H2.63158C2.28277 13.3947 2 13.112 2 12.7632V7.23684C2 6.88803 2.28277 6.60526 2.63158 6.60526H6.60526V2.63158ZM7.86842 3.26316V7.23684C7.86842 7.58565 7.58565 7.86842 7.23684 7.86842H3.26316V12.1316H7.23684C7.58565 12.1316 7.86842 12.4143 7.86842 12.7632V16.7368H12.1316V12.7632C12.1316 12.4143 12.4143 12.1316 12.7632 12.1316H16.7368V7.86842H12.7632C12.4143 7.86842 12.1316 7.58565 12.1316 7.23684V3.26316H7.86842Z' fill='%23E42E2C'/%3E%3C/svg%3E%0A");
    
}
.custom-menu-primary .hs-menu-wrapper ul > li.HR > a:before{
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 3.19255C8.49042 3.19255 7.26667 4.4087 7.26667 5.9089C7.26667 7.4091 8.49042 8.62526 10 8.62526C11.5096 8.62526 12.7333 7.4091 12.7333 5.9089C12.7333 4.4087 11.5096 3.19255 10 3.19255ZM6.06667 5.9089C6.06667 3.75008 7.82768 2 10 2C12.1723 2 13.9333 3.75008 13.9333 5.9089C13.9333 8.06773 12.1723 9.8178 10 9.8178C7.82768 9.8178 6.06667 8.06773 6.06667 5.9089Z' fill='%23E42E2C'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.20634 12.8609C5.21206 11.7077 6.68333 11.0435 8.23232 11.0435H8.31606C8.44723 11.0435 8.57486 11.0851 8.67979 11.1622L10 12.1315L11.3202 11.1622C11.4251 11.0851 11.5528 11.0435 11.6839 11.0435H11.7677C13.3167 11.0435 14.7879 11.7077 15.7937 12.8609C16.2495 13.3837 16.5 14.0485 16.5 14.7359V14.9339C16.5 16.6272 15.0977 18 13.3679 18H6.63213C4.9023 18 3.5 16.6272 3.5 14.9339V14.7359C3.5 14.0485 3.75045 13.3837 4.20634 12.8609ZM8.11619 12.232C6.96483 12.264 5.87865 12.7713 5.12846 13.6315C4.85995 13.9394 4.71244 14.331 4.71244 14.7359V14.9339C4.71244 15.9717 5.57191 16.8131 6.63213 16.8131H13.3679C14.4281 16.8131 15.2876 15.9717 15.2876 14.9339V14.7359C15.2876 14.331 15.1401 13.9394 14.8715 13.6315C14.1213 12.7713 13.0352 12.264 11.8838 12.232L10.5978 13.1762L11 14.3893C11.1152 14.5773 11.1152 14.8121 11 15L10.5 15.5C10.4737 15.5448 10.4413 15.5866 10.403 15.6241C10.3512 15.6749 10.2911 15.7152 10.2262 15.7442C10.1452 15.7805 10.0593 15.7979 9.97426 15.7979C9.88925 15.7979 9.80336 15.7805 9.72234 15.7442C9.65745 15.7152 9.59736 15.6749 9.5455 15.6241C9.50722 15.5866 9.47477 15.5448 9.44852 15.5L8.94998 15C8.8348 14.8121 8.8348 14.5773 8.94998 14.3893L9.34405 13.1335L8.11619 12.232Z' fill='%23E42E2C'/%3E%3C/svg%3E%0A");
}
.custom-menu-primary .hs-menu-wrapper ul > li.Travel\&.Hospitality > a:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.00005 16.4204C2.00005 16.1003 2.26536 15.8408 2.59264 15.8408H17.4074C17.7347 15.8408 18 16.1003 18 16.4204C18 16.7405 17.7347 17 17.4074 17H2.59264C2.26536 17 2.00005 16.7405 2.00005 16.4204Z' fill='%23E42E2C'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.4547 3.00031L7.90739 3C8.03624 2.99998 8.16158 3.04104 8.26443 3.11696L12.8267 6.48463L14.6681 5.46736C15.7373 4.87673 17.09 5.23986 17.7013 6.28144C18.3192 7.3344 17.9458 8.68128 16.8687 9.28467L9.51058 13.4067C8.69974 13.8609 7.7205 13.8406 6.94348 13.3936C6.85061 13.3704 6.76339 13.3252 6.69033 13.2598L2.19271 9.23714C2.02546 9.08754 1.96009 8.85774 2.02431 8.64515C2.08854 8.43256 2.27111 8.27441 2.49463 8.23776L4.94788 7.83549C5.0841 7.81316 5.22403 7.83807 5.34347 7.90592L7.76445 9.28124L8.99645 8.60064L5.0012 3.95293C4.85293 3.78045 4.82031 3.53955 4.91756 3.33527C5.01481 3.13098 5.2243 3.00034 5.4547 3.00031ZM7.34516 12.2747C7.37923 12.2899 7.41205 12.3084 7.44311 12.3301C7.87265 12.6302 8.44949 12.6652 8.92155 12.4008L16.2797 8.27875C16.7884 7.99377 16.9653 7.35588 16.6734 6.85851C16.3864 6.36941 15.7529 6.19943 15.251 6.47671L13.0713 7.68086C12.8659 7.79434 12.6112 7.77784 12.4229 7.63883L7.70899 4.15925L6.7271 4.15938L10.3629 8.38897C10.4764 8.52092 10.5238 8.6954 10.4925 8.86504C10.4612 9.03469 10.3543 9.18188 10.2008 9.26666L8.05177 10.4539C7.8687 10.555 7.64454 10.5537 7.46272 10.4504L4.93305 9.01333L3.88998 9.18436L7.34516 12.2747Z' fill='%23E42E2C'/%3E%3C/svg%3E%0A");
    
}
.custom-menu-primary .hs-menu-wrapper ul > li.Sales > a:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.57143 2C2.88702 2 3.14286 2.25584 3.14286 2.57143V16.8571H17.4286C17.7442 16.8571 18 17.113 18 17.4286C18 17.7442 17.7442 18 17.4286 18H2.57143C2.25584 18 2 17.7442 2 17.4286V2.57143C2 2.25584 2.25584 2 2.57143 2Z' fill='%23E42E2C'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.9523 6.44444C14.6368 6.44444 14.3809 6.1886 14.3809 5.87301C14.3809 5.55742 14.6368 5.30158 14.9523 5.30158H17.4285C17.7441 5.30158 18 5.55742 18 5.87301V8.3492C18 8.66479 17.7441 8.92063 17.4285 8.92063C17.1129 8.92063 16.8571 8.66479 16.8571 8.3492V7.25256L12.0548 12.0548C11.8317 12.278 11.4699 12.278 11.2467 12.0548L8.34917 9.15732L5.45164 12.0548C5.22849 12.278 4.86668 12.278 4.64352 12.0548C4.42036 11.8317 4.42036 11.4699 4.64352 11.2467L7.94511 7.94514C8.16826 7.72198 8.53007 7.72198 8.75323 7.94514L11.6508 10.8427L16.049 6.44444H14.9523Z' fill='%23E42E2C'/%3E%3C/svg%3E%0A");
    
}
.custom-menu-primary .hs-menu-wrapper ul > li.Legal\(Risk,
.Compliance\) > a:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.3301 9.01395L12.227 9.33127C12.0589 9.34638 11.9125 9.43704 11.8258 9.56296C11.777 9.63851 11.7553 9.88532 11.7607 9.91554C11.7986 11.1798 12.9157 12.2022 14.2822 12.2022H14.4775C15.844 12.2022 16.9665 11.1798 16.999 9.91554C17.0044 9.88532 16.9882 9.63851 16.9339 9.56296C16.8472 9.43704 16.7008 9.35141 16.5327 9.33127L15.1499 5.08524H15.3234C15.6216 5.08524 15.8657 4.85858 15.8657 4.58156C15.8657 4.30453 15.6216 4.07788 15.3234 4.07788H10.9907V3.50368C10.9907 3.22666 10.7466 3 10.4484 3C10.1501 3 9.90613 3.22666 9.90613 3.50368V4.07788H5.5734C5.27515 4.07788 5.03113 4.30453 5.03113 4.58156C5.03113 4.85858 5.27515 5.08524 5.5734 5.08524H5.84995L4.46717 9.33127C4.29906 9.34638 4.15265 9.43704 4.06589 9.56296C4.01708 9.63851 3.99539 9.88532 4.00081 9.91554C4.03877 11.1798 5.15585 12.2022 6.52237 12.2022H6.71758C8.0841 12.2022 9.2066 11.1798 9.23914 9.91554C9.24456 9.88532 9.22829 9.63851 9.17406 9.56296C9.0873 9.43704 8.94089 9.35141 8.77279 9.33127L7.39 5.08524H9.90071V13.5169H6.90738C6.66336 13.5169 6.46272 13.7385 6.45729 14.0105V14.9926H6.10482C5.80657 14.9926 5.56255 15.2193 5.56255 15.4963C5.56255 15.7733 5.80657 16 6.10482 16H14.7811C15.0794 16 15.3234 15.7733 15.3234 15.4963C15.3234 15.2193 15.0794 14.9926 14.7811 14.9926H14.5696V14.0105C14.5696 13.7385 14.369 13.5169 14.1196 13.5169H10.9852V5.09028H13.599L12.3192 9.01898L12.3301 9.01395ZM8.34982 10.3286C8.12748 10.9733 7.47676 11.4467 6.71216 11.4467H6.52237C5.75777 11.4467 5.10704 10.9733 4.88471 10.3286H8.34982ZM7.63402 9.30608V9.32119H5.60051V9.30608L6.61998 6.19334L7.63402 9.30608ZM7.54726 14.9977V14.5293H13.496V14.9977H7.54726ZM16.1097 10.3286C15.8874 10.9733 15.2366 11.4467 14.472 11.4467H14.2822C13.5176 11.4467 12.8669 10.9733 12.6446 10.3286H16.1097ZM15.3939 9.30608V9.32119H13.3604V9.30608L14.3799 6.19334L15.3939 9.30608Z' fill='%23E42E2C'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 15.5C5 15.2239 5.18942 15 5.42308 15H15.5769C15.8106 15 16 15.2239 16 15.5C16 15.7761 15.8106 16 15.5769 16H5.42308C5.18942 16 5 15.7761 5 15.5Z' fill='%23E42E2C'/%3E%3C/svg%3E%0A");
    
}
.custom-menu-primary .hs-menu-wrapper ul > li.Procurement > a:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.55814 2C2.24989 2 2 2.24989 2 2.55814C2 2.86639 2.24989 3.11628 2.55814 3.11628C3.19271 3.11628 3.72859 3.58746 3.8098 4.21681L4.92628 12.8694C5.0267 13.6477 5.41593 14.3256 5.97782 14.8008C5.56901 15.1305 5.30748 15.6355 5.30748 16.2016C5.30748 17.1948 6.11268 18 7.10593 18C8.09919 18 8.90439 17.1948 8.90439 16.2016C8.90439 15.9601 8.85679 15.7297 8.77047 15.5193H12.8833C12.7969 15.7297 12.7493 15.9601 12.7493 16.2016C12.7493 17.1948 13.5545 18 14.5478 18C15.541 18 16.3462 17.1948 16.3462 16.2016C16.3462 15.5174 15.9642 14.9224 15.4018 14.6184C15.2997 14.4873 15.1403 14.403 14.9613 14.403H7.94005C7.08157 14.403 6.34164 13.8369 6.10016 13.0387H15.7881C16.0497 13.0387 16.2762 12.857 16.333 12.6016L17.9867 5.15979C18.0234 4.99453 17.9832 4.82153 17.8772 4.68947C17.7713 4.55742 17.6112 4.48058 17.4419 4.48058H5.03872C5.01542 4.48058 4.99246 4.48201 4.96991 4.48478L4.9169 4.07396C4.76387 2.88794 3.75398 2 2.55814 2ZM5.11341 5.59685L5.92961 11.9224H15.3404L16.7461 5.59685H5.11341ZM6.42376 16.2016C6.42376 15.8248 6.72917 15.5194 7.10593 15.5194C7.48269 15.5194 7.78811 15.8248 7.78811 16.2016C7.78811 16.5783 7.48269 16.8837 7.10593 16.8837C6.72917 16.8837 6.42376 16.5783 6.42376 16.2016ZM14.5478 15.5194C14.171 15.5194 13.8656 15.8248 13.8656 16.2016C13.8656 16.5783 14.171 16.8837 14.5478 16.8837C14.9245 16.8837 15.23 16.5783 15.23 16.2016C15.23 15.8248 14.9245 15.5194 14.5478 15.5194Z' fill='%23E42E2C'/%3E%3C/svg%3E%0A");
    
}
.custom-menu-primary .hs-menu-wrapper ul > li.Gambling > a:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_166_527)'%3E%3Cpath d='M10.6003 5.06667C10.6003 4.7353 10.3316 4.46667 10.0003 4.46667C9.66889 4.46667 9.40027 4.7353 9.40027 5.06667V6.15612C8.77362 6.257 8.14468 6.53816 7.61683 7.09842C7.6058 7.11013 7.59524 7.12228 7.58519 7.13483C7.33615 7.44584 7.1821 7.77452 7.13956 8.11661C7.09661 8.46201 7.17342 8.77304 7.30781 9.03444C7.56271 9.53024 8.03079 9.86255 8.35303 10.0493C8.57438 10.1775 8.77598 10.2648 8.89331 10.3064L9.05126 10.3627C9.34185 10.4659 9.6606 10.5486 9.94593 10.6226C10.0685 10.6544 10.1849 10.6846 10.2903 10.7141C10.6769 10.8224 11.0858 10.982 11.3985 11.1856C11.7136 11.3908 11.8383 11.5778 11.8655 11.7208C11.8831 11.978 11.6458 12.3417 11.174 12.5206C10.5875 12.743 9.91542 12.7234 9.27912 12.5861C8.64698 12.4498 8.10449 12.2089 7.81846 12.0546C7.52683 11.8972 7.16287 12.0061 7.00553 12.2977C6.8482 12.5894 6.95707 12.9533 7.2487 13.1107C7.61262 13.307 8.2617 13.5943 9.02614 13.7591C9.14687 13.7852 9.27187 13.8085 9.40027 13.8279V14.9331C9.40027 15.2645 9.66889 15.5331 10.0003 15.5331C10.3316 15.5331 10.6003 15.2645 10.6003 14.9331V13.8697C10.9322 13.8387 11.2691 13.7679 11.5995 13.6426C12.332 13.3648 13.1664 12.6136 13.0577 11.5815C13.0567 11.5725 13.0556 11.5635 13.0542 11.5546C12.9569 10.9111 12.4935 10.4667 12.0533 10.18C11.6007 9.88534 11.0648 9.68496 10.6141 9.55864C10.4587 9.51507 10.3161 9.47825 10.1808 9.44333C9.92427 9.37707 9.69413 9.31764 9.45287 9.23195L9.29595 9.17594L9.29357 9.17509C9.24916 9.15938 9.11507 9.10392 8.95462 9.01096C8.69398 8.85995 8.47033 8.67115 8.37501 8.48577C8.3343 8.40658 8.32138 8.33699 8.33037 8.26468C8.33945 8.19171 8.37658 8.07173 8.50717 7.90353C8.99427 7.39863 9.62773 7.25712 10.2695 7.32804C10.9376 7.40187 11.5368 7.70103 11.8288 7.95931C12.0771 8.17884 12.4562 8.15558 12.6758 7.90736C12.8953 7.65914 12.872 7.27996 12.6238 7.06043C12.1702 6.65923 11.4206 6.29303 10.6003 6.16219V5.06667Z' fill='%23E42E2C'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.0008 2.00012C5.58259 2.00012 2.00085 5.58175 2.00085 9.99994C2.00085 14.4181 5.58259 17.9998 10.0008 17.9998C14.4191 17.9998 18.0008 14.4181 18.0008 9.99994C18.0008 5.58175 14.4191 2.00012 10.0008 2.00012ZM3.20084 9.99994C3.20084 6.24451 6.24529 3.20011 10.0008 3.20011C13.7564 3.20011 16.8009 6.24451 16.8009 9.99994C16.8009 13.7554 13.7564 16.7998 10.0008 16.7998C6.24529 16.7998 3.20084 13.7554 3.20084 9.99994Z' fill='%23E42E2C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_166_527'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.custom-menu-primary .hs-menu-wrapper ul > li.Government > a:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.5526 16.5739H16.538V9.84766H17.5526C17.808 9.84766 18.0138 9.70576 18.1415 9.51419C18.1415 9.51419 18.1486 9.5071 18.1557 9.5C18.1557 9.5 18.1557 9.4929 18.1557 9.48581C18.1912 9.42905 18.2124 9.36519 18.2266 9.29424C18.2337 9.25876 18.2408 9.22329 18.2479 9.18781C18.2479 9.17362 18.255 9.15234 18.255 9.13815C18.255 9.10977 18.2408 9.08848 18.2408 9.06719C18.2408 9.00334 18.2266 8.94658 18.2053 8.88982C18.1982 8.86853 18.1912 8.84725 18.177 8.83306C18.1486 8.7621 18.106 8.69825 18.0492 8.64149C18.0492 8.64149 18.0422 8.63439 18.0351 8.6273C17.9996 8.59182 17.9641 8.54215 17.9144 8.51377L10.8477 4.11477V3.70326H13.8063V1.37604H10.7554C10.6348 1.15609 10.4078 1 10.1381 1C9.74791 1 9.42863 1.31928 9.42863 1.70952V4.10768L2.34766 8.52087C2.298 8.54925 2.26962 8.59182 2.22705 8.63439C2.22705 8.63439 2.21995 8.64149 2.21285 8.64858C2.15609 8.70534 2.12062 8.7692 2.08514 8.84015C2.07805 8.86144 2.06386 8.87563 2.05676 8.89691C2.03548 8.95367 2.02838 9.01043 2.02129 9.07429C2.02129 9.10267 2.0071 9.12396 2.0071 9.14524C2.0071 9.16653 2.01419 9.18072 2.01419 9.19491C2.01419 9.23038 2.02838 9.26586 2.03548 9.30134C2.04967 9.37229 2.07095 9.43614 2.10643 9.49291C2.10643 9.49291 2.10643 9.5 2.10643 9.5071C2.10643 9.5071 2.11352 9.51419 2.12062 9.52129C2.24833 9.71995 2.45409 9.85476 2.70952 9.85476H3.73831V16.581H2.70952C2.31928 16.581 2 16.9003 2 17.2905C2 17.6807 2.31928 18 2.70952 18H17.5384C17.9286 18 18.2479 17.6807 18.2479 17.2905C18.2479 16.9003 17.9286 16.581 17.5384 16.581L17.5526 16.5739ZM14.076 8.43573H5.17863L10.1381 5.34933L15.0977 8.43573H14.076ZM11.2805 9.85476V16.581H9.0384V9.85476H11.2805ZM5.17154 16.5739V9.84766H7.61937V16.5739H5.17154ZM12.6995 16.5739V9.84766H15.1189V16.5739H12.6995Z' fill='%23E42E2C'/%3E%3Cpath d='M10.1382 5.97369C9.5067 5.97369 8.99585 6.48455 8.99585 7.11601C8.99585 7.74748 9.5067 8.25833 10.1382 8.25833C10.7696 8.25833 11.2805 7.74748 11.2805 7.11601C11.2805 6.48455 10.7696 5.97369 10.1382 5.97369ZM10.1382 7.54172C9.90403 7.54172 9.70537 7.35015 9.70537 7.10892C9.70537 6.86768 9.89693 6.67611 10.1382 6.67611C10.3794 6.67611 10.571 6.86768 10.571 7.10892C10.571 7.35015 10.3794 7.54172 10.1382 7.54172Z' fill='%23E42E2C'/%3E%3C/svg%3E%0A");
}
.custom-menu-primary .hs-menu-wrapper ul > li.Blog > a:before {
    content: "";
    width: 20px;
    background-image: url('data:image/svg+xml,      <svg class="svgcolor" xmlns="http://www.w3.org/2000/svg" width="21" height="19" viewBox="0 0 21 19" fill="none"><path d="M17.5916 7.80681H15.6729C14.9157 7.80681 14.537 6.89214 15.0731 6.35611L16.4302 4.999C16.5961 4.83308 16.5961 4.56507 16.4302 4.39915L14.6264 2.59535C14.4605 2.42943 14.1924 2.42943 14.0265 2.59535L12.6694 3.95245C12.1334 4.48849 11.2187 4.10986 11.2187 3.3526V1.42543C11.2187 1.19144 11.0273 1 10.7933 1H8.24074C8.00676 1 7.81532 1.19144 7.81532 1.42543V3.34409C7.81532 4.10135 6.90065 4.47998 6.36461 3.94394L5.00751 2.58684C4.84159 2.42092 4.57357 2.42092 4.40766 2.58684L2.60385 4.39064C2.43794 4.55656 2.43794 4.82457 2.60385 4.99049L3.96096 6.3476C4.497 6.88363 4.11837 7.7983 3.36111 7.7983H1.42543C1.19144 7.7983 1 7.98974 1 8.22372V10.7763C1 11.0103 1.19144 11.2017 1.42543 11.2017H3.34409C4.10135 11.2017 4.47998 12.1164 3.94394 12.6524L2.58684 14.0095C2.42092 14.1754 2.42092 14.4434 2.58684 14.6094L4.39064 16.4132C4.55656 16.5791 4.82457 16.5791 4.99049 16.4132L6.3476 15.0561C6.88363 14.52 7.7983 14.8986 7.7983 15.6559V17.5746C7.7983 17.8086 7.98974 18 8.22372 18H10.7763C11.0103 18 11.2017 17.8086 11.2017 17.5746V15.6559C11.2017 14.8986 12.1164 14.52 12.6524 15.0561L14.0095 16.4132C14.1754 16.5791 14.4434 16.5791 14.6094 16.4132L16.4132 14.6094C16.5791 14.4434 16.5791 14.1754 16.4132 14.0095L15.0561 12.6524C14.52 12.1164 14.8986 11.2017 15.6559 11.2017H17.5746C17.8086 11.2017 18 11.0103 18 10.7763V8.22372C18 7.98974 17.8086 7.7983 17.5746 7.7983L17.5916 7.80681Z" stroke="%23E53131" stroke-width="1.5" stroke-miterlimit="10" /><path d="M9.5085 12.4865C11.1532 12.4865 12.4865 11.1532 12.4865 9.50848C12.4865 7.86379 11.1532 6.5305 9.5085 6.5305C7.8638 6.5305 6.53052 7.86379 6.53052 9.50848C6.53052 11.1532 7.8638 12.4865 9.5085 12.4865Z" stroke="%23E53131" stroke-width="1.5" stroke-miterlimit="10" /></svg>');
}
.custom-menu-primary .hs-menu-wrapper ul > li.SeePrivy.in.Action > a:before {
    content: "";
    width: 20px;
    background-image: url('data:image/svg+xml,      <svg class="svgcolor" xmlns="http://www.w3.org/2000/svg" width="21" height="19" viewBox="0 0 21 19" fill="none"><path d="M17.5916 7.80681H15.6729C14.9157 7.80681 14.537 6.89214 15.0731 6.35611L16.4302 4.999C16.5961 4.83308 16.5961 4.56507 16.4302 4.39915L14.6264 2.59535C14.4605 2.42943 14.1924 2.42943 14.0265 2.59535L12.6694 3.95245C12.1334 4.48849 11.2187 4.10986 11.2187 3.3526V1.42543C11.2187 1.19144 11.0273 1 10.7933 1H8.24074C8.00676 1 7.81532 1.19144 7.81532 1.42543V3.34409C7.81532 4.10135 6.90065 4.47998 6.36461 3.94394L5.00751 2.58684C4.84159 2.42092 4.57357 2.42092 4.40766 2.58684L2.60385 4.39064C2.43794 4.55656 2.43794 4.82457 2.60385 4.99049L3.96096 6.3476C4.497 6.88363 4.11837 7.7983 3.36111 7.7983H1.42543C1.19144 7.7983 1 7.98974 1 8.22372V10.7763C1 11.0103 1.19144 11.2017 1.42543 11.2017H3.34409C4.10135 11.2017 4.47998 12.1164 3.94394 12.6524L2.58684 14.0095C2.42092 14.1754 2.42092 14.4434 2.58684 14.6094L4.39064 16.4132C4.55656 16.5791 4.82457 16.5791 4.99049 16.4132L6.3476 15.0561C6.88363 14.52 7.7983 14.8986 7.7983 15.6559V17.5746C7.7983 17.8086 7.98974 18 8.22372 18H10.7763C11.0103 18 11.2017 17.8086 11.2017 17.5746V15.6559C11.2017 14.8986 12.1164 14.52 12.6524 15.0561L14.0095 16.4132C14.1754 16.5791 14.4434 16.5791 14.6094 16.4132L16.4132 14.6094C16.5791 14.4434 16.5791 14.1754 16.4132 14.0095L15.0561 12.6524C14.52 12.1164 14.8986 11.2017 15.6559 11.2017H17.5746C17.8086 11.2017 18 11.0103 18 10.7763V8.22372C18 7.98974 17.8086 7.7983 17.5746 7.7983L17.5916 7.80681Z" stroke="%23E53131" stroke-width="1.5" stroke-miterlimit="10" /><path d="M9.5085 12.4865C11.1532 12.4865 12.4865 11.1532 12.4865 9.50848C12.4865 7.86379 11.1532 6.5305 9.5085 6.5305C7.8638 6.5305 6.53052 7.86379 6.53052 9.50848C6.53052 11.1532 7.8638 12.4865 9.5085 12.4865Z" stroke="%23E53131" stroke-width="1.5" stroke-miterlimit="10" /></svg>');
}
.custom-menu-primary .hs-menu-wrapper ul > li.User\Guide > a:before {
    content: "";
    width: 20px;
    background-image: url('data:image/svg+xml,      <svg class="svgcolor" xmlns="http://www.w3.org/2000/svg" width="21" height="19" viewBox="0 0 21 19" fill="none"><path d="M17.5916 7.80681H15.6729C14.9157 7.80681 14.537 6.89214 15.0731 6.35611L16.4302 4.999C16.5961 4.83308 16.5961 4.56507 16.4302 4.39915L14.6264 2.59535C14.4605 2.42943 14.1924 2.42943 14.0265 2.59535L12.6694 3.95245C12.1334 4.48849 11.2187 4.10986 11.2187 3.3526V1.42543C11.2187 1.19144 11.0273 1 10.7933 1H8.24074C8.00676 1 7.81532 1.19144 7.81532 1.42543V3.34409C7.81532 4.10135 6.90065 4.47998 6.36461 3.94394L5.00751 2.58684C4.84159 2.42092 4.57357 2.42092 4.40766 2.58684L2.60385 4.39064C2.43794 4.55656 2.43794 4.82457 2.60385 4.99049L3.96096 6.3476C4.497 6.88363 4.11837 7.7983 3.36111 7.7983H1.42543C1.19144 7.7983 1 7.98974 1 8.22372V10.7763C1 11.0103 1.19144 11.2017 1.42543 11.2017H3.34409C4.10135 11.2017 4.47998 12.1164 3.94394 12.6524L2.58684 14.0095C2.42092 14.1754 2.42092 14.4434 2.58684 14.6094L4.39064 16.4132C4.55656 16.5791 4.82457 16.5791 4.99049 16.4132L6.3476 15.0561C6.88363 14.52 7.7983 14.8986 7.7983 15.6559V17.5746C7.7983 17.8086 7.98974 18 8.22372 18H10.7763C11.0103 18 11.2017 17.8086 11.2017 17.5746V15.6559C11.2017 14.8986 12.1164 14.52 12.6524 15.0561L14.0095 16.4132C14.1754 16.5791 14.4434 16.5791 14.6094 16.4132L16.4132 14.6094C16.5791 14.4434 16.5791 14.1754 16.4132 14.0095L15.0561 12.6524C14.52 12.1164 14.8986 11.2017 15.6559 11.2017H17.5746C17.8086 11.2017 18 11.0103 18 10.7763V8.22372C18 7.98974 17.8086 7.7983 17.5746 7.7983L17.5916 7.80681Z" stroke="%23E53131" stroke-width="1.5" stroke-miterlimit="10" /><path d="M9.5085 12.4865C11.1532 12.4865 12.4865 11.1532 12.4865 9.50848C12.4865 7.86379 11.1532 6.5305 9.5085 6.5305C7.8638 6.5305 6.53052 7.86379 6.53052 9.50848C6.53052 11.1532 7.8638 12.4865 9.5085 12.4865Z" stroke="%23E53131" stroke-width="1.5" stroke-miterlimit="10" /></svg>');
}
.custom-menu-primary .hs-menu-wrapper ul > li.IDiotProof.podcast > a:before {
    content: "";
    width: 20px;
    background-image: url('data:image/svg+xml,      <svg class="svgcolor" xmlns="http://www.w3.org/2000/svg" width="21" height="19" viewBox="0 0 21 19" fill="none"><path d="M17.5916 7.80681H15.6729C14.9157 7.80681 14.537 6.89214 15.0731 6.35611L16.4302 4.999C16.5961 4.83308 16.5961 4.56507 16.4302 4.39915L14.6264 2.59535C14.4605 2.42943 14.1924 2.42943 14.0265 2.59535L12.6694 3.95245C12.1334 4.48849 11.2187 4.10986 11.2187 3.3526V1.42543C11.2187 1.19144 11.0273 1 10.7933 1H8.24074C8.00676 1 7.81532 1.19144 7.81532 1.42543V3.34409C7.81532 4.10135 6.90065 4.47998 6.36461 3.94394L5.00751 2.58684C4.84159 2.42092 4.57357 2.42092 4.40766 2.58684L2.60385 4.39064C2.43794 4.55656 2.43794 4.82457 2.60385 4.99049L3.96096 6.3476C4.497 6.88363 4.11837 7.7983 3.36111 7.7983H1.42543C1.19144 7.7983 1 7.98974 1 8.22372V10.7763C1 11.0103 1.19144 11.2017 1.42543 11.2017H3.34409C4.10135 11.2017 4.47998 12.1164 3.94394 12.6524L2.58684 14.0095C2.42092 14.1754 2.42092 14.4434 2.58684 14.6094L4.39064 16.4132C4.55656 16.5791 4.82457 16.5791 4.99049 16.4132L6.3476 15.0561C6.88363 14.52 7.7983 14.8986 7.7983 15.6559V17.5746C7.7983 17.8086 7.98974 18 8.22372 18H10.7763C11.0103 18 11.2017 17.8086 11.2017 17.5746V15.6559C11.2017 14.8986 12.1164 14.52 12.6524 15.0561L14.0095 16.4132C14.1754 16.5791 14.4434 16.5791 14.6094 16.4132L16.4132 14.6094C16.5791 14.4434 16.5791 14.1754 16.4132 14.0095L15.0561 12.6524C14.52 12.1164 14.8986 11.2017 15.6559 11.2017H17.5746C17.8086 11.2017 18 11.0103 18 10.7763V8.22372C18 7.98974 17.8086 7.7983 17.5746 7.7983L17.5916 7.80681Z" stroke="%23E53131" stroke-width="1.5" stroke-miterlimit="10" /><path d="M9.5085 12.4865C11.1532 12.4865 12.4865 11.1532 12.4865 9.50848C12.4865 7.86379 11.1532 6.5305 9.5085 6.5305C7.8638 6.5305 6.53052 7.86379 6.53052 9.50848C6.53052 11.1532 7.8638 12.4865 9.5085 12.4865Z" stroke="%23E53131" stroke-width="1.5" stroke-miterlimit="10" /></svg>');
}
.custom-menu-primary .hs-menu-wrapper > ul > li.Industries > ul > li > ul {
    display: block;
    opacity: 1;
    position: static;
}
.custom-menu-primary .hs-menu-wrapper > ul > li.Industries ul ul li a:before {
    width: 19px;
}
.custom-menu-primary .hs-menu-wrapper > ul > li.Industries ul ul li.Allfunctions > a,
.custom-menu-primary .hs-menu-wrapper > ul > li.Industries ul ul li.Allindustries > a {
    background: linear-gradient(270deg, #e42e2c, #fa6778);
    border-radius: 10px;
    color: #fff;
    display: inline-block;
    margin-left: 18px;
    margin-top: 10px;
    padding: 10px 16px;
    font-weight: 400;
    line-height: 1.42857143;
    font-size: 14px;
}
.custom-menu-primary .hs-menu-wrapper > ul > li.Industries > ul > li > a {
    cursor: text;
}
.lp-header .account-box a,
.lp-header .btn-contact {
    visibility: hidden;
}
.body-container--home .dnd-section.dnd_area-row-7-force-full-width-section.dnd_area-row-7-padding > .row-fluid {
    padding-left: 0;
    padding-right: 0;
}
.navbar-toggle .icon-bar {
    height: 3px;
}
.navbar-toggle {
    padding: 20px;
    margin-top: 0;
    margin-bottom: 0;
}
.header_logo img {
    margin-top: 4px;
}
@media (min-width: 768px) {
    .body-wrapper {
        padding-top: 153px;
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li,
    .custom-menu-primary > span {
        float: left;
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children > a:after {
        content: "\f107";
        display: inline-block;
        font: 700 16px/1 FontAwesome;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        margin-left: 11.5px;
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li.Industries > ul > li {
        padding-right: 15px;
        padding-left: 15px;
        width: 50%;
        display: inline-block;
        float: none;
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li > ul {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        min-width: 160px;
        padding: 1em;
        margin: 10px 0 0;
        font-size: 14px;
        background-color: #fff;
        background-clip: padding-box;
        border-radius: 10px;
        -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 0.175);
        box-shadow: 0 6px 12px rgb(0 0 0 / 0.175);
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li > ul:before {
        content: "";
        height: 10px;
        margin-top: -10px;
        position: absolute;
        top: 0;
        display: block;
        width: 100%;
        left: 0;
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li.Industries > ul {
        display: flex !important;
        flex-direction: initial;
        width: auto;
        right: auto;
        min-width: 600px;
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li.Industries > ul > li > a {
        margin: 8px 0 12px;
        font-weight: bolder;
        padding: 0;
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li.Industries > ul > li:last-child {
        border-left: 2px solid #e5e5e5;
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li.Industries > ul > li > a:hover {
        background: #fff0;
    }
}
@media (max-width: 1134px) {
    .custom-menu-primary .hs-menu-wrapper > ul > li > a {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media (max-width: 1120px) {
    .custom-menu-primary .hs-menu-wrapper > ul > li.Industries ul ul li a {
        white-space: normal;
    }
    .custom-menu-primary .hs-menu-wrapper > ul {
        margin-left: 0;
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li.Industries > ul {
        min-width: 440px;
    }
}
@media (max-width: 1024px) {
    .custom-menu-primary.hs-menu-wrapper>ul>li.hs-item-has-children>a: after {
        margin-left: 4px;
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li > a {
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media (max-width: 991px) {
    .custom-menu-primary .hs-menu-wrapper > ul > li > a {
        padding: 10px 5px;
        font-size: 13px;
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li.Industries > ul {
        margin-left: -130px;
        min-width: 500px;
    }
}
@media (max-width: 800px) and (min-width: 768px) {
    .header .btn-contact {
        font-size: 12px;
        padding: 10px 8px;
    }
}
@media (max-width: 767px) {
    .header_logo img {
        margin-top: 15px;
    }
    .left-bdr {
        border-left: none;
    }
    .dropdown-toggle span {
        font-size: 10px;
    }
    .navbar-left {
        margin-left: 0;
    }
    .navbar-nav {
        margin: 0;
    }
    .header .btn-contact {
        font-size: 14px;
        padding: 10px 15px;
        margin-bottom: 10px;
    }
    .dropdown-menu > li > a {
        font-size: 13px;
    }
    .svgcolor {
        font-size: 20px;
    }
    .flex-header p {
        font-size: 12px;
    }
    .flex-header {
        display: block;
        text-align: center;
    }
    .business-button {
        margin-top: 10px;
        font-size: 11px;
    }
    .navbar-collapse {
        padding-left: 0;
        padding-right: 0;
        box-shadow: none;
    }
    .header {
        position: static;
    }
    .navbar-nav > li > .dropdown-menu {
        padding: 0;
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li > ul > li > a:hover,
    .custom-menu-primary .hs-menu-wrapper > ul > li > ul > li > ul > li > a:hover {
        background-color: #e42e2c14;
        color: #e42e2c;
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li.Industries > ul {
        margin-left: 0;
        min-width: auto;
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li.Industries ul ul {
        padding-left: 10px;
        margin-bottom: 10px;
    }
    .child-trigger {
        cursor: pointer;
        display: block !important;
        height: 41px !important;
        min-width: 40px !important;
        padding: 0 !important;
        position: absolute;
        right: 0;
        top: 0;
        width: 40px !important;
        vertical-align: middle;
        text-align: center;
        line-height: 41px;
    }
    .child-trigger:before {
        content: "\f107";
        display: inline-block;
        font: 700 14px/1 FontAwesome;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    .child-trigger.child-open:before {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li > ul {
        display: none;
    }
    .custom-menu-primary .hs-menu-wrapper ul li a {
        margin-bottom: 10px;
    }
}
@media (max-width: 640px) {
    .navbar-left {
        margin-left: 0;
    }
    .navbar-right {
        margin-left: 1px;
    }
    .navbar-nav .open .dropdown-menu .dropdown-header,
    .navbar-nav .open .dropdown-menu > li > a {
        padding: 10px 15px 5px 0;
    }
    .menutitle,
    .mobile-viewnone,
    .svgcolor {
        display: none !important;
    }
    .dropdown-menu {
        margin-left: 10px;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #242527;
    }
    .dropdown-menu > li > a,
    .dropdown-toggle span {
        font-size: 14px;
    }
    .mobileview-menu {
        column-count: 2;
        padding: 1em;
        column-count: 2;
        margin-bottom: 1em;
        text-align: center;
        border-bottom: 1px solid #ddd;
        width: 98%;
        display: block;
    }
    .menu-width .col-md-6 {
        padding: 0;
    }
}
iframe {
    max-width: 100%;
}
.footer {
    padding-bottom: 40px;
    padding-top: 120px;
}
.footer .footer_logo {
    margin-bottom: 48px;
}
.footer h4 {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: 500;
}
.footer-address {
    color: #a0a5ac;
    font-size: 16px;
    line-height: 2;
}
.footer ul {
    padding-left: 0;
    list-style: none;
}
.footer ul > li {
    display: block;
    width: 100%;
}
.footer ul li {
    margin: 0;
    padding: 0;
}
.footer ul li:not(:last-child) {
    margin-bottom: 8px;
}
.footer ul > li > a {
    color: #a0a5ac;
    display: block;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer ul li a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer input {
    background: #515151;
    border: 1px solid #515151;
    border-radius: 8px;
}
.footer .hs-button.primary.large {
    display: inline-block;
    margin-bottom: 0;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    background: linear-gradient(270deg, rgb(228, 46, 44), rgb(250, 103, 120));
    color: #fff;
    margin-top: 20px;
    margin-bottom: 77px;
}
.footer .hs-button.primary.large:hover {
    background: linear-gradient(270deg, #e42e2c, #cf1818);
}
.form-inline .form-group {
    margin: 8px 6px 8px 0;
}
.footer .field.hs-form-field {
    margin: 8px 0;
    display: block;
    width: 100%;
}
.footer form label:not(.hs-error-msg) {
    display: none;
}
.footer .hs-form-field .hs-input {
    background-color: #fff;
    background-image: none;
    background: #515151;
    border: 1px solid #515151;
    border-radius: 4px;
    border-radius: 8px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    color: #fff;
    display: block;
    font-size: 14px;
    line-height: 1.42857143;
    padding: 9px 12px;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: 100%;
    background: #000;
    border: 1px solid #000;
    border-radius: 8px;
    color: #fff;
}
.footer .hs_recaptcha.hs-recaptcha.field.hs-form-field .grecaptcha-badge {
    display: inline-block;
}
.footer form .hs-button,
.footer form input[type="submit"] {
    width: auto;
}
.no-list.hs-error-msgs li {
    padding: 0;
}
label.hs-error-msg.hs-main-font-element {
    color: #e42e2c;
}
.footer .hs-form-field .invalid.error {
    border-color: #e42e2c;
}
.footer p {
    color: #a0a5ac;
    font-size: 16px;
}
.footer-bottom {
    border-top: 1px solid #a0a5ac;
    margin-top: 48px;
}
.footer-copyright p {
    color: #fff;
    font-size: 14px;
}
.footer input::placeholder {
    color: #fff;
    opacity: 1;
}
.footer input::-ms-input-placeholder {
    color: #fff;
}
.footer-copyright {
    margin-top: 40px;
}
.footer h4 {
    margin-top: 0;
}
/* Footer updated css */
.footer-bottom > div {
    margin-top: 30px;
    width: 50%;
}
.footer-bottom {
    display: flex;
}
.footer .hs-button.primary.large {
    margin-bottom: 0;
    margin-top: 10px;
}
.footer {
    padding-top: 70px;
    padding-bottom: 25px;
}
.footer .footer_logo {
    margin-bottom: 30px;
}
.footer h4 {
    font-size: 18px;
}
.footer p {
    font-size: 14px;
}
/* End */
@media (min-width: 768px) {
    .footer .hs_email.hs-email,
    .footer .hs_phone.hs-phone,
    .footer .hs_company.hs-company,
    .footer .hs_firstname.hs-firstname {
        display: inline-block;
        margin: 8px 20px 20px 0;
        vertical-align: top;
        width: calc(25% - 20px);
    }
    .footer .hs_email.hs-email {
        margin-right: 0;
    }
}
@media (max-width: 991px) {
    .footer {
        padding-top: 40px;
    }
    .footer h4 {
        margin-top: 10px;
    }
    .footer .hs-mob-bottom {
        margin-bottom: 20px;
    }
    .footer .hs-button.primary.large {
        margin-bottom: 0;
    }
    .footer-social-icons {
        margin-top: 20px;
    }
}
/* 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;
}
/* 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%;
}
.button-two .button {
  margin-right: 45px;
  margin-bottom: 10px;
}
@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;
  }
  .button-two .button {
    margin-right: 0;
    display: block;
  }
} 

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