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

@media (min-width: 768px) {
    .visible-phone{
	   display: none; 
    }
}
@media (max-width: 767px) {
    .hidden-phone{
	   display: none; 
    }
}

/* 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: webflow-icons;
    font-style: normal;
    font-weight: 400;
    src: url("data:application/x-font-ttf;charset=utf-8;base64,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") format("truetype")
}

@font-face {
    font-family: 'Aeonik Pro';
    src: url(https://2001761.fs1.hubspotusercontent-na1.net/hubfs/2001761/raw_assets/public/Dataweavers_January2026/fonts/Aeonik-Regular.eot) format('embedded-opentype'),
	   url(https://2001761.fs1.hubspotusercontent-na1.net/hubfs/2001761/raw_assets/public/Dataweavers_January2026/fonts/Aeonik-Regular.woff2)  format('woff2'),
	   url(https://2001761.fs1.hubspotusercontent-na1.net/hubfs/2001761/raw_assets/public/Dataweavers_January2026/fonts/Aeonik-Regular.woff)  format('woff'),
	   url(https://2001761.fs1.hubspotusercontent-na1.net/hubfs/2001761/raw_assets/public/Dataweavers_January2026/fonts/Aeonik-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Aeonik Pro';
    src: url(https://2001761.fs1.hubspotusercontent-na1.net/hubfs/2001761/raw_assets/public/Dataweavers_January2026/fonts/Aeonik-Medium.eot) format('embedded-opentype'),
	   url(https://2001761.fs1.hubspotusercontent-na1.net/hubfs/2001761/raw_assets/public/Dataweavers_January2026/fonts/Aeonik-Medium.woff2)  format('woff2'),
	   url(https://2001761.fs1.hubspotusercontent-na1.net/hubfs/2001761/raw_assets/public/Dataweavers_January2026/fonts/Aeonik-Medium.woff)  format('woff'),
	   url(https://2001761.fs1.hubspotusercontent-na1.net/hubfs/2001761/raw_assets/public/Dataweavers_January2026/fonts/Aeonik-Medium.ttf) format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik Pro';
    src: url(https://2001761.fs1.hubspotusercontent-na1.net/hubfs/2001761/raw_assets/public/Dataweavers_January2026/fonts/Aeonik-Bold.eot) format('embedded-opentype'),
	   url(https://2001761.fs1.hubspotusercontent-na1.net/hubfs/2001761/raw_assets/public/Dataweavers_January2026/fonts/Aeonik-Bold.woff2)  format('woff2'),
	   url(https://2001761.fs1.hubspotusercontent-na1.net/hubfs/2001761/raw_assets/public/Dataweavers_January2026/fonts/Aeonik-Bold.woff)  format('woff'),
	   url(https://2001761.fs1.hubspotusercontent-na1.net/hubfs/2001761/raw_assets/public/Dataweavers_January2026/fonts/Aeonik-Bold.ttf) format('truetype');
    font-weight: 700;
    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 15px;
}

/* 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;
}
[class*=" w-icon-"],[class^=w-icon-] {
    font-family: webflow-icons!important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.custom-menu-primary.desktop-menu.light {
    display: none;
}
body.header-light .custom-menu-primary.desktop-menu.dark {
    display: none;
}

body.header-light .custom-menu-primary.desktop-menu.light {
    display: block;
}

body.header-light .persona-selector>ul>li>.parent-title-wrap {
    color: var(--black);
}

body.header-light .persona-selector>ul>li>.parent-title-wrap svg path {
    fill: var(--black);
}

.skip-to-content-link {
    position: absolute;
    top: -40px;
    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;
}
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: 24px;
    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 {
    width: 14px;
    height: 14px;
    margin-left: 9px;
}
.cta__button .cta__link {
    font-family: JetBrains Mono;
}
.cta__button--btn-primary a,
.cta__button--btn-secondary a,
.cta__button--btn-tertiary a {
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    white-space: normal;
    display: inline-flex;
    padding: 12px 16px 12px 16px;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.cta__button.btn-small a {
    font-size: 14px;
    padding: 12px 20px;
}
.cta__button--btn-primary a svg,
.cta__button--btn-secondary a svg,
.cta__button--btn-tertiary a svg {
    width: 14px;
    height: 14px;
    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;
}
/* Form */
input::-webkit-input-placeholder {
    color: var(--primary);
    opacity: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}
