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

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

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

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

html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  line-height: 1.6;
}
html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
/* Paragraphs */
p {
  margin: 1em 0;
}
/* Anchors */
a {
  cursor: pointer;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
  outline: none;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
  margin: 0 0 15px;
  line-height: 1.4;
}
h1 {
  line-height: 1.2;
}
/* Lists */
ul,
ol {
  margin: 1em 0;
  padding-left: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}
ul.no-list {
  list-style: none;
}
/* Code blocks */
code {
  vertical-align: bottom;
}
/* Blockquotes */
blockquote {
  border: none;
  margin: 1em 40px;
  padding: 0;
}
/* Horizontal rules */
hr {
  background-color: #CCC;
  border: none;
  color: #CCC;
  height: 1px;
}
figure {
  margin: 1em 40px;
  display: block;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  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;
}
/* 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, 
.section.post-footer form {
  /*   max-width: 767px;
  padding: 15px;
  display: inline-block;
  width: 100%; */
}

form {
  max-width: 767px;
  margin-bottom: 20px;
}

/* Form fields */

.hs-form-field {
  margin-bottom: 1rem;
}

/* Labels */

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

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

.hs-form label {
  font-family: Montserrat, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.6;
  color: ;
  display: block;
  float: none;
  width: auto;
  text-align: left;
  padding-top: 0;
  margin-bottom: 8px;
}

.inputs-list.hs-error-msgs label {
  font-family: Montserrat, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.6;
  margin-top: .5rem;
  color: #ef6b51;
}

.hs-error-msgs label {
  color: #ef6b51;
}

.hs_error_rollup .inputs-list.hs-error-msgs label {
  /*   border: 5px solid #b10e1e;
  margin-top: 30px;
  margin-bottom: 30px;
  background: #fff;
  color: #a6093d;
  padding: 20px 15px 15px;
  font-weight: 500;
  line-height: 1.6; */
}


