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

/**
* 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 */
    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));
    }
  
}
.custom-width {
  margin: 0 auto;
  padding: 0 15px;
}
.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;
}
.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-section[class*=force-full-width-section] {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.position-relative{
  position: relative;
}
section .full-width,
.custom-width, .content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}
.overflow-hidden{
  overflow: hidden;
}
.dnd-section > .row-fluid,
.content-wrapper {
  margin: 0 auto;
  padding: 0 15px;
}
.dnd-section[class*="full-width-section"]>.row-fluid,
.dnd-section[class*=force-full-width-section] {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.dnd-section[class*=full-width-section]>.row-fluid>.dnd-column {
  padding-left: 0;
  padding-right: 0;
}
.dnd-section .dnd-column {
  padding: 0 16px;
}
.mb-0 {
  margin-bottom: 0 !important;
}
@media (min-width: 768px) {
  .visible-phone{
    display: none; 
  }
}
@media (max-width: 767px) {
  .hidden-phone{
    display: none; 
  }
  .dnd-section > .row-fluid,
  .content-wrapper {
    margin: 0 auto;
    padding: 0 24px;
  }
}

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */
/* @font-face {
font-family: 'Helvetica Now Var';
src: url('https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/Simpler365_April2026/fonts/HelveticaNowVar.eot') format('embedded-opentype'),
url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNowVar.woff2)  format('woff2'),
url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNowVar.woff)  format('woff'),
url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNowVar.ttf) format('truetype');
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Helvetica Now Var';
src: url('https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/Simpler365_April2026/fonts/HelveticaNowVarItalic.eot') format('embedded-opentype'),
url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNowVarItalic.woff2)  format('woff2'),
url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNowVarItalic.woff)  format('woff'),
url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNowVarItalic.ttf) format('truetype');
font-weight: 400;
font-style: italic;
font-display: swap;
} */

@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/Simpler365_April2026/fonts/HelveticaNeue-Medium.eot') format('embedded-opentype'),
    url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNeue-Medium.woff2) format('woff2'),
    url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNeue-Medium.woff) format('woff'),
    url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNeue-Medium.ttf) format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/Simpler365_April2026/fonts/HelveticaNeue-Light.eot') format('embedded-opentype'),
    url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNeue-Light.woff2) format('woff2'),
    url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNeue-Light.woff) format('woff'),
    url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNeue-Light.ttf) format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/Simpler365_April2026/fonts/HelveticaNeue-Bold.eot') format('embedded-opentype'),
    url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNeue-Bold.woff2) format('woff2'),
    url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNeue-Bold.woff) format('woff'),
    url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNeue-Bold.ttf) format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/Simpler365_April2026/fonts/HelveticaNeue-Thin.eot') format('embedded-opentype'),
    url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNeue-Thin.woff2) format('woff2'),
    url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNeue-Thin.woff) format('woff'),
    url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNeue-Thin.ttf) format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/Simpler365_April2026/fonts/HelveticaNeue-Roman.eot') format('embedded-opentype')
    url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNeue-Roman.woff2) format('woff2'),
    url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNeue-Roman.woff) format('woff'),
    url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/raw_assets/public/Simpler365_April2026/fonts/HelveticaNeue-Roman.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* 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;
}
html {
/*   scroll-behavior: smooth; */
}
body {
  overflow-wrap: break-word;
}
/* Paragraphs */

p, .p {
  margin: 0 0 24px;
}

/* Anchors */
a {
  cursor: pointer;
  transition: all 0.3s ease;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}

/* Lists */

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

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}
ul, ol {
  padding-left: 23px;
}
ul li:not(:last-child),
ol li:not(:last-child) {
  margin-bottom: 6px;
}
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;
}

