/* 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 15px;
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}
.dnd-section {
  padding:40px 15px;
}
.dnd-section .dnd-column {
  padding: 0 15px;
}
.dnd-section[class*=force-full-width]{
  padding: 0;
}
.dnd-section[class*=force-full-width] .dnd-column {
  padding:0;
}
@media (max-width:991px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
  .dnd-section {
    padding:40px 20px;
  }
  .content-wrapper {
    margin: 0 auto;
    padding: 0 20px;
  }
}

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

body {
  line-height:1.5;
  word-break: break-word;
}
html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-word;
}
.skiplink {
  background-color: #33475b;
  color: #fff;
  display: block;
  left: 0;
  padding: 6px;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
}
.show-for-sr {
  clip: rect(0,0,0,0)!important;
  border: 0!important;
  height: 1px!important;
  overflow: hidden!important;
  padding: 0!important;
  position: absolute!important;
  white-space: nowrap!important;
  width: 1px!important;
}
.subheader {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
}
/* Paragraphs */

p {
  margin: 0 0 16px;
}
p:last-child {
  margin: 0;
}
/* Anchors */

a {
  cursor: pointer;
  text-decoration: underline;
}

/* Headings */

h1,.h1,
h2,.h2,
h3,.h3,
h4,.h4,
h5,.h5,
h6,.h6{
  margin: 0 0 12px;
  line-height:1;
}
h1,.h1{
  line-height:1.09756097561;
  letter-spacing: 0.05em;
  font-style: italic !important;
}
.h2,h2{
  line-height:1.26315789474;
  font-style: italic !important;
  margin-bottom: 20px;
}
h3,.h3{
  line-height:1.35714285714;
}
h4,.h4{
  line-height:1.09090909091;
}
h5,.h5{
  line-height:1.4;
  margin-bottom:16px;
}
h6,.h6{
  line-height:1.5;
}
b, strong {
    font-weight: 700;
}
/* 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;
}

ul li::marker,
ol li::marker{
  font-weight: 700;
}
ol li,
ul li {
  margin-bottom: 8px;
}
ol,
ul {
  padding-left: 24px;
  margin-bottom: 28px;
}
/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

svg {
  vertical-align: middle;
}
/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */
a{
  transition:.4s;
}
img {
  max-width:100%;
  height:auto;
  vertical-align:middle;
}
@media(max-width:767px){
  .subheader {
    font-size: 17px;
  }
}
::-webkit-file-upload-button,
input[type="submit"],
.hs-button{
  border-style:solid;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  line-height: 1.125;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
  white-space: normal !important;
}

.hs-button.outline {
  box-shadow: none;
}
@media(max-width:767px){
  .hs-button, ::-webkit-file-upload-button, input[type=submit]{
    font-size:14px;
  }
}
form {
  background: #FFFFFF;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 40px;
}
.hs-form-field { 
  margin-bottom: 10px;
}
.hs-search-field form label {
  width: 100%;
}
fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}
form ul li input[type=checkbox]:focus+span:after,
ul.inputs-list input[type=checkbox]:focus+span:after,
ul.inputs-list input[type=radio]:focus+span:after{
  outline:1px solid !important;
}
form label {
  display: block;
  font-style: normal;
  line-height:1.75;
  font-weight: 500;
  font-family: inter;
  margin-bottom:5px;
}
.submitted-message {
  text-align: center;
}
h3.form-title {
  text-align: center;
  margin-bottom: 30px;
}
form legend {
  font-size: 90%;
  padding-bottom: 5px;
}
.hs-input,
input[type=text],
input[type=search],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=file],
select,
textarea {
  border: none;
  font-size:16px;
  display: block;
  outline: none;
  border-style:solid;
  min-height: 44px;
  padding: 6px 10px;
  width: 100%!important;
  line-height: 2;
  font-family: 'Inter';
  font-weight: 400;
}

