/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

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



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


.row-fluid .span1,
.row-fluid .span2,
.row-fluid .span3,
.row-fluid .span4,
.row-fluid .span5,
.row-fluid .span6,
.row-fluid .span7,
.row-fluid .span8,
.row-fluid .span9,
.row-fluid .span10,
.row-fluid .span11,
.row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
  .row-fluid .span1 {
    width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span2 {
    width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span3 {
    width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span4 {
    width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span5 {
    width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span6 {
    width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span7 {
    width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span8 {
    width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span9 {
    width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span10 {
    width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span11 {
    width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
  }
  
}
.content-wrapper, .dnd-section>.row-fluid, .page-center {
  margin: 0 auto;
  padding: 0 1rem;
  width:100%;
}

.dnd-section[class*="force-full-width-section"]>.row-fluid .dnd-column {
  padding: 0;
}

.dnd-section[class*="force-full-width-section"] > .row-fluid{
  padding:0;
}

.dnd-section[class*="force-full-width-section"]{
  padding:0;
}

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

@media (max-width: 767px) {
  .dnd-section .dnd-column,
  .dnd-section>.row-fluid .dnd-column{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (min-width: 768px) {
  .content-wrapper.align-right {
    max-width: calc(var(--body_container_size) + ((100% - var(--body_container_size)) / 2));
    margin-right: 0;
    padding-right: 0;
  }

  .content-wrapper.align-left {
    max-width: calc(var(--body_container_size) + ((100% - var(--body_container_size)) / 2));
    margin-left: 0;
    padding-left: 0;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

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

body {
  line-height: 1.4;
  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 {
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0px 0px 20px;
  padding-left: 1.4rem;
  line-height:1.5;
}

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

.hs_cos_wrapper_type_module > hr:only-child {
  border-bottom-color: transparent;
}

/* Image alt text */

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

svg{
  fill:currentColor;
  vertical-align: middle;
}
button,
.button,
.hs-button,
.btn__primary,
.btn--primary a,
.btn--custom a,
.btn__secondary,
.btn--secondary a,
.btn__tertiary,
.btn--tertiary a,
.btn__quaternary,
.btn--quaternary a {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all .15s linear;
  white-space: normal;
  line-height: 1.03448276;
  letter-spacing: -0.24px;
}
.btn__tertiary,
.btn--tertiary a {
  line-height: 1.75
}
.hs-button,
.btn__primary,
.btn--primary a,
.btn--custom a,
.btn__secondary,
.btn--secondary a,
.btn__tertiary,
.btn--tertiary a,
.btn__quaternary,
.btn--quaternary a {
  font-weight: Bold;
}

button:disabled,
.button:disabled {
  background-color: #d0d0d0;
  border-color: #d0d0d0;
  color: #e6e6e6
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  text-decoration: none
}

button:active,
.button:active {
  text-decoration: none
}

.btn_wrap a {
  align-items: center;
  display: inline-flex;
  justify-content: space-between;
  gap: 5px
}

.btn-wrapper .icon-icon svg,
.btn_wrap .icon svg {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  color: inherit;
  fill: currentcolor
}

.btn-wrapper .text.text_icon-icon,
.btn_wrap .text {
  vertical-align: middle;
  display: inline-block;
  line-height: 1
}

.btn-wrapper .icon-icon,
.btn_wrap .icon {
  display: inline-block;
  vertical-align: middle;
  color: inherit
}

.slider_btn .splide__arrow {
  position: static;
  transform: none
}

.slider_btn .splide__arrows {
  display: flex;
  justify-content: end;
  gap: 1rem;
  padding-bottom: 2rem
}

.slider_btn .splide__arrow {
  font-size: .9rem;
  height: auto;
  width: auto;
  padding: .625em 2em;
  border-radius: 56px;
  line-height: 1;
  border: 1px solid var(--tertiary_color);
  background-color: transparent
}

.slider_btn .splide__arrow svg {
  font-size: 1rem;
  height: 1.5em;
  width: 1.5em;
  fill: currentColor;
  color: var(--tertiary_color);
  line-height: 1
}

.slider_btn .splide__arrow:hover svg {
  color: var(--quaternary_color)
}

.slider_btn .splide__arrow:hover {
  background-color: var(--tertiary_color);
  border-color: var(--tertiary_color)
}

.slider_btn .splide__pagination__page {
  border: 1px solid var(--tertiary_color);
  background-color: transparent
}

.slider_btn .splide__pagination__page.is-active {
  border-color: var(--tertiary_color);
  background-color: var(--tertiary_color)
}

.slider_btn .splide__pagination__page:hover {
  border-color: var(--tertiary_color);
  background-color: var(--tertiary_color)
}

.btn-item a {
  display: inline-block;
  vertical-align: middle;
  gap: 16px
}

.btn-item.type_std a .icon-image {
  display: inline-block
}

.btn-item.type_std a .text.text_icon-image {
  display: inline-block;
  vertical-align: bottom
}

.btn-item.type_std a .icon-image img {
  vertical-align: middle
}

@media(max-width:767px) {
  .body-container-wrapper button,
  .body-container-wrapper .button,
  .body-container-wrapper .hs-button,
  .body-container-wrapper .btn__primary,
  .body-container-wrapper .btn--primary a,
  .body-container-wrapper .btn--custom a,
  .body-container-wrapper .btn__secondary,
  .body-container-wrapper .btn--secondary a,
  .body-container-wrapper .btn__tertiary,
  .body-container-wrapper .btn--tertiary a,
  .body-container-wrapper .btn__quaternary,
  .body-container-wrapper .btn--quaternary a {
    font-size: 14px
  }
}
.hs-form-field{margin-bottom:1.4rem}.hs-search-field__bar button svg{min-height:18px;min-width:18px}form label{display:block;font-size:.875rem;margin-bottom:.35rem;font-weight:500}form label:has(.hs-form-required){font-weight:600}.form-title{margin-bottom:0;font-weight:400}.form-title:empty{display:none}form legend{font-size:.875rem}form input[type=text],form input[type=search],form input[type=email],form input[type=password],form input[type=tel],form input[type=number],form input[type=file],form select,form textarea{display:inline-block;font-size:.875rem;padding:.7rem;width:100%;outline:0}form textarea{min-height:150px;resize:none}form fieldset{max-width:100% !important}form .inputs-list{margin:0;padding:0;list-style:none}form .inputs-list>li{display:block;margin:.7rem 0}form .inputs-list input,form .inputs-list span{vertical-align:middle}form input[type=checkbox],form input[type=radio]{cursor:pointer;margin-right:.35rem}.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}.widget-type-google_search a.hs-button.primary{margin-top:20px}.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}form input[type=file]{background-color:transparent;border:initial;padding:initial}form .hs-richtext,form .hs-richtext p{font-size:.875rem;margin:0 0 1.4rem}form .hs-richtext img{max-width:100% !important}.legal-consent-container .hs-form-booleancheckbox-display>span,.legal-consent-container .hs-form-booleancheckbox-display>span p{margin-left:1rem !important}.hs-form-required{color:#ef6b51}.hs-input.invalid.error{border-color:#ef6b51}.hs-error-msg{color:#ef6b51;margin-top:.35rem}form input[type=submit],form .hs-button{cursor:pointer;display:inline-block;text-align:center;transition:all .15s linear;white-space:normal}.grecaptcha-badge{margin:0 auto}.hs_error_rollup label{color:#ef6b51 !important}::-webkit-input-placeholder{color:currentColor}::-moz-placeholder{color:currentColor}:-ms-input-placeholder{color:currentColor}:-moz-placeholder{color:currentColor}::placeholder{color:currentColor}@media(max-width:450px){.hs_recaptcha.hs-recaptcha.hs-form-field{overflow:auto}}@media(max-width:400px),(min-device-width:320px) and (max-device-width:480px){form .hs-input:not([type="checkbox"]):not([type="radio"]){width:100% !important}}.hs_cos_wrapper_type_email_subscriptions,.hs_cos_wrapper_type_password_prompt,.hs-search-field__bar,.widget-type-form,.hs_cos_wrapper_type_form,.widget-type-blog_subscribe,.widget-type-google_search,.widget-type-password_prompt.custom_error_message,.widget-type-email_simple_subscription,.section.post-footer form,.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{display:block;margin-bottom:20px}form fieldset.form-columns-1 .hs-form-field .hs-input,form fieldset.form-columns-2 .hs-form-field .hs-input{width:100%}form fieldset.form-columns-1 .hs-form-field .input,form fieldset.form-columns-2 .hs-form-field:last-child .input{margin-right:0}

form input[type=checkbox], form input[type=radio] {
    margin-top: 4px;
}
table{border:1px solid;margin-bottom:1.4rem;overflow-wrap:break-word;word-break:normal}th,td{border:1px solid;padding:.75rem;vertical-align:top;text-align:left}th{font-weight:bold}thead th,thead td{border-bottom:1px solid;vertical-align:bottom}

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

.footer{
  position:relative;
  z-index:9;
}
@keyframes menuHoverIn{0%{opacity:0}to{opacity:1}}@keyframes menuHoverOut{0%{opacity:1}to{opacity:0}}.header_section{position:relative;z-index:9999}.header .row-fluid .span12{min-height:auto}.header_section .desktop .page-center{padding-right:0}.header_section .desktop{padding-right:var(--page_center_spacing)}.header_section .btn_wrap .btn_inner a{font-weight:600}.menu_hoverd .header_section:after{content:"";width:100%;height:calc(100vh - 100px);position:fixed;top:100px;transition:.3s ease-in-out;backdrop-filter:blur(5px);background-color:rgba(255,255,255,.5);animation:.3s linear menuHoverIn}.menu_hoverd .header_section.sticky_head:after{height:calc(100vh - 70px);top:70px}
.hs-menu-wrapper ul{display:flex;flex-wrap:wrap;list-style:none;margin:0;padding-left:0}.splide .splide__pagination{gap:10px}.splide .splide__pagination__page.is-active{transform:scale(1.7)}.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper,.hs-menu-wrapper.hs-menu-flow-vertical ul{flex-direction:column}.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul{display:inline-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.hs-menu-flow-horizontal ul{flex-direction:column}.hs-menu-wrapper.hs-menu-flow-vertical ul{display:flex}.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}}.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;
  }
}