input::-moz-placeholder {
    color: var(--primary);
    opacity: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}
input:-ms-input-placeholder {
    color: var(--primary);
    opacity: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}
input::-ms-input-placeholder {
    color: var(--primary);
    opacity: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}
.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: 40px;
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
}
form select {
    background-image: url(https://41345211.fs1.hubspotusercontent-na1.net/hubfs/41345211/Fentress_December2025/images/arrow.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px 6px;
    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: 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: 767px) {
    .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: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: 24px;
}
@media(max-width:991px) {
    .hs-form-field {
	   margin-bottom: 24px;
    } 
}
/* Labels */
.hs-form label {
    display: block;
    margin-bottom: 0.35rem;
}
.hs-form label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    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: 500;
    line-height: 1.2;
    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: 48px;
    padding: 2px 12px;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    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 {
    font-family: JetBrains Mono;
    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: 18px;
    line-height: 1;
    font-weight: 500;
    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
*/

body.pop_open {
    overflow: hidden;
}
.custom-header .cta-group {
    gap: 8px;
    margin-top: ;
}
.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;
}
.header__container {
    margin: 0 auto;
    width: 100%;
}
.header-bottom-in {
    align-items: stretch;
    display: flex;
}
.custom-logo {
    padding: 22px 32px 22px 0;
    display: flex;
    align-items: center;
}
body.header-light .dark-header-logo,
body:not(.header-light) .light-header-logo {
    display: none !important;
}
.custom-logo .widget-type-logo {
    line-height: normal;
}
.custom-logo img {
    width: 57px !important;
}
.lp-header .custom-logo img {
    width: auto !important;
}
.close-icon-wrp,
.mobile-trigger {
    align-items: center;
    cursor: pointer;
}
.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;
    display: flex;
    align-items: center;
}
.custom-menu-primary.desktop-menu {
    padding: 0 40px;
    padding: 0 20px 0 40px;
}
.custom-menu-primary.desktop-menu .hs_cos_wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}
header.custom-header.lp-header {
    border-bottom: 1px solid transparent;
}
@media (min-width: 1025px) {
    button.mobile-trigger {
	   display: none;
    }  
    .custom-menu-primary.mobile-menu, 
    .header-button.mobile-button {
	   display: none !important;	   
    }
    .body-overlay.active {
	   position: fixed;
	   top: 0;
	   left: 0;
	   right: 0;
	   bottom: 0;
	   width: 100%;
	   height: 100%;
	   background-color: rgba(0, 0, 0, 0.5);
	   z-index: 99;
    }
}
@media (max-width: 1200px) {
    .custom-logo {
	   padding: 22px 15px 22px 0;
    }
    .custom-menu-primary.desktop-menu {
	   padding: 0 15px;
    }
}
@media (max-width: 1024px) {
    .custom-menu-primary.desktop-menu,
    .header-button.desktop-button {
	   display: none !important;	   
    }
    .custom-logo {
	   padding: 22px 16px 22px 0;
    }
    .custom-logo img {
	   width: 41px !important;
    }
    .lp-header .custom-logo img {
	   width: auto !important;
    }
    .mobile-trigger {
	   border-radius: 0;
	   cursor: pointer;
	   height: 24px;
	   position: relative;
	   transition-duration: .5s;
	   width: 24px;
	   border: none;
	   position: absolute;
	   top: 23px;
	   right: 24px;
	   display: block;
	   line-height: 24px;
	   margin: 0;
	   padding: 0;
	   background: transparent;
    }  
    .mobile-trigger svg {
	   position: absolute;
	   top: 50%;
	   left: 50%;
	   transform: translate(-50%, -50%);
	   transition: all 0.3s ease;
    }
    body.mobile-open .mobile-trigger svg.normal-icon {
	   opacity: 0;
    }
    .mobile-trigger svg.close-icon {
	   opacity: 0;
    }
    body.mobile-open .mobile-trigger svg.close-icon {
	   opacity: 1;
    }
    .mobile-trigger:focus,
    .mobile-trigger:hover {
	   background: transparent;
	   border: none;
    }
    .header-light .mobile-trigger svg path {
	   fill: var(--black);
    }
    .custom-menu-primary.mobile-menu {
	   position: fixed;
	   top: 65px;
	   left: 0;
	   right: 0;
	   width: 100%;
	   z-index: 998;
	   height: 100vh;
	   background-color: #000000;
	   overflow: hidden;
	   max-height: calc(100vh - 65px);
	   overflow-y: auto;
	   display: none;
    }
    .header-light .custom-menu-primary.mobile-menu {
	   background-color: var(--white);
    }
    .custom-menu-primary.mobile-menu .hs_cos_wrapper_type_menu {
	   height: 100%;
	   display: block;
    }
    .custom-menu-mobile {
	   padding: 16px;
    }
    .header-button {
	   margin-left: 0;
	   margin-top: 32px;
    }
    .header-button .cta-group {
	   gap: 8px;
    }
    .header-button .cta__button {
	   flex: 1;
    }
    .header-button .cta__button a {
	   display: flex;
	   justify-content: center;
    }
    .header-button .hs_cos_wrapper {
	   width: 100%;
    }
}
.footer .content-wrapper {
    margin: 0 auto;
    width: 100%;
}
.footer-top .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-logo {
    width: 48%;
    padding: 80px 0;
}
.footer-line {
    width: 12%;
}
.line-ele {
    width: 1px;
    height: 100%;
    margin-left: auto;
}
.footer-menu {
    width: 40%;
    text-align: right;
    padding: 80px 0;
}
.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-menu .hs-menu-wrapper > ul {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
    row-gap: 32px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.footer-menu .hs-menu-wrapper > ul > li {
    line-height: normal;
    width: calc(33.3333% - 40px);
}
.footer-menu .hs-menu-wrapper > ul > li > a {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    display: inline-block;
    margin-bottom: 24px;
    text-decoration: none;
}
.footer-menu ul ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 16px;
}
.footer-menu .hs-menu-wrapper ul ul li a {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    display: inline-block;
    text-decoration: none;
}
.footer-menu .hs-menu-wrapper ul li a:hover {
    text-decoration: none;
}
.footer-bottom {
    padding-top: 32px;
    padding-bottom: 32px;
}
.footer-bottom .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.copyright {
    font-size: 14px;
    line-height: normal;
}
.privacy-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 8px;
    line-height: normal;
}
.privacy-links ul li a {
    font-family: JetBrains Mono;
    font-weight: 500;
    font-size: 13px;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media (min-width: 768px) {
    .privacy-links ul {
	   justify-content: flex-end;
    }
}
@media (max-width: 1200px) {
    .footer-menu {
	   width: 45%;
    }
    .footer-menu .hs-menu-wrapper > ul {
	   column-gap: 15px;
    }
    .footer-menu .hs-menu-wrapper > ul > li {
	   line-height: normal;
	   width: calc(33.3333% - 15px);
    }
    .footer-line {
	   width: 7%;
    }
}
@media(max-width: 767px) {
    .footer-bottom .row {
	   flex-wrap: wrap;
    }
    .footer-line {
	   display: none;
    }
    .footer-logo {
	   width: 100%;
	   padding: 32px 0;
    }
    .footer-menu {
	   width: 100%;
	   text-align: left;
	   padding: 0 0 32px 0;
    }
    .footer-menu .hs-menu-wrapper > ul {
	   justify-content: flex-start;
    }
    .footer-menu .hs-menu-wrapper > ul > li {
	   width: calc(50% - 15px);
    }
}
/* 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;
  }
}