/* 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));
    }
  
}
.content-wrapper {
  margin: 0 auto;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

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

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

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

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

@font-face {
  font-family:'Gotham';
  src: url(https://47150154.fs1.hubspotusercontent-na1.net/hubfs/47150154/raw_assets/public/Corporate%20Solutions%20-%20February%202025/fonts/Gotham/TTF/Gotham-Book.ttf) format('ttf'),
    url(https://47150154.fs1.hubspotusercontent-na1.net/hubfs/47150154/raw_assets/public/Corporate%20Solutions%20-%20February%202025/fonts/Gotham/WEB/Gotham-Book.woff) format('woff'),
    url(https://47150154.fs1.hubspotusercontent-na1.net/hubfs/47150154/raw_assets/public/Corporate%20Solutions%20-%20February%202025/fonts/Gotham/WEB/Gotham-Book.woff2) format('woff2');
  font-weight:400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family:'Gotham';
  src: url(https://47150154.fs1.hubspotusercontent-na1.net/hubfs/47150154/raw_assets/public/Corporate%20Solutions%20-%20February%202025/fonts/Gotham/TTF/Gotham-Medium.ttf) format('ttf'),
    url(https://47150154.fs1.hubspotusercontent-na1.net/hubfs/47150154/raw_assets/public/Corporate%20Solutions%20-%20February%202025/fonts/Gotham/WEB/Gotham-Medium.woff) format('woff'),
    url(https://47150154.fs1.hubspotusercontent-na1.net/hubfs/47150154/raw_assets/public/Corporate%20Solutions%20-%20February%202025/fonts/Gotham/WEB/Gotham-Medium.woff2) format('woff2');
  font-weight:500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family:'Gotham';
  src: url(https://47150154.fs1.hubspotusercontent-na1.net/hubfs/47150154/raw_assets/public/Corporate%20Solutions%20-%20February%202025/fonts/Gotham/TTF/Gotham-Bold.ttf) format('ttf'),
    url(https://47150154.fs1.hubspotusercontent-na1.net/hubfs/47150154/raw_assets/public/Corporate%20Solutions%20-%20February%202025/fonts/Gotham/WEB/Gotham-Bold.woff) format('woff'),
    url(https://47150154.fs1.hubspotusercontent-na1.net/hubfs/47150154/raw_assets/public/Corporate%20Solutions%20-%20February%202025/fonts/Gotham/WEB/Gotham-Bold.woff2) format('woff2');
  font-weight:700;
  font-style: normal;
  font-display: swap;
}


body {
  line-height:1.5;
  font-weight:400;
}

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

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

/* Paragraphs */

p {
  margin: 0 0 15px;
}

/* Anchors */

a {
  cursor: pointer;
  transition: all .3s ease-in-out;
}

/* Headings */

h1,.h1,
h2,.h2,
h3,.h3,
h4,.h4,
h5,.h5,
h6,.h6 {
  margin: 0 0 15px;
  line-height:1.3;
  font-weight:500;
}
h1,.h1{line-height:1.10}
h2,.h2{line-height:1.3}
h3,.h3{line-height:1.3}
h4,.h4{line-height:1.06}
h5,.h5,h6,.h6{line-height:1.3125}