/* 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 {
  background-color: #FFF;
  display: inline-block;
  height: 40px;
  padding: 5px 10px;
  width: 100%;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
  border: 1px solid #dcdcdd;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  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;
}

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

.hs-input.invalid.error {
  border-color: #EF6B51;
}

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

.hs-error-msgs label {
  color: #EF6B51;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  margin: 0;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: normal;
  border-style: solid;
  border-width: 1px;
  font-family: Montserrat, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

#hs-search-module .hs-input {
  margin-bottom: 1.4rem;
}

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

.custom-header {
  position: relative;
  padding: 20px 30px;
}
.header__container {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.custom-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.custom-logo > .hs_cos_wrapper {
  height: 100%;
}
.custom-logo a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 250px;
  position: relative;
  z-index: 101;
  text-align: center;
  align-items: flex-start;
  text-decoration: none;
}
.poly-logo {
  width: 250px;
}
.custom-header .mid-col {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}
.custom-header .right-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.child-trig, 
.mob-trigger {
  display: none;
}
.custom-menu-primary .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}
.custom-menu-primary .hs-menu-wrapper > ul > li {
  display: flex;
  flex-direction: column;
  position: relative;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a {
  padding: 15px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-style: solid;
  border-width: 0;
  transition-timing-function: ease-in-out;
  transition-property: background-color, color, border-color;
  text-decoration: none;
}
.custom-menu-primary .hs-menu-wrapper > ul > li:hover > a {
  padding-top: 12px;
}
.custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children > a::after {
  width: 0.35em;
  height: 0.35em;
  margin-left: 0.5em;
  border-right: 0.1em solid;
  border-top: 0.1em solid;
  transform: rotate(135deg);
  content: "";
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover {
  text-decoration: none;
}
.custom-menu-primary .hs-menu-wrapper > ul > li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: column;
  white-space: nowrap;
  transition-timing-function: ease-in-out;
  transition-property: visibility, opacity;
  visibility: hidden;
  opacity: 0;
  display: flex;
  position: absolute;
  top: 100%;
  z-index: 9;
}
.custom-menu-primary .hs-menu-wrapper > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
}
.custom-menu-primary .hs-menu-wrapper > ul > li ul li {
  display: flex;
  flex-direction: column;
  position: relative;
}
.custom-menu-primary .hs-menu-wrapper > ul > li ul li a {
  padding: 15px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition-timing-function: ease-in-out;
  transition-property: background-color, color, border-color;
  text-decoration: none;
}
#search_icon {
  display: inline-flex;
  border-radius: 50%;
  color: #e1e1e1;
  margin-left: 10px;
  position: relative;
  cursor: pointer;
}
#search_icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.ct-div-block {
  justify-content: flex-end;
  text-align: center;
  align-items: center;
  flex-direction: row;
  display: flex;
  flex-wrap: nowrap;
}
.search-form {
  width: 100%;
}
.search-form .hs-search-field__form {
  display: block;
  margin: 0;
}
.search-form .hs-search-field__input {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  opacity: 0;
  width: 0px;
  position: absolute;
  top: 25px;
  right: 100px;
  transition: 0.3s all ease-in-out;
  border-radius: 1px;
  padding: 0.5em;
  border: 1px solid #e1e1e1;
}
.search-form .hs-search-field__button {
  display: none;
}
.ct-div-block:hover .hs-search-field__input {
  width: 300px;
  opacity: 1;
  z-index: 999;
}
.search-form .hs-search-field {
  position: static;
}
.ct-div-block .search-form .hs-search-field--open .hs-search-field__suggestions {
  background-color: transparent;
  padding: 0;
  position: static;
  border: none;
  box-shadow: none;
}
.search-form .hs-search-field__suggestions-container {
  right: 100px;
  text-align: left;
  top: 60px;
  position: absolute;
}
.ct-div-block .search-form .hs-search-field--open .hs-search-field__suggestions-container {
  transition: all .3s ease-in-out;
  width: 0;
  opacity: 0;
}
.ct-div-block:hover .search-form .hs-search-field--open .hs-search-field__suggestions-container {
  opacity: 1;
  width: 300px;
  z-index: 999;
}
.search-form .hs-search-field .hs-search-field__suggestions-container {
  padding: 12px;
  border: 1px solid #CDCDCD;
  display: none;
}
.search-form .hs-search-field.active .hs-search-field__suggestions-container {
  background-color: #fff;
  padding: 12px;
  right: 100px;
  text-align: left;
  top: 60px;
  width: 300px;
  border: 1px solid #cdcdcd;
  box-shadow: 1px 10px 16px -9px hsla(0,0%,48%,.75);
  display: block;
}
.header-fade-in {
  animation-name: header_fadein;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
}
.search-form .hs-search-field.active input#search_input-input {
  opacity: 1;
  width: 300px;
  z-index: 999;
}
.search-form .hs-search-field.active .hs-search-field__suggestions-container {
  opacity: 1;
  width: 300px;
  z-index: 999;
}
@keyframes header_fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 1121px) {

  .search-form .hs-search-field__input,
  .search-form .hs-search-field.active .hs-search-field__suggestions-container {
    right: 80px;
  }

  .custom-header.lp {
    padding-bottom: 24px;
    padding-top: 20px;
  }
  .custom-header.header-act {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  }
  .custom-logo {
    position: relative;
    top: 2px;
  }
}
@media (max-width: 1120px) {
  .custom-header.lp {
    padding-bottom: 27px;
    padding-top: 28px;
  }
  .mob-trigger {
    display: initial;
    cursor: pointer;
  }
  .hamburger-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .hamburger {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 40px;
    height: 32px;
  }
  .hamburger-line {
    border-radius: 2px;
    background-color: #ffffff;
    height: 6px;
  }
  .mobile-open .custom-menu-primary .hs_cos_wrapper_type_menu {
    width: 100%;
  }
  .mobile-open .custom-menu-primary .hs-menu-wrapper {
    max-height: 100%;
    overflow: auto;
    padding-top: 2em;
    padding-bottom: 2em;
    width: 100%;
  }
  .custom-menu-primary .hs-menu-wrapper > ul {
    display: none;
  }
  .custom-logo>.hs_cos_wrapper {
    height: auto;
  }
  .mobile-open .custom-menu-primary .hs-menu-wrapper > ul {
    display: initial;
  }
  .mobile-open .custom-menu-primary {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: auto;
    z-index: 999;
    background-color: #000000;
  }
  .mobile-open .hamburger-wrap {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
  }
  body.mobile-open {
    overflow: hidden;
    height: 100%;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li,
  .custom-menu-primary .hs-menu-wrapper > ul > li ul li {
    justify-content: center;
    flex-direction: unset;
    width: 100%;
    display: block;
    text-align: center;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li > a {
    border: none;
    justify-content: center;
    display: inline-flex;
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li ul li a {
    display: inline-flex;
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children > a:after {
    content: none;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li:hover > a {
    border: 0;
    padding-top: 15px;
  }
  .mobile-open .hamburger {
    transform: rotate(45deg);
  }
  .mobile-open .hamburger .hamburger-line:first-child {
    top: 13px;
  }
  .mobile-open .hamburger .hamburger-line {
    display: none;
  }
  .mobile-open .hamburger .hamburger-line:first-child {
    display: initial;
    position: relative;
  }
  .mobile-open .hamburger .hamburger-line:last-child {
    display: initial;
    position: relative;
    transform: rotate(90deg);
    top: -13px;
  }
  .child-trig{
    cursor: pointer;
    display: block;
    height: 35px;
    min-width: 35px;
    position: absolute;
    right: 0;
    right: 36%;
    top: 0;
    top: 5px;
    width: 35px;
    right: -40px;
  }
  .child-trig:hover{
    text-decoration: none;
  }
  .child-trig i{
    position: relative;
    top: 50%;
    margin: 0 auto;
  }
  .child-trig i:after{
    position: absolute;
    content: '';
  }
  .child-trig i, 
  .child-trig i:after{
    width: 10px;
    height: 1px;
    background-color: #fff;
    display: block;
  }
  .child-trig i:after{
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .child-trig.child-open i:after{
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .child-trig.child-open i{
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li ul {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    display: none;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li ul li a {
    justify-content: center;
  }


  .search-form .hs-search-field__input {
    top: 75px;
    right: 50px;
    box-shadow: 1px 1px 10px #000000;
  }
  .ct-div-block {
    height: 60px;
  }
  .search-form .hs-search-field.active .hs-search-field__suggestions-container {
    top: 110px;
    right: 50px;
  }
  .search-form .hs-search-field .hs-search-field__suggestions-container {
    background-color: #fff;
    padding: 12px;
    right: 100px;
    text-align: left;
    top: 60px;
    width: 300px;
    border: 1px solid #cdcdcd;
    box-shadow: 1px 10px 16px -9px hsla(0,0%,48%,.75);
  }
  .search-form .hs-search-field .hs-search-field__suggestions-container {
    opacity: 1;
    width: 300px;
    z-index: 999;
  }



  .ct-div-block:hover .search-form .hs-search-field--open .hs-search-field__suggestions-container {
    right: 50px;
    top: 110px;
  }
  .search-form .hs-search-field .hs-search-field__suggestions-container {
    right: 50px;
    top: 110px;
    opacity: 0;
    transition: all .3s ease-in-out;
    width: 300px;
  }
  .ct-div-block .search-form .hs-search-field--open .hs-search-field__suggestions-container {
    display: none;
    width: 300px;
  }
  .ct-div-block .search-form .hs-search-field--open.active .hs-search-field__suggestions-container {
    display: block;
  }
}
@media (max-width: 445px) { 
  .custom-header {
    padding: 20px 15px;
  }
  .custom-header.lp {
    padding-bottom: 32px;
    padding-top: 32px;
  }
  .header__container {
    padding-left: 0;
    padding-right: 0;
  }
  .custom-logo a,
  .custom-logo .poly-logo {
    width: 192px;
  }
  .hamburger {
    width: 34px;
  }
  .search-form .hs-search-field__input {
    right: 40px;
    top: 32px;
  }
  .ct-div-block:hover .hs-search-field__input {
    max-width: 200px;
    width: 100%;
  }
  .search-form .hs-search-field.active .hs-search-field__suggestions-container {
    max-width: 200px;
    width: 100%;
    right: 40px;
    top: 67px;
  }
  .ct-div-block:hover .search-form .hs-search-field--open .hs-search-field__suggestions-container {
    width: 100%;
    max-width: 200px;
  }

  .search-form .hs-search-field.active .hs-search-field__suggestions-container, 
  .search-form .hs-search-field.active input#search_input-input {
    max-width: 200px;
    width: 200px;
  }
  .ct-div-block:hover .search-form .hs-search-field--open .hs-search-field__suggestions-container {
    max-width: 200px;
    width: 100%;
    top: 66px;
    right: 40px;
  }
}
.footer {
  background-size: auto, cover;
  padding-bottom: 50px;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.footer-form {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  padding-bottom: 55px;
}
.form-inner {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.form-content {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  width: 50%;
}
.form-content h6 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  margin-top: 16px;
  text-align: left;
  text-transform: uppercase;
  line-height: 1.6;
}
.form-content p {
  margin: 0;
}
.form-wp {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
  padding: 1px 20px 20px;
  width: 50%;
}
.form-wp label[for*="email"] {
  display: none;
}
.form-wp form {
  max-width: 100%;
  margin: 0;
  margin-top: 1rem;
}
.form-wp .hs-submit .actions {
  margin-top: 1rem;
  text-align: right;
}
.form-wp .hs_cos_wrapper_type_form input:not([type="submit"]) {
  width: 100% !important;
}
.form-wp .hs_cos_wrapper_type_form input[type="checkbox"] {
  width: auto !important;
  margin: 0;
  margin-right: 8px;
  height: 40px;
}
.form-wp ul.inputs-list.multi-container {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 10px;
}
.form-wp form .inputs-list>li {
  margin: 0;
}
.form-wp form .inputs-list>li label {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
}
.form-wp fieldset.form-columns-1 .input {
  margin: 0 !important;
}
.form-wp ul.no-list.hs-error-msgs {
  padding-left: 10px;
  margin-top: 1em;
  margin-bottom: 1em;
}
.footer-menu-container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.menu-col {
  width: 25%;
  padding-left: 30px;
  padding-right: 30px;
}
.menu-col .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.menu-col .hs-menu-wrapper > ul > li {
  display: block;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
}
.menu-col .hs-menu-wrapper > ul > li > a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 8px;
  text-align: left;
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
}
.menu-col .hs-menu-wrapper > ul ul {
  display: flex;
  flex-direction: column;
}
.menu-col .hs-menu-wrapper > ul ul li {
  display: flex;
  flex-direction: column;
}
.menu-col .hs-menu-wrapper > ul ul li a {
  padding: 5px 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-direction: row;
  transition: all ease-in-out;
}
.footer .right-col {
  width: 25%;
  padding-left: 30px;
  padding-right: 30px;
}
.footer .widget-type-header h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.6;
}
.footer-btn a {
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  margin-top: 16px;
  padding: 10px 20px;
  padding-bottom: 10px;
  min-width: 190px;
  width: 100%;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.ft-social {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  margin-right: -16px;
  margin-bottom: -16px;
  margin-top: 16px;
}
.ft-social a {
  font-size: 24px;
  margin-right: 16px;
  margin-bottom: 16px;
  line-height: 1;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.ft-social svg {
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}
.footer-image .hs_cos_wrapper {
  line-height: 0;
}
.footer-image img {
  margin-top: 20px;
  vertical-align: unset;
}
.div-block {
  width: 100%;
  margin: 45px 0 29px;
  background-color: #d93135;
  height: 3px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
}
.div-block.lp-ft {
  margin: 0 0 29px;
}
.footer-logo {
  align-items: center;
  text-align: left;
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
.footer-logo a {
  color: #d93135;
  text-align: center;
  width: 250px;
  position: relative;
  z-index: 101;
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
}
.copyright {
  width: 100%;
  text-align: center;
  font-size: .75rem;
  padding-left: 20px;
  padding-right: 20px;
}
.privacy-policy {
  justify-content: center;
  margin-top: 8px;
  max-width: 100%;
  flex-direction: row;
  display: flex;
  width: 100%;
  text-align: left;
  font-size: 0.75rem;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.privacy-policy a {
  font-size: 0.75rem;
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
  text-decoration: none;
}
.privacy-policy a:first-child {
  margin-left: 0;
}
.privacy-policy a:last-child {
  margin-right: 0;
}
.modal-backdrop .widget-type-header h6 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}
.modal-backdrop form {
  max-width: 100%;
  margin: 0;
  margin-top: 1rem;
}
.modal-backdrop strong {
  font-weight: bolder;
  font-weight: 900;
}
.modal-backdrop {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1400;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}
.modal-open .modal-backdrop {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.modal-backdrop .ct-modal {
  background-color: #ffffff;
  flex-direction: column;
  display: flex;
  text-align: left;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  max-width: 65vw;
  max-height: 100vh;
  overflow-y: auto;
  align-items: flex-start;
}
.modal-backdrop .modal-title {
  font-size: 1.25rem;
  font-weight: 700;
}
.modal-backdrop form .hs-richtext {
  font-size: 0.9375rem;
  margin: 0;
}
.modal-backdrop .hbspt-form label:not(.hs-error-msg) {
  display: none;
}
.modal-backdrop .hbspt-form .input {
  margin-bottom: 1rem !important;
  margin-right: 0px !important;
}
.modal-backdrop .hs-form-field {
  margin-bottom: 0;
}
.modal-backdrop .inputs-list.hs-error-msgs label {
  color: #404040;
  margin: 0;
}
.modal-backdrop form .inputs-list {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 10px;
  list-style-type: disc;
}
.modal-backdrop form .inputs-list>li {
  display: block;
  margin: 0.7rem 0;
  margin: 0;
}
.modal-backdrop .hs-submit .actions {
  text-align: right;
  margin-top: 1rem;
}
.modal-backdrop fieldset.form-columns-1 .hs-input {
  width: 100% !important;
}
.modal-backdrop fieldset.form-columns-2 .hs-form-field:first-child {
  padding-right: 8px;
}
.modal-backdrop .hbspt-form .hs_industry_1 label {
  display: block;
  margin-bottom: 8px;
  font-family: inherit;
  font-weight: 600;
}
.modal-open .modal-backdrop {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
body.modal-open {
  height: 100vh;
  overflow-y: hidden;
  position: fixed;
  right: 0;
  left: 0;
}
.modal-backdrop .hbspt-form select {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  padding: 0 1em 0 0;
  margin: 0;
  min-width: 175px;
  font-family: inherit;
  font-size: 0.75rem;
  cursor: inherit;
  line-height: inherit;
  text-transform: uppercase;
  outline: none;
  width: 95% !important;
  border: none;
  margin: 0;
  padding: 0;
  height: auto;
}
.modal-backdrop .hbspt-form .hs_industry_1 .input {
  background: #fff;
  padding: 0.9375rem 15px;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 10px;
  border: 1px solid #111;
}
.modal-backdrop .hbspt-form .hs_industry_1 .input::after {
  width: 20px;
  height: 10px;
  display: block;
  content: "";
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-5px);
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}
.footer .form-wp input.hs-button {
  border: 0;
  padding: 12px 30px;
}
@media (max-width: 991px) {
  .modal-backdrop .ct-modal {
    max-width: 75vh;
  }
  .form-content,
  .form-wp {
    width: 100%;
  }
  .form-wp .hs_cos_wrapper_type_form {
    width: 100%;
  }
  .footer-menu-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .menu-col,
  .footer .right-col {
    width: 50%;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .footer .right-col, .menu-col {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .modal-backdrop .ct-modal {
    max-width: 90vh;
  }
  .privacy-policy {
    width: 90%;
    text-align: left;
    flex-direction: column;
    display: flex;
    align-items: center;
  }
  .privacy-policy .hs_cos_wrapper_type_rich_text {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: left;
  }
}
.hs-menu-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
/* Error pages */