/* standardize visuals for media elements */
img, video, svg, canvas, picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}
/* 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;
}
.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: 16px;
  margin-top: 24px;
}
.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 .btn-wrapper {
  display: inline-block;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.hs-button svg {
  margin-left: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.cta__button--btn-primary a,
.cta__button--btn-primary-black-outline a,
.cta__button--btn-secondary a,
.cta__button--btn-tertiary a {
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  position: relative;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: normal;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.cta__button.btn-small a {
  padding: 17px 32px 17px 32px;
}
.cta__button--btn-primary a svg,
.cta__button--btn-primary-black-outline a svg,
.cta__button--btn-secondary a svg,
.cta__button--btn-tertiary a svg {
  /*   width: 5px;
  height: 10px; */
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.cta__button.btn-small a svg {
  /*   width: 12px;
  height: 12px; */
}
.cta__button.sm .cta__link {
  /*   font-size: 14px;
  line-height: normal; */
}
.cta__button.sm .cta__link svg {
  /*   width: 10px; */
}
@media(max-width: 1024px) {
  .body-container-wrapper .cta-group .cta__link {
    padding: 16px 26px 16px 26px !important;
  }
}
@media(max-width: 767px) {
  .body-container-wrapper .cta-group .cta__link {
    font-size: 13px;
  }
}
/* Form */
input::-webkit-input-placeholder {
  color: #7D7D7D;
  opacity: 1;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
input::-moz-placeholder {
  color: #7D7D7D;
  opacity: 1;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
input:-ms-input-placeholder {
  color: #7D7D7D;
  opacity: 1;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;;
}
input::-ms-input-placeholder {
  color: #7D7D7D;
  opacity: 1;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
.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: 42px;
  display: inline-block;
  width: 100%;
  margin-bottom: 25px;
}
form select {
  background-image: url(https://21643574.fs1.hubspotusercontent-na1.net/hubfs/21643574/Simpler365_April2026/images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 13px 10px;
  background-position: 96% center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
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: 16px;
}
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: 1200px) {
  .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{
    padding: 24px;
  }
}
@media(max-width: 991px) {
  .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{
    padding: 24px;
  }
  form fieldset.form-columns-2 {
    flex-wrap: wrap;
  }
  form fieldset.form-columns-2 .hs-form-field {
    float: none;
    width: 100% !important;
  }
}
@media(max-width:991px) {
  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: 24px;
}
@media(max-width:991px) {
  .hs-form-field {
    margin-bottom: 18px;
  } 
}
/* Labels */
.hs-form label {
  display: block;
  margin-bottom: 0.35rem;
}
.hs-form label {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: ;
  display: block;
  float: none;
  width: auto;
  text-align: left;
  padding-top: 0;
  margin-bottom: 8px;
}
.hs-form-field > label {
  margin-bottom: 8px;
}
.inputs-list.hs-error-msgs label {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin-top: .5rem;
  color: #f00 !important;
}
.hs-error-msgs label {
  color: #f00 !important;
}
/* 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: 51px;
  padding: 2px 12px;
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  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;
}
.hs-form label.hs-form-checkbox-display,
.hs-form label.hs-form-radio-display {
  position: relative;
  display: flex;
}
form fieldset .hs-input[type=checkbox], 
form fieldset .hs-input[type=radio] {
  width: 16px !important;
  height: 16px;
  border: 1px solid var(--secondary);
  -webkit-appearance: none;
  flex-shrink: 0;
  margin: 3px 8px 3px 0px;
}
form fieldset .hs-input[type=radio] {
  border-radius: 50%;
}
form fieldset .hs-input[type=checkbox] ~ span:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--secondary);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: none;
}
form fieldset .hs-input[type=checkbox]:checked ~ span:after {
  display: block;
}
form fieldset .hs-input[type=radio] ~ span:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  width: 10px;
  height: 10px;
  display: none;
  background-color: var(--secondary);
  border-radius: 50%;
}
form fieldset .hs-input[type=radio]:checked ~ span:after {
  display: block;
}

textarea.hs-input {
  min-height: 140px;
  padding: 2px 12px;
}
/* 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: 1px;
}
.hs-input.invalid.error {
  border-color: #ff2a00;
}
.hs-error-msg {
  color: #ff2a00;
  margin-top: 0.35rem;
}
.hs-error-msgs label {
  color: #f00;
}
/* Submit button */
form input[type=submit],
form .hs-button {
  margin: 0;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: normal;
  border-style: solid;
  border-width: 1px;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.45px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
}
/* Captcha */
.grecaptcha-badge {
  margin: 0 auto;
}
#hs-search-module .hs-input {
  margin-bottom: 24px;
}
@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
*/

.swiper-button-disabled,
.slick-arrow.slick-disabled {
  opacity: .5 !important;
  cursor: auto !important;
}
.slick-arrow.slick-disabled {
  pointer-events: none !important;
}
.skip-to-content-link {
  position: absolute;
  top: -44px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 10px 15px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.3s ease;
}
.skip-to-content-link:focus {
  top: 0;
  color: #fff;
}
.contracts-pro-page .custom-header .cta__button--btn-secondary a {
  background-color: var(--quaternary) !important;
  border-color: var(--quaternary) !important;
  color: var(--black) !important;
}
.contracts-pro-page .custom-header .cta__button--btn-secondary a svg path {
  stroke: var(--black) !important;
}
.contracts-pro-page .custom-header .cta__button--btn-secondary a:hover {
  background-color: transparent !important;
  border-color: var(--quaternary) !important;
  color: var(--quaternary) !important;
}
.contracts-pro-page .custom-header .cta__button--btn-secondary a:hover svg path {
  stroke: var(--quaternary) !important;
}

.project-management .custom-header .cta__button--btn-secondary a {
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  color: var(--black) !important;
}
.project-management .custom-header .cta__button--btn-secondary a svg path {
  stroke: var(--black) !important;
}
.project-management .custom-header .cta__button--btn-secondary a:hover {
  background-color: transparent !important;
  border-color: var(--secondary) !important;
  color: var(--secondary) !important;
}
.project-management .custom-header .cta__button--btn-secondary a:hover svg path {
  stroke: var(--secondary) !important;
}
.enterprise-risk-page .custom-header .cta__button--btn-secondary a {
  background-color: var(--tertiary) !important;
  border-color: var(--tertiary) !important;
  color: var(--black) !important;
}
.enterprise-risk-page .custom-header .cta__button--btn-secondary a svg path {
  stroke: var(--black) !important;
}
.enterprise-risk-page .custom-header .cta__button--btn-secondary a:hover {
  background-color: transparent !important;
  border-color: var(--tertiary) !important;
  color: var(--tertiary) !important;
}
.enterprise-risk-page .custom-header .cta__button--btn-secondary a:hover svg path {
  stroke: var(--tertiary) !important;
}
.enterprise-assets-page .custom-header .cta__button--btn-secondary a {
  background-color: var(--quinary) !important;
  border-color: var(--quinary) !important;
  color: var(--black) !important;
}
.enterprise-assets-page .custom-header .cta__button--btn-secondary a svg path {
  stroke: var(--black) !important;
}
.enterprise-assets-page .custom-header .cta__button--btn-secondary a:hover {
  background-color: transparent !important;
  border-color: var(--quinary) !important;
  color: var(--quinary) !important;
}
.enterprise-assets-page .custom-header .cta__button--btn-secondary a:hover svg path {
  stroke: var(--quinary) !important;
}


body.header-light .dark-header-logo,
body:not(.header-light) .light-header-logo {
  display: none !important;
}
body.pop_open {
  overflow: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.header_sticky {
  position: sticky;
  top: 0;
  z-index: 11;
}
.header_sticky header.custom-header {
  position: relative;
}
body.pop-act {
  overflow: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0000);
  white-space: nowrap;
  border: 0;
}
.hs-landing-pg .hs_cos_wrapper_type_linked_image img {
  margin-bottom: 15px;
}
.close-icon-wrp .close:after,
.close-icon-wrp .close:before {
  height: 3.5px;
  width: 44px;
  background-color: #000;
  transition: 0.3s;
}
.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  padding: 32px 0;
  transition: all 0.8s ease-in-out;
}
.header__container {
  max-width: 1416px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}