input::placeholder,
.hs-input::placeholder{
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: #2D2D2D;
  line-height: 28px !important;
  font-family: 'Inter';
}
.hs_submit.hs-submit {
  margin-top: 17px;
}
form ul li input[type=checkbox], ul.inputs-list input[type=checkbox], ul.inputs-list input[type=radio] {
  display: block!important;
  opacity: 0;
  position: absolute;
}
select{
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 8.50781L7.60156 7.87891L12.8516 2.62891L13.4805 2L12.25 0.769531L11.6211 1.39844L7 6.01953L2.35156 1.39844L1.75 0.769531L0.492188 2L1.12109 2.62891L6.37109 7.87891L7 8.50781Z' fill='%232D2D2D'/%3E%3C/svg%3E%0A");
  background-position: right 10px center;
  background-repeat: no-repeat;
  appearance: none;
  font-size:14px;
  font-style: italic;
}
.legal-consent-container .hs-form-booleancheckbox-display input {
  margin-right: 8px;
  margin-top: 3px;
}
.legal-consent-container, .legal-consent-container p, .legal-consent-container span{
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}
::-webkit-file-upload-button {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  height: 100%;
  font-style: normal;
  padding: 10px 20px !important;
  box-shadow: none;
  border-top-left-radius: 0 !important;
  line-height: 21px;
  border-bottom-left-radius: 0 !important;
}

input[type=file] {
  position: relative;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 28px;
}
select option{
  font-style: normal;
}
textarea.hs-input {
  min-height: 132px;
}
h3.form-title:empty {
  margin: 0;
}
fieldset.form-columns-2>div {
  width: Calc(50% - 14px)!important;
}
fieldset.form-columns-2 {
  display: flex;
  justify-content: space-between;
}
fieldset.form-columns-3>div {
  width: Calc(33.3337% - 18.6666666667px) !important;
}
fieldset.form-columns-1>div {
  width: 100%;
}
.hs-dependent-field .field {
  width: 100% !important;
}

fieldset.form-columns-3 {
  display: flex;
  justify-content: space-between;
}
.input {
  margin: 0 !important;
}
form fieldset {
  max-width: 100% !important;
}
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;
  min-height:auto;
  margin-right: 15px;
}
.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  margin-bottom: 12px;
  min-height: 80px;
  overflow: auto;
  padding: 10px 0 0 7px;
}
.fn-date-picker .pika-button {
  box-shadow: none;
  border-radius: 0;
  padding: 10px !important;
  text-align: center !important;
}

.fn-date-picker .pika-table {
  margin: 10px 0;
}
form input[type=checkbox], form input[type=radio] {
  appearance: none;
  background: #EEEEEE;
  border-radius: 2px;
  display: inline-block !important;
  height: 16px;
  width: 16px !important;
  padding: 0 !important;
}
form input[type=checkbox]:checked, form input[type=radio]:checked{
  appearance: auto;
}
form input[type=radio] {
  border-radius:30px;
}
.hs-dateinput {
  position: relative;
}
.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right:15px;
  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;
}
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:red;
}
.hs-input.invalid.error {
  border-color: #FFD6DD;
  background: #FFD6DD;
}
.hs-error-msg {
  color:#FF0404;
}
ul.no-list.hs-error-msgs label {
  color:#FF0404;
}
ul.no-list.hs-error-msgs.inputs-list label {
  color:#FF0404;
  margin: 5px 0;
}
.hs_error_rollup {
  padding: 0 0 15px 0;
}
.legal-consent-container label {
  font-weight: 400;
}
.legal-consent-container .hs-form-booleancheckbox-display>span {
  display: block;
  margin-left:0px!important;
  line-height: 1.5;
}
.legal-consent-container .hs-form-booleancheckbox-display>span p {
  margin: 0 !important;
}
.legal-consent-container li {
  margin: 0 !important;
}
ul.no-list.hs-error-msgs.inputs-list label {
  font-weight: 700;
}
ul.no-list.hs-error-msgs.inputs-list li {
  margin: 0;
}
.legal-consent-container .hs-richtext {
  margin-bottom: 10px;
}
.legal-consent-container .field.hs-form-field {
  margin-bottom: 13px !important;
}
.legal-consent-container .hs-richtext+.hs-richtext {
  padding-top: 6px;
}
.legal-consent-container {
  padding-bottom: 11px;
}