.error-page {
  padding: 10rem 0;
  position: relative;
  text-align: center;
}

.error-page:before {
  color: #F3F6F9;
  content: attr(data-error);
  font-size: 40vw;
  font-weight: bold;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
  font-size: 38vw;
}

@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}

.error-page_heading {
  margin-bottom: 1rem;
}

/* System pages */

.systems-page {
  margin: 0 auto;
  max-width: 767px;
  padding: 3rem 1.4rem;
  margin: 0;
}

.systems-page .success {
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  display: inline-block;
  margin: 1.4rem 0;
  padding: 0.1rem 0.7rem;
  width: 100%;
  max-width: 767px;
}

.systems-page form input {
  max-width: 100%;
}

/* Search pages */

.hs-search-results__title {
  color: #494A52;
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  text-decoration: underline;
}

.hs-search-results__title:hover {
  text-decoration: none;
}

.hs-search-results__description {
  padding-top: 0.7rem;
}

/* Password prompt */

.password-prompt input[type=password] {
  height: 40px !important;
  margin-bottom: 1.4rem;
  margin-top: 0 !important;
}

/* Backup unsubscribe */

.backup-unsubscribe #email-prefs-form div {
  padding-bottom: 0 !important;
}

.backup-unsubscribe input[type=email] {
  font-size: 15px !important;
  margin-bottom: 1.4rem;
  padding: 5px 10px !important;
  width: 100% !important;
}

/* Subscription preferences */

#email-prefs-form .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#email-prefs-form .item.disabled input:disabled {
  cursor: not-allowed;
}





.systems-page {
  padding-left: 0;
  padding-right: 0;
}

.systems-page .actions {
  margin: 10px 0;
}

.systems-page .hs-input {
  /*   margin-bottom: 18px; */
}

.form-input-validation-message ul.no-list {
  margin: 0;
  padding: 0;
}

.form-input-validation-message ul.no-list {
  padding: 0;
}

.systems-page .hs-input[type=checkbox] {
  width: auto !important;
}

@media (max-width: 767px) {

  form {
    max-width: 100%;
  }

  .systems-page h3 {
    font-size: 23px;
  }

  h1.error-page_heading {
    font-size: 40px;
  }
}


@media (max-width: 479px) {

  .form-input-validation-message label.hs-error-msg, 
  ul.no-list.hs-error-msgs label {  }


  .systems-page h1 {
    font-size: 30px;
  }

  .systems-page h2 {
    font-size: 23px;
  }
}
/* 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;
  }
}