.custom-logo img {
  /*     width: 131px !important; */
}
.header-bottom-in {
  align-items: center;
  display: flex;
  gap: 20px;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul {
  align-items: center;
  display: flex;
  flex-direction: row;
  column-gap: 32px;
}
.close-icon-wrp,
.mobile-trigger {
  align-items: center;
  cursor: pointer;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li {
  position: relative;
  padding: 0;
  line-height: normal;
  margin: 0;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
  display: inline-block;
  position: relative;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul li a {
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  text-decoration: none;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul li {
  line-height: normal;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul ul li a {
  display: inline-block;
  text-transform: capitalize;
  position: relative;
}
.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  overflow: hidden;
  overflow-x: auto;
}
body.no-banner {
  /*     margin-top: 83px; */
}
body.mobile-open {
  overflow: hidden;
}
.hs-cta-embed a {
  display: inline-block;
}
.header-button {
  margin-left: auto;
}
.mobile-open .custom-header {
  background-color: var(--black);
  transition: all 0.1s linear;
}
.header-light.mobile-open .custom-header {
  background-color: var(--white);
  transition: all 0.1s linear;
}
@media (min-width: 1025px) {

  .custom-menu-primary.desktop.desktop-menu {
    padding-left: 44px;
  }
  button.mobile-trigger {
    display: none;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.hs-item-has-children {
    padding-right: 18px;
  }
  .child-trigger {
    position: absolute;
    top: 6px;
    right: 0;
    line-height: 0;
  }
  .child-trigger svg {
    width: 11px;
    height: 8px;
  }
  .custom-header.lp-header .header-bottom-in {
    padding: 22px 0;
  }
  .mobile-trigger,
  .mobile-menu {
    display: none !important;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:after {
    bottom: -31px;
    content: "";
    height: 38px;
    left: 0;
    /*     pointer-events: none; */
    position: absolute;
    right: 0;
    width: 100%;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li ul {
    list-style: none;
    margin: 0;
    padding: 16px;
    position: absolute;
    left: 0;
    width: 232px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.5s;
    top: 100%;
    transform: translateY(-12px);
    z-index: 2;
    border-radius: 4px;
    flex-direction: column;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% + 10px);
    transform: translateY(0);
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul li:not(:last-child) {
    margin-bottom: 12px;
  }
}
@media (min-width: 992px) {
  .bg-overlay {
    display: none;
  }
}

@media (max-width: 1220px) and (min-width: 1025px) {
  .custom-logo img {
    width: 135px !important;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper ul li a {
    font-size: 14px;
  }
  .header-button a.cta__link {
    font-size: 12px;
    padding: 12px 20px 12px 20px;
  }
  .custom-menu-primary.desktop.desktop-menu {
    padding-left: 0;
  }
  .header-button {
    margin-left: 0;
  }
  .header-bottom-in {
    justify-content: space-between;
  }
}
@media (max-width: 1024px) {
  .custom-menu-primary.desktop .hs-menu-wrapper ul li a {
    display: block;
  }
  body.no-banner {
    /* 	   margin-top: 87px; */
  }
  .menu-dsk {
    display: none !important;
  }
  .header-bottom-in {
    flex-direction: column;
  }
  .custom-logo {
    margin-right: auto;
  }
  .mobile-trigger {
    border-radius: 0;
    cursor: pointer;
    height: 25px;
    position: relative;
    transition-duration: .5s;
    width: 32px;
    border: none;
    position: absolute;
    top: 4px;
    right: 15px;
    display: block;
    line-height: 40px;
    margin: 0;
    padding: 0;
    background: transparent;
  }  
  .mobile-trigger .icon {
    background-color: var(--white);
    height: 3px;
    position: absolute;
    transition-duration: .5s;
    width: 32px;
    top: 11px;
    display: block;
  }
  .mobile-trigger .icon:after, .mobile-trigger .icon:before {
    background-color: var(--white);
    content: "";
    height: 3px;
    position: absolute;
    transition-duration: .5s;
    width: 32px;
    display: block;
  }
  .mobile-trigger .icon:before {
    top: -11px;
  }
  .mobile-trigger .icon:after {
    top: 11px;
  }
  .mobile-trigger:focus,
  .mobile-trigger:hover {
    background: transparent;
    border: none;
  }
  .mobile-open .mobile-trigger .icon {
    background: transparent;
    transition-duration: .5s;
  }
  .mobile-open .mobile-trigger .icon:before {
    transform: rotate(45deg) scaleX(1) translate(7px, 8.5px);
  }
  .mobile-open .mobile-trigger .icon:after {
    transform: rotate(-45deg) scaleX(1) translate(7px, -8.5px);
  }
  .desktop-button {
    display: none !important;
  }
  .custom-menu-primary.desktop {
    width: 100%;
    display: none;
  }
  .custom-menu-primary.desktop-menu {
    display: none !important;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper {
    /*     padding: 120px 124px 48px;
    overflow-y: auto;
    max-height: calc(100vh - 91px);
    height: 100%; */
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul {
    flex-direction: column;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper ul li a {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
  }  
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li {
    padding: 0;
    position: relative;
    width: 100%;
    padding: 32px 35px 32px 0;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:first-child {
    padding-top: 0;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:first-child .child-trigger {
    top: 0;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:not(:last-child) {
    border-bottom: 1px solid #ffffff;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child {
    padding-bottom: 0;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li ul {
    border: none;
    display: block;
    display: none;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li ul li {
    margin: 0;
    padding-top: 32px;
    padding-left: 24px;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul li:not(:last-child) {
    margin-bottom: 0;
  }
  .child-trigger {
    cursor: pointer;
    display: block;
    height: 26px;
    min-width: 26px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 32px;
    width: 26px;
  }
  .child-trigger:hover{
    text-decoration: none;
  }
  .child-trigger i {
    display: inline-block;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    width: 10px;
    height: 10px;
    transform: rotate(-315deg);
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-315deg);
    transition: 0.3s linear;
  }
  .child-open.child-trigger i {
    transform: translate(-50%, -50%) rotate(-495deg);
  }
  .child-trigger svg {
    width: 14px;
    height: 8px;
    transition: transform 0.3s ease;
  }
  .child-trigger.child-open svg {
    transform: rotate(-180deg);
  }
  .child-trigger {
    text-align: center;
  }
  .bg-overlay,
  .custom-menu-mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: none !important;
  }
  .bg-overlay {
    left: 0;
    background-color: #59595b;
    opacity: 0.75;
    z-index: 999;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s;
  }
  body.mobile-open .bg-overlay {
    visibility: visible;
    pointer-events: auto;
  }
  .custom-menu-mobile {
    overflow: hidden;
    background-color: #fff;
    overflow-y: auto;
    transform: translateX(100%);
    max-width: 472px;
    z-index: 9999;
    transition: 0.5s;
  }
  .mobile-open .custom-menu-mobile {
    transform: translateX(0);
  }
  .custom-menu-primary.mobile {
    padding: 40px 32px 89px;
  }
  .custom-menu-primary.mobile .hs-menu-wrapper > ul {
    display: block;
  }
  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li {
    margin-bottom: 32px;
  }
  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li:last-child {
    margin-bottom: 0;
  }
  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > a {
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.41666666667;
    padding-bottom: 16px;
    text-decoration: none;
  }
  .custom-menu-primary.mobile .hs-menu-wrapper ul ul > li > a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.375;
    padding-bottom: 16px;
    text-decoration: none;
  }
  .custom-menu-primary.mobile .hs-menu-wrapper ul ul > li:last-child > a,
  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li:not(.hs-item-has-children) > a {
    padding-bottom: 0;
  }
  .custom-menu-primary.mobile-menu {
    position: fixed;
    top: 99px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    height: 100vh;
    background-color: #000000;
  }
  .custom-menu-primary .hs_cos_wrapper_type_menu {
    /*     height: 100%;
    display: block; */
  }
  .mobile-trigger svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }
  .mobile-trigger svg.close-icon {
    opacity: 0;
  }
  body.mobile-open .mobile-trigger svg.close-icon {
    opacity: 1;
  }
  body.mobile-open .mobile-trigger svg.normal-icon {
    opacity: 0;
  }
  .header-button {
    margin: 0;
  }
  .mobile-menu-in {
    padding: 120px 124px 48px;
    overflow-y: auto;
    max-height: calc(100vh - 91px);
    height: 100%;
    /*     display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px; */
  }
  .header-button.mobile-button {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .mobile-trigger {
    top: 1px;
  }
  .custom-menu-primary.mobile-menu {
    top: 77px;
  }
  .custom-header {
    padding: 25px 0;
  }
  .custom-logo img {
    width: 150px !important;
  }
  .header__container {
    padding: 0 20px;
  }
  .mobile-trigger {
    right: 15px;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper {
    /*     padding: 48px 20px 48px;
    max-height: calc(100vh - 77px); */
  }
  .mobile-menu-in {
    padding: 48px 20px 48px;
    max-height: calc(100vh - 77px);
  }
}
.footer {
  padding: 168px 0 64px;
  padding: 80px 0 64px;
}
.footer .content-wrapper {
  margin: 0 auto;
  width: 100%;
}
.footer-top .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-top {
  padding-bottom: 64px;
}
.footer-logo {
  padding-bottom: 64px;
}
.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu .hs-menu-wrapper > ul {
  display: flex;
  flex-direction: row;
  column-gap: 12px;
  row-gap: 40px;
  flex-wrap: wrap;
}
.footer-menu .hs-menu-wrapper > ul > li {
  line-height: normal;
  width: calc(25% - 12px * 3 / 4);
  width: calc(20% - 12px * 4 / 5);
  width: calc(16.666% - 12px * 5 / 6);
}
.footer-menu .hs-menu-wrapper ul li {
  margin-bottom: 0;
  letter-spacing: 0.45px;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.footer-menu .hs-menu-wrapper > ul > li > a {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #939393;
  display: inline-block;
  margin-bottom: 24px;
  /*   cursor: text; */
  text-decoration: none;
}
.footer-menu .hs-menu-wrapper > ul > li:not(.hs-item-has-children) > a {
  margin-bottom: 0;
}
.footer-menu .hs-menu-wrapper > ul > li > a[href="javascript:;"] {
  cursor: text;
}
.footer-menu ul ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px;
}
.footer-menu .hs-menu-wrapper ul ul li a {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  display: inline-block;
  text-decoration: none;
}
.footer-menu .hs-menu-wrapper ul li a:hover {
  text-decoration: none;
}
.footer-bottom .row {
  padding-top: 64px;
}
.footer-bottom .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 20px;
}
.footer-social-privacy {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  align-items: center;
  width: 50%;
}
.copyright {
  letter-spacing: 0.45px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #939393;
  text-decoration: none;
  width: 50%;
}
.privacy-links {
  padding-left: 40px;
}
.privacy-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 8px;
  line-height: normal;
}
.privacy-links ul li {
  line-height: normal;
  margin: 0;
}
.privacy-links ul li a {
  letter-spacing: 0.45px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.footer.lp-footer {
  padding: 80px 0 64px;
}
.lp-footer .privacy-links {
  padding-left: 0;
}
.lp-footer .footer-logo {
  padding-bottom: 0;
}
@media (max-width: 1200px) {
  .footer-bottom .row {
    gap: 20px;
  }
  .footer-social-privacy,
  .copyright {
    width: calc(50% - 20px);
  }
  .privacy-links {
    padding-left: 20px;
  }
  .privacy-links ul {
    column-gap: 20px;
  }
}
@media (max-width: 991px) {
  .footer {
    padding: 40px 0;
  }
  .footer-logo {
    padding-bottom: 40px;
  }
  .footer-top {
    padding-bottom: 40px;
  }
  .footer-bottom .row,
  .footer-social-privacy {
    flex-direction: column;
  }
  .privacy-links {
    padding-left: 0;
  }
  .footer-social-privacy, .copyright {
    width: 100%;
    text-align: center;
  }
  .footer-social-privacy {
    row-gap: 20px;
  }
  .footer-bottom .row {
    padding-top: 40px;
  }
  .privacy-links ul {
    justify-content: center;
  }
}
@media (max-width: 960px) {
  .footer-logo {
    padding-bottom: 40px;
  }
  .footer-menu .hs-menu-wrapper > ul {
    column-gap: 20px;
  }
  .footer-menu .hs-menu-wrapper > ul > li {
    width: calc(50% - 20px / 2);
  }
}
@media (max-width: 767px) {
  .footer-top {
    padding-bottom: 30px;
  }
  .footer-bottom .row {
    padding-top: 30px;
  }
  .footer-logo img {
    width: 180px !important;
  }
  .footer-menu .hs-menu-wrapper > ul {
    row-gap: 18px;
  }
  .privacy-links ul li a,
  .copyright {
    font-size: 13px;
    font-weight: 400;
  }
}
@media(max-width: 520px) {
  .footer {
    padding: 40px 0;
  }
  .footer-top {
    padding-top: 30px;
  }
  .footer-menu .hs-menu-wrapper > ul > li {
    /*     width: 100%; */
  }
  .footer-bottom .row {
    padding-top: 30px;
  }
  .footer-logo img {
    width: 150px !important;
  }
}

/* .footer-menu .hs-menu-wrapper > ul > li > a {
  font-weight: 400;
} */

.privacy-links ul li a,
.copyright {
    font-weight: 400;
  font-size:13px;
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding-left: 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%;
}

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