form ul li input[type=checkbox]+span,
ul.inputs-list input[type=radio]+span,
ul.inputs-list input[type=checkbox]+span {
  padding-left: 27px;
  position: relative;
  display: block;
  cursor: pointer;
}
form ul li input[type=checkbox]+span:after,
ul.inputs-list input[type=radio]+span:after,
ul.inputs-list input[type=checkbox]+span:after {
  position: absolute;
  content: "";
  left: 0;
  width: 16px;
  height: 16px;
  top: 3px;
  background-color: rgba(238, 238, 238, 1.0);
  border-radius: 2px;
}
ul.inputs-list li {
  margin-top: 0;
  margin-bottom: 9px;
}
ul.inputs-list input[type=radio]+span:after{
  border-radius: 16px;
  width: 20px;
  height: 20px;
  background: #EEEEEE;
}
form ul li input[type=checkbox]+span:after{
  top:7px;
}
form ul li input[type=checkbox]:checked+span:after,
ul.inputs-list input[type=checkbox]:checked+span:after {
  background: #009944;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 1L3.5 6.5L1 4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: 50%;
  background-repeat: no-repeat;
}
ul.inputs-list input[type=radio]:checked+span:after { 
  background: #009944;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='3' fill='white'/%3E%3C/svg%3E%0A");
  background-position: 50%;
  border:none;
  background-repeat: no-repeat;
}
.legal-consent-container .hs-richtext:last-child {
  margin: 0;
}
.legal-consent-container .hs-form-booleancheckbox-display>span {
  padding-left: 24px !important;
}
@media(max-width:767px){
  fieldset.form-columns-3>div,fieldset.form-columns-2>div {
    width: 100% !important;
  }
  ::-webkit-file-upload-button {
    font-size: 15px;
    padding: 10px 12px !important;
  }
  fieldset.form-columns-3,fieldset.form-columns-2 {
    display: block;
  }
  .legal-consent-container .hs-form-booleancheckbox-display>span {
    display: block;
  }
}
/* Table */

table {
  border-collapse: collapse;
  margin:1.6rem 0;
  overflow-wrap: break-word;
  width:100%;
  border-radius: 4px;
  overflow:hidden;
}
td,
th {
  vertical-align: middle;
  border:none !important;
  padding:12px 20px;
  text-align:left;
  font-weight:500;
}
thead th {
  text-transform:uppercase; 
  padding: 15px 20px 10px;
}
tr:nth-child(even) td{
  background:#EEEEEE;
}
thead th {
  vertical-align: middle;
}
table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
  width: 100%
}
td,th {
  vertical-align: middle
}
table * {
  border: none
}
thead th {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
  vertical-align: bottom
}
td,thead th {
  padding: 10px 21px
}
table tr {
  border-bottom: .5px solid #b0b7bb;
  border-top: .5px solid #b0b7bb
}
table thead tr {
  border: none
}
tr:nth-child(2n) {
  background: #f0f0f0
}
table {
  border: none
}
@media (max-width:991px){
  th{ padding:12px 10px;}
  td{font-size:14px;padding:10px}
}
@media (max-width:767px){
  th{font-size:12px; padding: 15px 10px 10px;}
  td{font-size:12px;padding:10px}
}

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


body .mfp-close:hover{background:none !important;}
/* Menu and simple menu */
nav.hs-search-results__pagination {
    padding-top: 30px;
}
.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
a.show-for-sr.sitemap {
    height: 0 !important;
}
/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  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;
}


