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

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

/**
 * 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));
    }
  
}
.body-container-wrapper section {
    background: var(--white);
}

.custom-width {
  margin: 0 auto;
  padding: 0 20px;
}
.bg_image,.gradient{width:100%;height:100%;top:0;left:0;right:0;pointer-events:none}
div[data-aos="none"] {
  transition-delay: unset !important;
  transition-timing-function: unset !important;
  transition-duration: unset !important;
}
body.menu-open {
  overflow: hidden;
}
.position-relative{
  position: relative;
}
section .full-width,
.custom-width, .content-wrapper {
  position: relative;
  z-index: 1;
}
.overflow-hidden{
  overflow: hidden;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
}
.dnd-section[class*=force-full-width-section] {
  padding-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.dnd-section[class*=full-width-section]>.row-fluid>.dnd-column {
  padding-left: 0;
  padding-right: 0;
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}
.dnd-section .dnd-column {
  padding: 0 20px;
}
.dot {
  color: var(--secondary);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.35;
}
.pretitle {
  margin-bottom: 36px;
}
.pretitle p {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0 20px;
  }
  .content-wrapper {
    padding: 0 20px;
  }
}

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

.small {
  font-size: 14px;
}
.medium {
  font-size: 16px;
}
/* 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: 'Orgon';  
  src: url(https://6937772.fs1.hubspotusercontent-na1.net/hubfs/6937772/raw_assets/public/NTracts_August2025/font/Orgon-Light.woff2)  format('woff2');
  font-weight: 300; 
  font-display: swap;
}
@font-face {
  font-family: 'Orgon';  
  src: url(https://6937772.fs1.hubspotusercontent-na1.net/hubfs/6937772/raw_assets/public/NTracts_August2025/font/Orgon-Medium.woff2)  format('woff2');
  font-weight: 400; 
  font-display: swap;
}
@font-face {
  font-family: 'Orgon';  
  src: url(https://6937772.fs1.hubspotusercontent-na1.net/hubfs/6937772/raw_assets/public/NTracts_August2025/font/Orgon-Bold.woff2)  format('woff2');
  font-weight: 700; 
  font-display: swap;
}
@font-face {
  font-family: 'Orgon';  
  src: url(https://6937772.fs1.hubspotusercontent-na1.net/hubfs/6937772/raw_assets/public/NTracts_August2025/font/Orgon-Black.woff2)  format('woff2');
  font-weight: 900; 
  font-display: swap;
}
@font-face {
  font-family: 'Orgon';  
  src: url(https://6937772.fs1.hubspotusercontent-na1.net/hubfs/6937772/raw_assets/public/NTracts_August2025/font/Orgon-ExtraBold.woff2)  format('woff2');
  font-weight: 800; 
  font-display: swap;
}
@font-face {
  font-family: 'Orgon';  
  src: url(https://6937772.fs1.hubspotusercontent-na1.net/hubfs/6937772/raw_assets/public/NTracts_August2025/font/Orgon-ExtraLight.woff2)  format('woff2');
  font-weight: 200; 
  font-display: swap;
}
@font-face {
  font-family: 'Orgon';  
  src: url(https://6937772.fs1.hubspotusercontent-na1.net/hubfs/6937772/raw_assets/public/NTracts_August2025/font/Orgon-Thin.woff2)  format('woff2');
  font-weight: 100; 
  font-display: swap;
}

@font-face {
  font-family: 'Orgon';  
  src: url(https://6937772.fs1.hubspotusercontent-na1.net/hubfs/6937772/raw_assets/public/NTracts_August2025/font/Orgon-Italic.woff2)  format('woff2');
  font-weight: 400; 
  font-style: italic;
  font-display: swap;
}
input::-webkit-input-placeholder {
  color: var(--primary);
  opacity: 1;
}

input::-moz-placeholder {
  color: var(--primary);
  opacity: 1;
}

input:-ms-input-placeholder {
  color: var(--primary);
  opacity: 1;
}

input::-ms-input-placeholder {
  color: var(--primary);
  opacity: 1;
}


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

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

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

/* Paragraphs */

p, .p {
  line-height: 1.5;
  margin: 0 0 15px;
}

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

/* Anchors */