@media(max-width:767px){
  h1,.h1{line-height: 1.31;}
  h2,.h2{line-height:1.2}
  h3,.h3{line-height:1.2}
  h4,.h4{line-height:1.2}
}
/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  word-break: normal;
  max-width:100%;
  vertical-align:middle;
  height: auto;
}

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}
/* Breadcrumb */
.breadcrumb-wrap{display:flex;flex-direction:row} 
.breadcrumb-wrap{flex-wrap:wrap} 
.breadcrumb-list{
  text-align:center;
  width:100%;
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  row-gap: 10px;
  column-gap: 8px;
} 
.breadcrumb-list>li>a,  ul.breadcrumb-list>li>span{
  display:inline-block;
  font-size:14px;
  font-style:normal;
  line-height:1.5;
  padding-right:8px;
  position:relative;
} 
.breadcrumb-list>li>a{text-decoration:none;text-transform:capitalize;} 
.breadcrumb-list>li>a:before{
  width:100%;
  background:var(--white);
  content:"";
  height:1px;
  left:0;pointer-events:none;
  position:absolute;top:100%;
  transform:scaleX(0);
  transform-origin:100% 50%;
  transition:transform .3s;
} 
.breadcrumb-list>li:not(:last-child):after{
  background-color:var(--white);
  content:"";
  display:block;
  height:15px;
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:1px;
} 
.breadcrumb-list>li:not(:first-child)>{padding-left:8px} 
.breadcrumb-list>li{ padding-right: 8px;position:relative} 
.breadcrumb-list>li:last-child{padding-right:0} 
.breadcrumb-list>li>a:hover:before{transform:scaleX(1);transform-origin:0 50%} 
.breadcrumb-list>li:last-child>a{padding-right:0} 
.breadcrumb-list>li>span{padding:0} 
.breadcrumb-list>li>a,  ul.breadcrumb-list>li>span{padding:0} 
.breadcrumb-list>li:first-child{padding-left:0} 
.blog-listing-banner .breadcrumb-list,
.post-banner .breadcrumb-list{
  justify-content: center;
}
@media(max-width:991px){
  .wow {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
    transform: none !important;
    transition: none !important;

    /* Vendor prefixes for cross-browser support */
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;

    -webkit-transform: none !important;
    -moz-transform: none !important;
    -o-transform: none !important;

    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
  }


}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease-in-out;
  white-space: normal;
  text-decoration: none;
}

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

.button {
  line-height: 1.5;
  text-align: center;
  font-weight:500;
}
/* 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: 1.4rem;
}

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  width: 100%;
  outline: none;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */
form .form-columns-2 .hs-form-field {position: relative;}