body.popup-open {
  overflow: hidden;
}
.popup-form {
  display: flex;
  align-items: center;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding: 50px 20px;
  z-index: 99;
  background: #000000bf;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.popup-form .close-btn {
  position: absolute;
  width:30px;
  height:30px;
  right: 0;
  top: 0;
  background: #000000;
  border-radius: 50%;
  cursor:pointer;
  transform: scale(1) translate(50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}
.popup-form .inner {
  max-width: 1005px;
  margin: auto;
  width: 100%;
}
.popup-form .form {
  -webkit-transition: -webkit-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out;
  -webkit-transform: translate(0,25%);
  -ms-transform: translate(0,25%);
  -o-transform: translate(0,25%);
  transform: translate(0,25%);
  margin: 0;
  text-align: left;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 30px rgba(0,0,0,.15);
  margin-bottom: 40px;
  padding: 20px;
  margin:0;
}
.popup-open .popup-form .form {
  -ms-transform: translate(0,0);
  -o-transform: translate(0,0);
  transform: translate(0,0);
}
.popup-open .popup-form {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.popup-form form {
  padding: 0;
  box-shadow: none !important;
  background: transparent;
  border-radius: 0;
  margin: 0;
}





.pagination {
  flex-wrap: wrap;
  padding: 11px 20px
}
.pagination, .pagination a {
  border-radius: 4px;
  display: flex;
  justify-content: center
}
.pagination a {
  align-items: center;
  color: #bfbfbf;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 5.5px;
  min-height: 35px;
  min-width: 35px;
  padding: 5px 15px;
  text-decoration: none;
  font-family: 'Inter';
}
.pagination a.active {
  color: #fff;
  pointer-events: none
}
.pagination a:hover {
  color: #fff
}
.pagination a.next, .pagination a.prev {
  background: transparent!important;
  color: inherit!important
}
.pagination a.prev {
  margin-left: 0;
  margin-right: 42px;
  min-width: 0;
  padding: 0
}
.pagination a.next {
  margin-left: 40px;
  margin-right: 0;
  min-width: 0;
  padding: 0
}
.pagination a.disabled {
  pointer-events: none
}
.pagination a.disabled path {
  fill: #bfbfbf
}
.pagination-wrapper {
  padding: 20px 0;
}





.hs-search-field form {
  display: flex;
  flex-wrap: wrap;
}

.hs-search-field input {
  max-width: Calc(100% - 50px);
  border-radius: 0 !important;
  border-top-left-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
}

.hs-search-field button {
  width: 50px;
  border-radius: 0 !important;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
  height: 50px;
  box-shadow: none;
}
.hs-search-field ul a {
  background: transparent !important;
}
.hs-search-field button svg {
  width: 18px !important;
  height: 18px !important;
  display: block;
}
.hs-search-field ul:empty{
  display:none;
}
.hs-search-field ul {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  list-style: none;
  box-shadow: 0 4px 30px rgb(0 0 0 / 15%);
  border:none !important;
  margin-top: 40px;
}
.hs-search-field li#results-for {
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 15px;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
}
.breadcrumb-menu {
  padding: 10px 0;
}
.breadcrumb-menu a.hs-breadcrumb-label {
  text-decoration: none;
}
.breadcrumb .content-wrapper {
  max-width: 1153px;
}
.breadcrumb ul li {
  padding: 5px 0;
  float: none;
  display: flex;
  align-items: center;
  color:#727772;
  margin: 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.86666666667;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 !important;
}
.breadcrumb svg {
  vertical-align: middle;
  width: auto;
  display: block;
}
.breadcrumb .hs-breadcrumb-menu-divider:before {
  display: none !important;
}
.breadcrumb span.hs-breadcrumb-menu-divider path {
  fill: currentColor;
}
.breadcrumb span.hs-breadcrumb-menu-divider {
  margin-left: 30px;
  margin-right: 20px;
  margin-top: 3px;
}
@media(max-width:767px){
  .breadcrumb ul li {
    font-size: 14px;
    line-height:1.5;
  }
  .breadcrumb span.hs-breadcrumb-menu-divider {
    margin-left: 14px;
    margin-right: 14px;
  }
  .breadcrumb span.hs-breadcrumb-menu-divider svg {
    width: 15px;
  }
}

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

.skiplink:focus {
    position: relative;
    transform: unset;
    color: #000;
    display: inline-block;
    background: #fff;
}