a {
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Headings */

:where(h1, h2, h3, h4, h5, h6) {
  margin: 0 0 24px;
}

h1{
  line-height: 1.2; 
}

h2{
  line-height: 1.4;
}

h3{
  line-height: 1.26666666667; 
  margin-bottom: 24px;
}
h4{
  line-height: 1.1; 
}
@media(max-width: 1024px) {    
  h2, .h2, h3, .h3{
    line-height: 1.25;
  }
}

/* Lists */

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

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 {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
}

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;
}
.description *:last-child {
  margin-bottom: 0;
}
.description *{
  color: inherit;
}
.text-left{text-align:left!important}
.text-right{text-align:right!important}
.text-center{text-align:center!important}
.cta--group {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
}
.text-left .cta--group {
  -webkit-box-pack: start!important;
  -ms-flex-pack: start!important;
  justify-content: flex-start!important
}
.text-right .cta--group {
  -webkit-box-pack: end!important;
  -ms-flex-pack: end!important;
  justify-content: flex-end!important
}
.text-center .cta--group {
  -webkit-box-pack: center!important;
  -ms-flex-pack: center!important;
  justify-content: center!important
}
.cta--group .cta__button {
  display: inline-block;
}
@media (max-width: 479px){
  .cta--group .cta__button {
    width: 100%; 
  }
}
/* Form */
.contact-banner-wrp .hbspt-form,
.hs_cos_wrapper_type_form, 
.hs_cos_wrapper_type_blog_subscribe, 
.hs_cos_wrapper_type_google_search, 
.hs_cos_wrapper_type_email_simple_subscription, 
.hs_cos_wrapper_type_password_prompt, 
.hs_cos_wrapper_type_module .widget-type-email_subscriptions, 
.hs_cos_wrapper_type_member_login, 
.hs_cos_wrapper_type_member_register, 
.hs_cos_wrapper_type_password_reset_request, 
.hs_cos_wrapper_type_password_reset{
  max-width: 767px;
  padding: 32px 24px;
  display: inline-block;
  width: 100%;
  margin-bottom: 25px;
  box-shadow: 0px 0px 48px #2222221A;
}
@media(max-width: 767px) {
}
form select {
  background-image: url(https://6937772.fs1.hubspotusercontent-na1.net/hubfs/6937772/NTracts_August2025/Images/arrow-down.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px 18px;
  background-position: 98% center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
h3.form-title:empty {
  display: none;
}
form {
  max-width: 767px;
}
form fieldset.form-columns-1 .input,
form fieldset.form-columns-2 .hs-form-field .input {
  margin-right: 0 !important;
}
form fieldset.form-columns-2 .hs-form-field:first-child .input {
  margin-right: 0 !important;
}
form fieldset.form-columns-2 {
  display: flex;
  column-gap: 24px;
}
form fieldset.form-columns-1 .hs-input {
  width: 100% !important;
}
form fieldset .hs-input[type=radio],
form fieldset .hs-input[type=checkbox] {
  width: auto !important;
}
.hs-fieldtype-textarea.hs-input {
  vertical-align: middle;
}
@media(max-width: 1024px) {
  form fieldset.form-columns-2 {
    flex-wrap: wrap;
  }
  form fieldset.form-columns-2 .hs-form-field {
    float: none;
    width: 100% !important;
  }
}
@media(max-width:479px) {
  form fieldset.form-columns-2 .hs-form-field:first-child .input,
  form fieldset.form-columns-2 .hs-form-field:first-child .input {
    margin-right: 0 !important;
  }
  form fieldset.form-columns-2 .hs-form-field {
    width: 100% !important;
    float: none;
  }
  .form-columns-2 .hs-form-field .hs-input {
    width: 100% !important;
  }
}
/* Form fields */
.hs-form-field {
  margin-bottom: 18px;
}
/* Labels */
.hs-form label {
  display: block;
  margin-bottom: 4px;
  text-transform: capitalize;
}
.hs-form label {
  font-family: Orgon;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: ;
  display: block;
  float: none;
  width: auto;
  text-align: left;
  padding-top: 0;
  margin-bottom: 4px;
  text-transform: capitalize;
}
.hs-form-field > label {
  margin-bottom: 4px;
}
.inputs-list.hs-error-msgs label {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  margin-top: .5rem;
  color: #f00;
}
.hs-error-msgs label {
  color: #f00;
}
/* Help text - legends */
form legend {
  font-size: 0.875rem;
}
/* Inputs */
form input[type=text],
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;
  min-height: 34px;
  padding: 5px 15px;
  width: 100%;
  font-family: Orgon;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  box-sizing: border-box;
  outline: none;
}
textarea.hs-input {
  height: auto;
}
.hs-input:focus {
  outline: none;
}
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;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
  width: auto;
}
textarea.hs-input {
  min-height: 112px;
  padding: 15px;
}
/* Inputs - datepicker */
.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;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}
/* Headings and text */
form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}
form .hs-richtext img {
  max-width: 100% !important;
}
/* GDPR */
.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}
/* Validation */
.hs-form-required {
  color: red;
  margin-left: 4px;
}
.hs-input.invalid.error {
  border-color: #f00;
}
.hs-error-msg {
  color: #f00;
  margin-top: 0.35rem;
}
.hs-error-msgs label {
  color: #f00;
}
/* Submit button */
.btn-primary,
.btn-secondary,
form input[type=submit],
form .hs-button {
  margin: 0;
  position: relative;
}

