/* Theme base styles */

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

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

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */
body {
  line-height: 1.7;
  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;
  transition: 0.4s;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
  line-height: 1.2;
}
/* Lists */
ul,
ol {
  margin: 0 0 1.4rem;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}
ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
/* Code blocks */
pre {
  overflow: auto;
}
code {
  vertical-align: bottom;
}
/* Blockquotes */
blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}
b, strong {
  font-weight: bold;
}
/* Horizontal rules */
hr {
  border: none;
}
/* Image alt text */
img {
  font-size: 0.583rem;
  word-break: normal;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
hr {
  background-color: currentColor;
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%' viewBox='0 0 24 24' fill='black' stroke='none'%3E%3Cpolygon points='9.4,2 24,2 14.6,21.6 0,21.6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%' viewBox='0 0 24 24' fill='black' stroke='none'%3E%3Cpolygon points='9.4,2 24,2 14.6,21.6 0,21.6'/%3E%3C/svg%3E");
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: 10px;
  mask-size: 10px;
  min-height: 4.5px;
  width: 56%;
  margin: 0 0 1.4rem;
}
@media screen and (max-width: 1024px) {
  body .h4,
  body h4,
  .customer-inner__right h3{
    font-size: 20px;
  }
  body h1,
  body .h1{
    font-size:38px;
    line-height: 1.2 ;
  }
  body .h2,
  body h2{
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  body h1,
  body .h1{
    font-size: 36px;
  }
  body .h2,
  body h2{
    font-size: 32px;
  }
  body .h3,
  body h3,
  .customer-inner__right h2 {
    font-size: 24px;
  }
  body{
    font-size:16px !important;
  }
}
button,
.button,
.hs-button,
.scale-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
  box-shadow:none;
  transform: none;
}

button, .scale-button, .hs-button, .hs-blog-post-listing__post-button, .scale-solid-regular, .scale-solid-regular-primary-background, .scale-border-regular, .scale-border-primary, .scale-link {
  font-weight: 600;
}
/* Fields */
.widget-type-form {
  padding: 40px;
  position: relative;
  border-radius: 20px 20px 20px 20px;
  box-shadow: 0 0 24px -8px rgba(17, 36, 51, .57);
  background: #fff;
}
.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: block;
  font-size: 16px;
  font-weight: 400;
  min-height: 27px;
  border-radius: 5px 5px 5px 5px;
  padding: 10px 20px;
  width: 100%;
  max-width: 100%;
  height: 40px;
  border: 1px solid #cbd6e2;
  background-color: #f5f8fa;
}
form input[type=text]::focus-visible,
form input[type=search]::focus-visible,
form input[type=email]::focus-visible,
form input[type=password]::focus-visible,
form input[type=tel]::focus-visible,
form input[type=number]::focus-visible,
form input[type=file]::focus-visible,
form select::focus-visible,
form textarea::focus-visible {
  outline: 0;
}
form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}
form select {
  appearance: none;
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 12px;
  padding-right: 50px !important;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 1.5L6 6.5L1 1.5' stroke='%23757575' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}
form .hs-richtext img {
  max-width: 100% !important;
}
select.is-placeholder.hs-input {
  color: rgb(117, 117, 117);
}
/* 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: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

ul.no-list.hs-error-msgs.inputs-list label.hs-main-font-element {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51 !important;
}
form fieldset.form-columns-1 .hs-input {
  width: 100%!important;
}
form fieldset.form-columns-1 .hs-fieldtype-intl-phone.hs-input select {
  width: 30% !important;
}

form fieldset.form-columns-1 .hs-fieldtype-intl-phone.hs-input input {
  width: 68% !important;
}
/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
fieldset.form-columns-2
{
  display: flex;
  justify-content: space-between;
  flex-wrap:wrap;
}
.input {
  margin: 0 !important;
}
.hs-fieldtype-textarea.hs-input {
  height: 120px;
}
fieldset.form-columns-2>div{
  width: Calc(50% - 4px) !important;
}

fieldset.form-columns-3>div {
  width: Calc(33.3337% - 5.333333333333333px) !important;
}
fieldset.form-columns-1>div {
  width: 100%;
}
form fieldset.form-columns-1 input[type=checkbox] {
  width: auto !important;
}

.hs-dependent-field label.hs-form-booleancheckbox-display {
  font-size: 12px;
  line-height: 1.5;
}

form .hs-richtext,form .hs-richtext p {
  font-size: 12px;
  line-height: 1.5;
}

.widget-type-form {
  container-type: inline-size;
}
.hs-fieldtype-intl-phone.hs-input select {
  padding: 9px !important;
  appearance: auto;
  background-image: none;
}
@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px){
  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 {
    width: 100% !important;
  }
}





@media (max-width: 767px){
  form .form-columns-2 .hs-form-field,form .form-columns-3 .hs-form-field {
    float: none!important;
    width: 100%!important;
  }

}

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: middle;
}
.widget-type-rich_text table tr:nth-child(2n + 1) td {
  background: #f1f5fa;
}

.widget-type-rich_text table p {
  margin: 0;
}

.widget-type-rich_text thead th {
  text-align: left;
}

.widget-type-rich_text table {
  font-size: 13px;
}


.widget-type-rich_text td,.widget-type-rich_text th {
  vertical-align: middle;
}
@media(max-width:767px){
  .widget-type-rich_text td, .widget-type-rich_text th {
        padding: 10px;
  }
}

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

.scale-header .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.scale-dark .scale-header__menu-wrap ul > li > a {
  color: #FFFFFF;
}
.scale-light .scale-header__menu-wrap ul>li>a {
  color: #000000;
}
.scale-header__menu-wrap ul> li:not(last-child) {
  margin-right: 10px;
}
.scale-header__menu-wrap ul> li > a {
  display: block;
  padding: 10px;
}
.scale-header__right-bar svg {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}


.header.header--no-navigation {
  background-color: transparent;
  position: absolute;
  top: 20px;
  z-index: 9;
  left: 0;
  right: 0;
}
.scale-footer__no-menus {
  background-color: var(--clr-base-dk);
  color: #fff;
  font-size: 14px;
  padding: 24px 0;
  text-align: center;
}
.header.header--no-navigation img.hs-image-widget {
  width: 90px !important;
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

.page-center {
  margin: 0 auto;
  width: 100%;
}
:root {
  --ts-duration-factor: 1;
}
.scale--relative {
  position: relative;
}
button,
.scale-button,
.hs-button,
.hs-blog-post-listing__post-button,
.scale-solid-regular,
.scale-solid-regular-primary-background,
.scale-border-regular,
.scale-border-primary {
  text-align: center;
  align-items: center;
  display: inline-flex;
  transition: all .3s;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.54;
  box-shadow: 8px 8px 10px 0px rgba(16.999999999999993, 35.999999999999986, 51, 0.27);
}
button svg ,
.scale-button svg,
.hs-button svg,
.hs-blog-post-listing__post-button svg,
.scale-solid-regular svg,
.scale-solid-regular-primary-background svg,
.scale-border-regular svg,
.scale-border-primary svg {
  margin-left: 6px;
  fill: currentColor;
}
button:hover,
.scale-button:hover,
.hs-button:hover,
.hs-blog-post-listing__post-button:hover,
.scale-solid-regular:hover,
.scale-solid-regular-primary-background:hover,
.scale-border-regular:hover,
.scale-border-primary:hover,
.scale-tabs__tab-btn.scale-border-primary.active{
  transform: scale(1.08);
}
.scale-link,
.scale-link-back {
  padding: 0 !important;
  position: relative;
  color: var(--clr-cta-primary);
}
.scale-link::after {
  content: '';
  height: 20px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3C!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M566.6 342.6C579.1 330.1 579.1 309.8 566.6 297.3L406.6 137.3C394.1 124.8 373.8 124.8 361.3 137.3C348.8 149.8 348.8 170.1 361.3 182.6L466.7 288L96 288C78.3 288 64 302.3 64 320C64 337.7 78.3 352 96 352L466.7 352L361.3 457.4C348.8 469.9 348.8 490.2 361.3 502.7C373.8 515.2 394.1 515.2 406.6 502.7L566.6 342.7z' fill='' /%3E%3C/svg%3E");
  width: 20px;
  background-size: 20px;
  background-repeat: repeat;
  vertical-align: middle;
  margin-left: 5px;
}
.scale-link:hover:after {
  transform: translateX(2px);
}
.scale-link:after {
  transition: 0.4s;
}
.scale-header__intro {
  max-width: 767px;
  margin: 0 auto;
}
.scale-link-back::before {
  left: -20px;
  right: auto;
  transform: translateY(-4px) rotate(225deg);
}
.scale-link-back::after {
  left: -20px;
  right: auto;
}
/* .scale-dark .scale-link,
.scale-dark .scale-link-back {
color: var(--clr-cta-lt);
}
.scale-dark .scale-link::after,
.scale-dark .scale-link-back::after {
background-color: var(--clr-cta-lt);
} */
.hs_cos_wrapper_type_icon svg,
.scale-icon svg {
  display: block;
  height: 1em;
  width: 1em;
}
.scale--no-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.scale-rich-text ul {
  padding-inline-start: 42px;
}
.scale-rich-text ul li {
  list-style: none;
  position: relative;
  margin: 18px 0;
}
.scale-rich-text ul li::before {
  content: '';
  height: 20px;
  left: -35px;
  position: absolute;
  top: 5px;
  width: 20px;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg class='svg-inline--fa fa-cube premium-svg-nodraw' aria-hidden='true' focusable='false' data-prefix='fad' data-icon='cube' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' data-fa-i2svg=''%3E%3Cg class='fa-duotone-group'%3E%3Cpath class='fa-secondary' fill='%23595efa' opacity='0.4' d='M64 189.4c53.3 19 106.7 38.1 160 57.1l0 188L64 377.4l0-188zm224 57.1l160-57.1 0 188L288 434.6l0-188z'%3E%3C/path%3E%3Cpath class='fa-primary' fill='%23595efa' d='M234.5 5.7c13.9-5 29.1-5 43.1 0l192 68.6C495 83.4 512 107.5 512 134.6l0 242.9c0 27-17 51.2-42.5 60.3l-192 68.6c-13.9 5-29.1 5-43.1 0l-192-68.6C17 428.6 0 404.5 0 377.4L0 134.6c0-27 17-51.2 42.5-60.3l192-68.6zM256 66L82.3 128 256 190l173.7-62L256 66zM64 377.4l160 57.1 0-188L64 189.4l0 188zm224 57.1l160-57.1 0-188L288 246.6l0 188z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");}
.scale-full--image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scale-full--image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scale-dark {
  color: var(--clr-text-lt);
}
.scale-light {
  color: var(--clr-text-lt);
}
.page-center {
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.scale-light .scale-swiper .swiper-button-next, 
.scale-light .scale-swiper .swiper-button-prev {
  color: var(--clr-primary);
  font-weight: 700;
}
.scale-light .scale-swiper .swiper-pagination-bullet {
  background-color: var(--clr-primary);
}
.scale-dark .scale-swiper .swiper-button-next, 
.scale-dark .scale-swiper .swiper-button-prev {
  color: var(--clr-text-dk);
}
.scale-dark .scale-swiper .swiper-pagination-bullet {
  background-color: var(--clr-bg-dk);
}
.scale-swiper .swiper-pagination {
  position: static;
  margin-top: 20px;
}
.scale-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: all calc(.1s * 1) ease-in-out;
}
.scale-swiper .swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 52px;
}
.scale-continuous__slider {
  transition-timing-function: linear !important;
}
.scale-header__intro--left {
  margin-left: 0;
}
.scale-header__intro--right {
  margin-right: 0;
}
.scale-header__intro--center {
  margin: 0 auto;
}
.scale-svg-large__icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 5px;
}
.scale-svg-large__icon path {
  fill: #1BFDFE;
}
.scale-dark .scale-rich-text ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='svg-inline--fa fa-cube premium-svg-nodraw' aria-hidden='true' focusable='false' data-prefix='fad' data-icon='cube' role='img' viewBox='0 0 512 512' data-fa-i2svg='' style=' '%3E%3Cg class='fa-duotone-group'%3E%3Cpath class='fa-secondary' fill='%23fff' d='M64 189.4c53.3 19 106.7 38.1 160 57.1l0 188L64 377.4l0-188zm224 57.1l160-57.1 0 188L288 434.6l0-188z' style=' opacity: 0.4; '/%3E%3Cpath class='fa-primary' fill='%23ffff' d='M234.5 5.7c13.9-5 29.1-5 43.1 0l192 68.6C495 83.4 512 107.5 512 134.6l0 242.9c0 27-17 51.2-42.5 60.3l-192 68.6c-13.9 5-29.1 5-43.1 0l-192-68.6C17 428.6 0 404.5 0 377.4L0 134.6c0-27 17-51.2 42.5-60.3l192-68.6zM256 66L82.3 128 256 190l173.7-62L256 66zM64 377.4l160 57.1 0-188L64 189.4l0 188zm224 57.1l160-57.1 0-188L288 246.6l0 188z'/%3E%3C/g%3E%3C/svg%3E");
}
.scale-bottom-shape{
  bottom: -1px;
  left: 0;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  transform: rotate(180deg);
  width: 100%;
}
.scale-bottom-shape svg{
  display: block;
  height: 125px;
  left: 50%;
  position: relative;
  transform: translateX(-50%) rotateY(180deg);
  width: calc(100% + 1.3px);
  z-index: -1;
}
.scale-top-shape {
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: -1px;
  left: 0;
}
.scale-top-shape svg {
  display: block;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  width: calc(100% + 1.3px);
  height: 125px;
  transform: translateX(-50%) rotateY(180deg);
}
.has-bg header.site-header {
  background: var(--clr-primary);
  position: static;
}
.scale-link  .hs_cos_wrapper_type_icon {
  display: none;
}
.scale-dark .scale-link,
.dsc-dark .scale-link {
  color: var(--clr-text-dk);
}
@media(max-width:767px){
  .scale-bottom-shape svg,
  .scale-top-shape svg{
    height: 80px;
  }
}


.hs-inline-edit button {
  box-shadow: unset;
}
.has-bg header.header.header--no-navigation {
  position: static;
  background: var(--clr-primary);
  padding: 10px 0;
}

/* 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;
  }
}
:root {
    --swiper-navigation-size: 26px !important;
}