/* form .form-columns-2 .hs-error-msgs label {
  position: absolute;
} */
.hs-form-required {
  color:var(--primary_color);
}
.hs-error-msgs label{
  padding-right: 8px;
  padding-left: 16px;
  padding-top:16px;
  padding-bottom:16px;
  color:var(--primary_color);
  border:1px solid var(--secondary_color);
  background-image:url(https://47150154.fs1.hubspotusercontent-na1.net/hubfs/47150154/raw_assets/public/Corporate%20Solutions%20-%20February%202025/images/warning.png);
  background-repeat:no-repeat;
  background-color: #FFC2C9;
  padding-left: 56px;
  background-position: center left 16px; 
  font-size: 14px;
  line-height:1.2;
}
.hs-input.invalid.error {
  border-color:var(--secondary_color);
  background-image:url(https://47150154.fs1.hubspotusercontent-na1.net/hubfs/47150154/raw_assets/public/Corporate%20Solutions%20-%20February%202025/images/warning.png);
  background-repeat:no-repeat;
  background-position: right 16px center;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}
form select.hs-input{
  background-image:url(https://47150154.fs1.hubspotusercontent-na1.net/hubfs/47150154/raw_assets/public/Corporate%20Solutions%20-%20February%202025/images/right.png);
  background-repeat:no-repeat;
  background-position: right 16px center;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease-in-out;
  white-space: normal; 
  line-height: 1.5;
  text-align: center;
  font-weight:500;
}

form .form-columns-2 {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

form .input {
  margin: 0 !important;
}

form textarea,form .hs-input,input[type=password] {width: 100% !important;font-size: 14px;font-style: normal;line-height: normal;padding: 12px 8px 12px 16px;}
form select.hs-input {
  padding:12px 37px 12px 16px;
  -webkit-appearance: none;
  appearance: none;
}

form label {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 8px;
}
/* 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;
}

form .hs-form-field {
  margin: 0 !important;
}

form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

form input[type=checkbox], form input[type=radio] {
  display: inline-block;
  width: auto !important;
}

form .inputs-list label.hs-form-booleancheckbox-display {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.submitted-message {
  background-color: var(--accent_color1);
  color: var(--primary_color) !important;
  font-size: 14px;
  line-height: 1.2;
  padding: 16px 8px 16px 56px;
  width: 100%;
  background-image:url(https://47150154.fs1.hubspotusercontent-na1.net/hubfs/47150154/raw_assets/public/Corporate%20Solutions%20-%20February%202025/images/check.png);
  background-repeat:no-repeat;
  background-position: left 16px center;
}
@media(max-width:767px){
  form .form-columns-2 {
    flex-direction: column;
  }
  form .form-columns-2 .hs-form-field {
    width: 100% !important;
  }
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.header-main-wrapper .header-maincols-group {
  display: flex;
  justify-content: space-between;
}
.header-main-wrapper {
  min-height: 90px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index:100;
  background-color: var(--white);
}
.website-header-module {min-height: 90px;}
.header-main-wrapper .content-wrapper {
  max-width: 1440px;
  padding-top: 24px;
  padding-right: 40px;
  padding-bottom: 24px;
  padding-left: 40px;
}
.header-maincol {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-navigation-group {
  margin-right: 64px;
}
.header-navigation-group .hs-menu-wrapper ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-navigation-group .hs-menu-wrapper > ul > li:not(:last-child) {margin-right: 32px;}
.header-navigation-group .hs-menu-wrapper .hs-item-has-children,
.header-navigation-group .hs-menu-wrapper > ul > li,
.header-navigation-group .hs-menu-wrapper ul>li>a{
  position: relative;
}
.header-navigation-group .hs-menu-wrapper ul.hs-menu-children-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: #EFF2F4;  
  display: flex;
  flex-direction: column;
  padding: 32px;
  min-width: 218px;
  left: auto;
  right: 0;
  border-top: 2px solid var(--secondary_color);
}
.header-navigation-group .hs-menu-wrapper > ul > li > a {
  line-height: 1.2;
  text-align: center;
  font-weight:500;
  text-transform: uppercase;
}
.header-navigation-group .hs-menu-wrapper ul > li > a {
  font-family: Gotham;
  font-size: 16px;
  text-decoration: none;
  color: var(--primary_color);
}
.header-navigation-group .hs-menu-wrapper ul ul > li > a {
  line-height: 1.5;
  font-weight: 400;
}
.header-navigation-group .hs-menu-wrapper ul>li.hs-item-has-children {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.header-navigation-group .hs-menu-wrapper>ul>li {
  padding: 10px 0 9px;
}
.header-navigation-group .child-trigger {
  display: flex;
  margin-left: 8px;
}
.header-maincol .header-btn a {
  padding: 10px 15px !important;
}
.header-navigation-group .hs-menu-wrapper ul>li.hs-item-has-children:hover > .hs-menu-children-wrapper {
  opacity: 1;
  visibility: visible;
}
.header-navigation-group .hs-menu-wrapper ul ul>li:not(:last-child) {
  margin-bottom: 32px;
}
.header-navigation-group .hs-menu-wrapper > ul > li:before,
.header-navigation-group .hs-menu-wrapper ul>li>a:before{
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
  content:"";
}
.header-navigation-group .hs-menu-wrapper > ul > li:before, 
.header-navigation-group .hs-menu-wrapper > ul > li:after,
.header-navigation-group .hs-menu-wrapper ul > li >a:after,
.header-navigation-group .hs-menu-wrapper ul > li >a:before{
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--additional_color5);
  top: 100%;
  left: 0;
  pointer-events: none;
}
.header-navigation-group .hs-menu-wrapper > ul > li:hover:before,
.header-navigation-group .hs-menu-wrapper ul > li >a:hover:before{
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}
.header-main-wrapper a.mobile-logo {
    top: 5px;
}
@media(min-width:992px){
  .header-main-wrapper .close-trigger, .header-main-wrapper .mobile-logo, 
  .header-main-wrapper .mobile-trigger ,.header-navigation-group .hs-menu-wrapper > ul>li>a:before,
  .header-navigation-group .hs-menu-wrapper > ul>li>a:after{
    display: none;
  }
  .mobile{display:none !important;}
  .header-maincol.header-navlinks-col {
    position: static;
    transition: unset;
  }
  .header-navigation-group .hs-menu-children-wrapper .child-trigger {
    transform: rotate(-90deg);
  }
  .header-navigation-group .hs-menu-wrapper ul ul > li.hs-item-has-children > ul.hs-menu-children-wrapper {
    right: auto;
    left: 100%;
    top: 0;
  }
}
@media(min-width:992px) and (max-width:1100px){  .header-navigation-group .hs-menu-wrapper ul>li>a { font-size: 14px;}}
@media(max-width:1100px){
  .header-navigation-group,.header-navigation-group .hs-menu-wrapper ul>li.hs-item-has-children {margin-right: 15px;}
  .header-main-wrapper .content-wrapper { padding:20px 32px 21px 32px;}
}
@media(max-width:991px){
  .header-main-wrapper button.mobile-trigger {
    background: transparent;
    border: 0;
    padding:0;
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    height: 24px;
    justify-content: center;
    width: 24px;
  }
  .desktop{display:none !important;}
  .header-maincol.header-navlinks-col {
    position: fixed;
    right: -100%;
    width: 100%;
    left: auto;
    height: 100%;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary_color);
    top: 0;
    flex-direction: column;
    align-items: self-start;
    padding: 20px 48px;
    justify-content: flex-start;
  }
  .header-navigation-group {
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    display: block;
  }
  .mobile-trigger span {
    background:var(--primary_color);
    display: block;
    height: 2px;
    margin: 2px 0;
    width: 100%;
  }
  .child-trigger, .close-trigger span, .mobile-trigger span { font-size: 0;line-height: 0;}
  .header-logo-group {display: flex;justify-content: space-between;}
  .header-maincol.header-logo-col { width: 100%; display: block;}
  .header-main-wrapper .header-maincols-group { display: block;}
  .header-main-wrapper,.website-header-module { min-height: 72px;}
  .mobile-open .header-maincol.header-navlinks-col {
    right: 0;
  }
  .close-trigger {
    display: none;
  }
  .mobile-trigger {
    position: fixed;
    right: 32px;
    top: 20px;
    left: auto;
    z-index: 10;
  }
  .mobile-open .mobile-trigger span {
    background: var(--white);
  }
  a.mobile-logo {
    display: inline-block;
    position: relative;
    top: 0;
  }
  .header-navigation-group {
    margin-top: 48px;
    width: 100%;
    margin-right: 0;
  }
  .header-navigation-group .hs-menu-wrapper ul>li>a {
    color: var(--white);
  }

  .header-navigation-group .hs-menu-wrapper ul {
    flex-direction: column;
  }
  .header-navigation-group .child-trigger {
    display: none;
  }
  .header-navigation-group .hs-menu-wrapper ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
    position: static;
    background-color: transparent;
    width: 100%;
    min-width: unset;
    border: 0;
    padding: 0;
  }
  .header-navigation-group .hs-menu-wrapper ul>li.hs-item-has-children,.header-navigation-group .hs-menu-wrapper ul>li {
    margin-right: 0;
    display: block;
    /*     padding: 20px; */
    border-top: 1px solid var(--additional_color5);
  }
  .header-navigation-group .hs-menu-wrapper ul ul>li:not(:last-child) {}
  .header-navigation-group .hs-menu-wrapper>ul>li>a {
    display: inline-block;
  }
  .header-btn {
    margin-top: 32px;
  }
  .header-navigation-group .hs-menu-wrapper > ul>li:last-child {
    border-bottom: 1px solid var(--additional_color5);
    /*     padding-bottom: 0; */
  }
  .header-navigation-group .hs-menu-wrapper>ul>li:not(:last-child) {
    margin: 0;
  }
  .header-navigation-group .hs-menu-wrapper>ul>li {
    padding-bottom: 0;
  }
  .header-navigation-group .hs-menu-wrapper ul>li.hs-item-has-children>a {
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 32px;
  }
  .header-navigation-group .hs-menu-wrapper ul ul>li:not(:last-child) {
    margin: 0;
  }
  /*   .header-navigation-group .hs-menu-wrapper ul>li:last-child {
  padding-bottom: 0;
} */
  .header-navigation-group .hs-menu-wrapper ul.hs-menu-children-wrapper>li {
    padding-left: 0;
  }

  .header-navigation-group .hs-menu-wrapper ul.hs-menu-children-wrapper>li:first-child {
    padding-top: 0;
  }
  .header-navigation-group .hs-menu-wrapper ul.hs-menu-children-wrapper > li {
    border-top: 0;
  }
/*   .header-navigation-group .hs-menu-wrapper ul>li:not(.hs-item-has-children) > a {font-weight: 400;text-transform: capitalize;} */
  .header-navigation-group .hs-menu-wrapper > ul>li, .header-navigation-group .hs-menu-wrapper > ul>li.hs-item-has-children {
    padding: 32px 0;
  }
  .header-navigation-group .hs-menu-wrapper ul.hs-menu-children-wrapper>li:not(.hs-item-has-children) {
    padding: 0;
    padding-bottom: 32px;
  }
  .header-navigation-group .hs-menu-wrapper ul.hs-menu-children-wrapper>li:last-child {
    padding-bottom: 0 !important;
  }
  .mobile-trigger {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    top: 25px;
  }

  .mobile-trigger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    margin: 0;
  }

  .mobile-trigger span:nth-child(1) {
    top: 2px;
  }

  .mobile-trigger span:nth-child(2),.mobile-trigger span:nth-child(3) {
    top:11px;
  }

  .mobile-trigger span:nth-child(4) {
    top:20px;
  }

  .mobile-open .mobile-trigger span:nth-child(1) {
    top: 9px;
    width: 0%;
    left: 50%;
  }

  .mobile-open .mobile-trigger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .mobile-open .mobile-trigger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .header-navigation-group .hs-menu-wrapper>ul>li:before {
    display: none;
  }
  .mobile-open .mobile-trigger span:nth-child(4) {
    width: 0%;
    left: 50%;
    top: 9px;
  }

}
@media(max-width:360px){
  .header-main-wrapper .content-wrapper {
    padding: 20px;
  }
  .logo-wrap {
    max-width: 220px;
  }
  .logo-wrap a {
    display: inline-block;
  }
  .header-maincol.header-navlinks-col {
    padding: 20px 32px;
  }
  .header-maincol.header-navlinks-col {
    padding: 20px 32px;
  }

  .header-navigation-group .hs-menu-wrapper>ul>li, .header-navigation-group .hs-menu-wrapper>ul>li.hs-item-has-children {
    padding: 24px 0;
  }

  .header-navigation-group .hs-menu-wrapper ul.hs-menu-children-wrapper>li:not(.hs-item-has-children) {
    padding: 0 0 24px;
  }
}
footer.footer { border: 32px solid var(--white);}
.footer-wrapper {padding: 65px 32px;}
.footer-wrapper .hs-row,.footer-wrapper .copyright-nav {display: flex; justify-content: space-between;}
.footer-wrapper .copyright-nav p:last-child {margin: 0;}
.footer-wrapper {font-size: 14px;line-height: 1.5;}
.footer-wrapper .footer-nav ul {list-style: none;margin: 0;padding: 0;}
.footer-wrapper .hs-menu-wrapper > ul {display: flex;justify-content: space-between;align-items: center;}
.footer-wrapper .copyright-text { padding-right: 24px;}
.footer-wrapper .hs-menu-wrapper ul > li > a {font-size: 14px; line-height: 1.72; text-decoration: underline;color:var(--white);}
.footer-wrapper .hs-menu-wrapper > ul > li { padding: 0 24px; display: flex;position: relative;}
.footer-wrapper .hs-menu-wrapper > ul > li:last-child {padding-right: 0;border-right: 0;}
.footer-wrapper .hs-menu-wrapper > ul > li:before{
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background-color:var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.footer-wrapper .hs-menu-wrapper > ul > li:before {left: 0;}
.footer-wrapper .hs-row {align-items: center;}
.footer-wrapper .footer-logo {padding-right: 15px;}
.footer-wrapper .hs-menu-wrapper ul>li>a {
  position: relative;
  text-decoration: none;
}
.footer-wrapper .hs-menu-wrapper ul>li>a:after {
  background: rgba(239, 242, 244, 1.0);
  height: 1px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  width: 100%;
  content: "";
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform .3s;
}
.footer-wrapper .hs-menu-wrapper ul>li>a:after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}
@media(max-width:991px){
  .footer-wrapper .hs-row { flex-direction: column;}
  .footer-wrapper .footer-logo {padding-right: 0;margin-bottom: 24px;}
  .footer-wrapper .copyright-nav {flex-wrap: wrap;flex-direction: column;align-items: center;justify-content: center;}
  .footer-wrapper .hs-menu-wrapper>ul {flex-direction: column;}
  .footer-wrapper .copyright-text {padding-right: 0; padding-bottom: 24px;}
  .footer-wrapper .hs-menu-wrapper>ul>li:before {display: none;}
  .footer-wrapper .hs-menu-wrapper>ul>li {padding: 0 0 24px;}
  .footer-wrapper .hs-menu-wrapper>ul>li:last-child { padding: 0;}
}
@media(max-width:767px){
  .footer-wrapper {text-align: center;}
}


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