/* Captcha */
.grecaptcha-badge {
  margin: 0 auto;
}
#hs-search-module .hs-input {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  form {
    max-width: 100%;
  }
}
/* 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
*/

@media (min-width: 1025px) {
  .main-menu__dropdown li a {
    color: #222222;
  }
  .main-menu__dropdown li a:hover {
    color: var(--secondary);
  }
}

.hs__border-line{position:absolute;top:-6px; left: 0;max-width:360px;width:100%;height:12px;z-index:2}


.hs__border-line.lower-left{left:0;bottom:-6px;top: auto;}
.hs__border-line.lower-right{right:0;bottom:-6px;left: auto; top: auto;}
.hs__border-line.upper-left{left:0;top:-6px}
.hs__border-line.upper-right{right:0;top:-6px;left: auto;}
@media(min-width:1025px){
  .header__top {
    position: relative;
    z-index: 9;
  }
}


@media(max-width:1024px){
  .hs__border-line{max-width:192px}
}
@media(max-width:767px){
  .hs__border-line{max-width:96px}
}
header.header .header__cta .cta--group{margin-top:0}
header.header .content-wrapper{max-width: 1510px;position: static;}
header.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}
.header__bottom-grid{display:flex;justify-content:space-between;align-items:center}
.header__bottom{padding:18px 0}
.header__top{background:#eceff3;padding:4px 0}
.header__top-links ul li:not(:last-of-type):after{content:"";height:100%;background:#fff;width:1px;display:block;position:absolute;right:0;top:50%;transform:translateY(-50%)}
.header__top-links ul li{position:relative}
.header__top-links ul li a{letter-spacing:0;font-size:14px;font-weight:500;padding:0 16px;display:block}
.header__top-links ul{display:flex;justify-content:flex-end;width:100%}
.header__top-links{display:flex;justify-content:flex-end;width:100%}
.header__column{display:flex;align-items:center;gap:32px}
.header__cta .cta__button--btn-secondary a,.header__cta .cta__button--btn-secondary a:hover{line-height:23px;padding:4px 16px;font-size:16px;font-weight:500}
.header-lp .header__logo.header__logo--main {
  max-width: 160px;
  width:100% !important;
}
.header-lp .header__logo.header__logo--main img {
  width: 100% !important;
}
@media (min-width:768px){
  .header__cta-mobile{display:none}
}
@media (min-width:1025px){

  .header.header:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 16px #0000001A;
    z-index: 1;
    pointer-events: none;
  }
  .header__logo.header__logo--main,
  .header__cta {
    position: relative;
    z-index: 1;
  }
  .mobile_trigger{display:none}
  .header__bottom-grid{position:relative}
  .header__menu.custom-menu-secondary{display:none}
}
@media (max-width:1024px){
  header.header {
    box-shadow: 0px 0px 16px #0000001A;
  }
  header.header .header__bottom.sticky {
    position: static;
  }
  /*   .sticky-header {position: sticky;top: 0;z-index: 9;} */
  header.header .header__top{display:none}
  header.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    transition: transform 0.3s ease;
  }
  header.header.hide-header {
    transform: translateY(-100%);
  }
  .custom-menu-primary{display:none;position:absolute;left:0;right:0;top:100%;height:100vh;background:#fff;z-index:9;padding:0 20px}
  .mobile_trigger{
    cursor: pointer;
    background: #eceff3;
    border-radius: 2px;
    width: 36px;
    height: 36px;
    padding: 7px 5px;
    transition: all .3s ease-in-out;
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .custom-menu-primary{display:none}
  .mega-menu{max-width:623px;margin:0 auto;padding-top:150px;padding-bottom:150px}
  .mobile_trigger .line{
    width: 20px;
    height: 3px;
    background: #222;
    display: block;
    margin: 0 auto;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .mobile_trigger.is-active .line:nth-child(2){opacity:0}
  .mobile_trigger.is-active .line:nth-child(3){-webkit-transform:translateY(-7px) rotate(-45deg);-ms-transform:translateY(-7px) rotate(-45deg);-o-transform:translateY(-7px) rotate(-45deg);transform:translateY(-7px) rotate(-45deg)}
  .mobile_trigger.is-active .line:first-child{-webkit-transform:translateY(9px) rotate(45deg);-ms-transform:translateY(9px) rotate(45deg);-o-transform:translateY(9px) rotate(45deg);transform:translateY(9px) rotate(45deg)}
  .mobile_trigger.is-active,.mobile_trigger:hover{background:var(--secondary)}
  .mobile_trigger.is-active .line,.mobile_trigger:hover .line{background-color:#fff}
  .header__bottom{padding:20px 0}
}
@media (max-width:767px){
  .header__bottom{padding:16px 0}
  header.header .header__cta{display:none}
  header.header .mega-menu{padding-top:60px}
  header.header .mega-menu .header__cta-mobile a{text-align: left;background:0 0!important;border:none!important;border-bottom:1px solid #eceff3!important;display:block;font-size:16px;font-weight:500;padding:24px 0!important;position:relative}
  header.header .mega-menu .cta.cta--group{margin:0!important}
  header.header .mega-menu .cta--group .cta__button{display:block;width:100%}
  header.header.header-lp .header__bottom {padding: 20px 0; }
  header.header .mega-menu{padding-top:20px;padding-bottom: 90px;}
}
.footer p a, 
.footer p a:hover,
.footer ul li a,
.footer ul li a:hover {
  text-decoration: none;
}
footer.footer .content-wrapper {
  max-width: 1408px;
}
/* footer-bottom-css */

.footer .footer-bottom {
  background-color: #252C62;
  position: relative;
  color: #fff;
  padding: 22px 0px;
}

.footer .footer-bottom .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

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

.footer .footer-bottom p {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
}

.footer .footer-bottom p a {
  color: inherit;
  font-weight: 500;
}

/* footer-top-css */

.footer .footer-top {
  position: relative;
}

.footer .footer-top .row {
  display: flex;
  flex-wrap: wrap;
}

.footer .footer-top .footer-top-left {
  width: 30%;
  padding-top: 44px;
  padding-bottom: 36px;
  padding-right: 24px;
}

.footer .footer-top .footer-top-right {
  width: 70%;
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding-top: 36px;
  padding-left: 48px;
  padding-right: 48px;
}

footer.footer {
  background-color: rgb(236 239 243 / 50%);
}

.footer .footer-top:after {
  content: '';
  width: 20%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
}

.footer .footer-top .footer-top-left .footer-logo {
  max-width: 239px;
  padding-bottom: 24px;
}

.footer .logo-content p {
  font-size: 16px;
  line-height: 1.45;
  color: #222222;
  font-weight: 300;
}

.footer .logo-content p:last-child {
  margin-bottom: 0;
}

.footer .logo-content {
  margin-bottom: 24px;
}

.footer .social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer .btn-title {
  font-size: 18px;
  line-height: 1.5;
  color: #222222;
  margin-bottom: 12px;
  font-weight: 300;
}


.footer .social-links .social-items a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}


.footer .footer-top .footer-top-left .buttons-wrapper {
  margin-bottom: 62px;
}

.footer .footer-top .footer-top-left .buttons-wrapper .button {
  padding: 7.5px 20px 7.5px 20px;
}
.footer .bottom-logos {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer .bottom-logos .image1 {
  max-width: 97px;
}

.footer .bottom-logos .image2 {
  max-width: 97px;
}

.footer .bottom-logos img {
  max-width: 100% !important;
}


.footer .ftr-top-menu .hs-menu-wrapper > ul > li {
  width: 33.33%;

  padding-right: 15px;
}

.footer .ftr-top-menu .hs-menu-wrapper > ul > li > a {
  color: #505156;
  text-decoration: none;
  line-height: 1.5;
  display: block;
  font-weight: 300;
}
.footer .ftr-top-menu .hs-menu-wrapper > ul > li > a[href=""], 
.footer .ftr-top-menu .hs-menu-wrapper > ul > li > a[href="javascript:;"]{
  cursor: text;
}
.footer .ftr-top-menu .hs-menu-wrapper > ul ul {
  padding-top: 18px;
}

.footer .ftr-top-menu .hs-menu-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
}
.footer .ftr-top-menu .hs-menu-wrapper > ul ul > li {
  font-size: 14px;
  line-height: 1.5;
}
.footer .ftr-top-menu .hs-menu-wrapper > ul ul > li > a {
  color: #222222;
  display: inline-block;
  font-weight: 500;
}
.footer .ftr-top-menu .hs-menu-wrapper > ul ul > li:not(:last-child) {
  padding-bottom: 17px;
}
.footer .ftr-bottom-menu {
  border-top: 2px solid #ECEFF3;
  padding-top: 36px;
  margin-top: 36px;
  padding-bottom: 16px;
}
.footer .ftr-bottom-menu .hs-menu-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
}
.footer .ftr-bottom-menu .hs-menu-wrapper > ul > li {
  width: 33.33%;
  padding-bottom: 11px;
}
.footer .ftr-bottom-menu .hs-menu-wrapper > ul > li > a {
  line-height: 1.5;
  display: inline-block;
  color: #222222;
  font-weight: 500;
}
.footer .ftr-top-menu .hs-menu-wrapper > ul > li:last-child {
  padding-right: 0;
}
.footer .ftr-bottom-menu .hs-menu-wrapper > ul > li {
  padding-right: 15px;
}
.footer .ftr-bottom-menu .hs-menu-wrapper > ul > li:nth-child(3n){
  padding-right: 0;
}
.footer .footer-top .footer-top-left .buttons-wrapper .button-wrap {margin-bottom: 10px;}
.footer .footer-top .footer-top-left .buttons-wrapper .button-wrap:last-child {
  margin-bottom: 0;
}
.footer .social-links .social-items {
  line-height: 0;
  align-items: center;
  border-radius: 4px;
  display: flex;
  height: 36px;
  justify-content: center;
  position: relative;
  transition: all .5s ease;
  width: 36px;
  background-color: var(--secondary);
}
.footer .social-links .social-items svg {
  width: 26px;
  height: 26px;
}
.footer .social-links .social-items svg path {
  fill: var(--white);
}
.footer .ftr-top-menu .hs-menu-wrapper > ul {
  row-gap: 48px;
}
footer.footer.lp-footer .footer-top-left .footer-logo {
  padding: 0;
  max-width: 160px;
}
footer.footer.lp-footer .social-links
{
  margin: 0;
}

.footer .footer-bottom p a:hover {
  text-decoration: underline;
}
@media(max-width:991px){
  .footer .ftr-top-menu .hs-menu-wrapper > ul > li {
    width: 50%;
  }
  .footer .footer-top .footer-top-right {
    padding-left: 24px;
    padding-right: 0;
    padding-top: 44px;
  }
  .footer .ftr-top-menu .hs-menu-wrapper > ul > li:nth-child(2n) {
    padding-right: 0;
  }
  .footer .ftr-bottom-menu .hs-menu-wrapper > ul > li {
    width: 50%;
  }
  .footer .ftr-bottom-menu {
    padding-bottom: 16px;
  }
}
@media(max-width:767px){
  .footer .footer-top .row {
    flex-direction: column-reverse;
  }
  .footer .footer-top .footer-top-left {
    width: 100%;
    padding-right: 0;
  }
  .footer .footer-top .footer-top-right {
    width: 100%;
    padding-left: 0;
    position: relative;
  }
  .footer .ftr-bottom-menu .hs-menu-wrapper > ul {
    flex-direction: unset;
  }

  .footer-top .content-wrapper {
    padding: 0;
  }
  .footer .footer-top .footer-top-left,
  .footer .footer-top .footer-top-right {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* 
  .footer .footer-top .footer-top-right:after {
  position: absolute;
  content: '';
  display: block;
  width: 24px;
  right: -24px;
  height: 100%;
  background-color: #fff;
  top: 0;
} */

  .ftr-top-menu {
    position: relative;
    z-index: 5;
  }

  .footer .footer-top .footer-top-right:before {
    position: absolute;
    content: '';
    display: block;
    width: 24px;
    left: -24px;
    height: 100%;
    background-color: #fff;
    top: 0;
  }

  .footer .ftr-top-menu .hs-menu-wrapper > ul {
    flex-direction: unset;
  }
  .footer .footer-top:after {
    display: none;
  }
  .footer .footer-bottom .row {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media(max-width:1550px) and (min-width: 768px){ 
  .copyright-right {
    padding-right: 76px;
  }
}
@media(max-width:375px){ 
  .footer .ftr-top-menu .hs-menu-wrapper > ul {
    flex-direction: column;
  }
  .footer .ftr-bottom-menu .hs-menu-wrapper > ul > li,
  .footer .ftr-top-menu .hs-menu-wrapper > ul > li {
    width: 100%;
  }
  .footer .ftr-bottom-menu .hs-menu-wrapper > ul > li {
    padding-right: 0;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

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

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

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

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}