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

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

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

/* Responsive grid */

.row-fluid {
  width: 100%;
}

.row-fluid:before, .row-fluid:after {
  display: table;
  content: '';
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*='span'] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  margin-left: 2.127659574%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*='span']:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 99.99999998999999%;
}

.row-fluid .span11 {
  width: 91.489361693%;
}

.row-fluid .span10 {
  width: 82.97872339599999%;
}

.row-fluid .span9 {
  width: 74.468085099%;
}

.row-fluid .span8 {
  width: 65.95744680199999%;
}

.row-fluid .span7 {
  width: 57.446808505%;
}

.row-fluid .span6 {
  width: 48.93617020799999%;
}

.row-fluid .span5 {
  width: 40.425531911%;
}

.row-fluid .span4 {
  width: 31.914893614%;
}

.row-fluid .span3 {
  width: 23.404255317%;
}

.row-fluid .span2 {
  width: 14.89361702%;
}

.row-fluid .span1 {
  width: 6.382978723%;
}

.container-fluid:before, .container-fluid:after {
  display: table;
  content: '';
}

.container-fluid:after {
  clear: both;
}

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: '';
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.762430939%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*='span']:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 99.999999993%;
  }

  .row-fluid .span11 {
    width: 91.436464082%;
  }

  .row-fluid .span10 {
    width: 82.87292817100001%;
  }

  .row-fluid .span9 {
    width: 74.30939226%;
  }

  .row-fluid .span8 {
    width: 65.74585634900001%;
  }

  .row-fluid .span7 {
    width: 57.182320438000005%;
  }

  .row-fluid .span6 {
    width: 48.618784527%;
  }

  .row-fluid .span5 {
    width: 40.055248616%;
  }

  .row-fluid .span4 {
    width: 31.491712705%;
  }

  .row-fluid .span3 {
    width: 22.928176794%;
  }

  .row-fluid .span2 {
    width: 14.364640883%;
  }

  .row-fluid .span1 {
    width: 5.801104972%;
  }
}

@media (min-width: 1280px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: '';
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.564102564%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*='span']:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 100%;
  }

  .row-fluid .span11 {
    width: 91.45299145300001%;
  }

  .row-fluid .span10 {
    width: 82.905982906%;
  }

  .row-fluid .span9 {
    width: 74.358974359%;
  }

  .row-fluid .span8 {
    width: 65.81196581200001%;
  }

  .row-fluid .span7 {
    width: 57.264957265%;
  }

  .row-fluid .span6 {
    width: 48.717948718%;
  }

  .row-fluid .span5 {
    width: 40.170940171000005%;
  }

  .row-fluid .span4 {
    width: 31.623931624%;
  }

  .row-fluid .span3 {
    width: 23.076923077%;
  }

  .row-fluid .span2 {
    width: 14.529914530000001%;
  }

  .row-fluid .span1 {
    width: 5.982905983%;
  }
}

/* Clearfix */

.clearfix:before, .clearfix:after {
  display: table;
  content: '';
}

.clearfix:after {
  clear: both;
}

/* Visibilty classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/* Responsive visibilty classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 15px;
}

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

@media (max-width: 1199px) {
  .content-wrapper {
    max-width: 100% !important;
  }
}

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

.dnd-section .dnd-column {
  padding: 0 15px;
}

@media (max-width: 1199px) {
  .dnd-section > .row-fluid {
    max-width: 100% !important;
  }
}

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

body {
  line-height: 1.4;
  word-break: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 20px;
  line-height: 32px;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 30px;
}

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  font-size: 18px;
  white-space: normal;
}

button:disabled,
.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;
}
/* Fields */

.hs-form-field {
  margin-bottom: 25px;
}

/* Labels */

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100% !important;
}

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;
  min-width: 20px !important;
  margin-top: 5px;
}

form input[type=checkbox]:checked+span:after {
  top: 9px !important;
}

/* 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: 15px;
  line-height: 1.5;
  margin: 0 0 30px;
}

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: 0 !important;
  font-size: 15px;
  line-height: 1.5;
}

.hs-form-booleancheckbox-display {
  display: flex;
}
/* Validation */

.hs-form-required {
  color: #ff001e;
}

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

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

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

/* Header DND sections */
/*
.scrolled-down{
  transform:translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.scrolled-up{
  transform:translateY(0);
  transition: all 0.3s ease-in-out;
}
*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  height: 120px;
  transition: 0.3s;
  z-index: 1010;
}

.header.scrolled-down {
  top: -120px;
}

.header.open {
  transform: none;
}


.header.anchor-clicked {
  transition: none !important;
}

.header .dnd-section {
  padding: 0;
}

body.nav-open {
  overflow: hidden !important;
}

.hs-inline-edit .header{
  position: relative;
}

body.nav-open .ax-backtotop-btn,
body.nav-open #hubspot-messages-iframe-container{
  z-index: 1000 !important;
}

/* Header container */
.header__wrapper {
  height: 120px;
  position: fixed;
  width: 100%;
}

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row {
  align-items: center;
  display: flex;
  justify-content: flex-end; 
  width: 100%;
  height: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header {
    height: 104px;
  }

  .header__wrapper {
    height: 104px;
  }

  .header__container {
    flex-direction: column;
    padding: 0;
  }

  .header__column {
    position: absolute;
    top: 15px;
    right: 0;

  }

  .header__row {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 0 0 15px;
    width: 100%;
    max-width: 118px;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding: 39px 0;
}

.header__navigation {
  display: none;
}

.header__navigation.open {
  display: block;
  left: 0;
  height: calc(100vh - 120px);
  position: fixed;
  right: 0;
  top: 120px;
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, .9);
}

.header__navigation--toggle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='34' viewBox='0 0 44 34'%3E%3Cg id='Hamburger_off' data-name='Hamburger off' transform='translate(0.234)'%3E%3Crect id='Rectangle_831' data-name='Rectangle 831' width='44' height='4' transform='translate(-0.234 15)' fill='%23FF001E'/%3E%3Crect id='Rectangle_872' data-name='Rectangle 872' width='44' height='4' transform='translate(-0.234 30)' fill='%23FF001E'/%3E%3Crect id='Rectangle_873' data-name='Rectangle 873' width='44' height='4' transform='translate(-0.234)' fill='%23FF001E'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  height: 25px;
  width: 25px;
  z-index: 1000;
  cursor: pointer;
}

.header__close--toggle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33.942' height='33.941' viewBox='0 0 33.942 33.941'%3E%3Cg id='Hamburger_off' data-name='Hamburger off' transform='translate(-4.795 -0.029)'%3E%3Crect id='Rectangle_831' data-name='Rectangle 831' width='44' height='4' transform='translate(4.796 31.142) rotate(-45)' fill='%23FF001E'/%3E%3Crect id='Rectangle_1025' data-name='Rectangle 1025' width='44' height='4' transform='translate(7.623 0.029) rotate(45)' fill='%23FF001E'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 100%;
  display: none;
  height: 25px;
  margin-right: 0;
  width: 25px;
  cursor: pointer;
}

.header__close--toggle.show {
  display: block;
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search {
    display: none;
    width: 100%;
  }

  .header__navigation.open {
    display: block;
    left: 0;
    height: calc(var(--app-height) - 104px);
    position: fixed;
    right: 0;
    top: 104px;
    z-index: 2;
  }

  body.is-ipad .header__navigation.open { 
    /* Add extra space for iPad with bottom bar */
    height: calc(var(--app-height) - 104px + 30px); 
  }

  body.is-iphone .header__navigation.open { 
    /* Add extra space for iPhone with bottom bar */
    height: calc(var(--app-height) - 104px + 90px); 
    padding-bottom: calc(env(safe-area-inset-bottom) + 70px);
  }
  .header__navigation--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 0 0 auto;
    position: relative;
  }

  .header__navigation--toggle.hide {
    display: none !important;
  }

  .header__navigation--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-size: cover;
    height: 24px;
    width: 24px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__close--toggle {
    background-repeat: no-repeat;
    background-size: 100%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
    width: 24px;
    height: 24px;
  }
}
.footer__top {
    font-size: 18px;
}

.footer__top strong{
    font-weight: 700;
    color: #fff;
}

.footer__top p {
    margin-bottom: 2px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    color: #F7F6F4 !important;
}

.footer__top a,
.footer__top .footer__area a {
    font-size: 18px;
    color: #fff;
    font-weight: 300;
}

.footer__top .button-wrapper .button {
    font-weight: 400;
}

.footer__top a:hover,
.footer__top a:focus {
    color: #fff;
    text-decoration: underline;
}

.footer__top a[href^="tel"] {
    color: #F7F6F4 !important;
}

.footer__top a[href^="mail"] {
    font-weight: 500;
}

.footer__top .button {
    padding: 17px 24px;
    text-transform: uppercase;
    border: 2px solid #fff;
}

.footer__top .button:hover,
.footer__top .button:focus {
    background-color: #E5232D !important;
    border-color: #E5232D;
    text-decoration: none;
    color: #fff;
}

.footer__top .dnd-section > .row-fluid {
    position: relative;
}

.footer__top .widget-type-linked_image {
    line-height: 1;
}

.footer__bottom-links p {
    margin-bottom: 0;
    text-align: right;
}

.footer__bottom-links a{
    font-size: 16px;
    line-height: 30px;
    color: #F7F7F7;
}

.footer__bottom-links a:hover,
.footer__bottom-links a:focus{
    color: #fff;
    text-decoration: underline;
}

.footer__bottom-links a:not(:last-child){
    margin-right: 30px;
}

.footer__bubble {
    display: none;
    position: absolute;
    right: -100px;
    bottom: -6px;
}

.footer .social-links__icon {
    border: 1px solid #fff;
}
@media (max-width: 1199.98px) {
    .footer__bubble {
        right: 0;
    }

}

@media (max-width: 991px) { 
    .footer__bottom-links a:not(:last-child){
        margin-right: 10px;
    }
}

@media (max-width: 767px) {
    .footer__top {
        text-align: center;
    }

    /* .footer__top .row-fluid > [class*="footer_top-column"]:nth-child(2){
        display: none;
    } */

    .footer__area {
        line-height: 1;
    }

    .footer__area--last-child {
        margin-top: 25px;
    }
    
    .footer .button-wrapper {
        padding-top: 30px;
        text-align: center !important;
    }

    .footer__bottom-links {
        margin-top: 30px;
    }

    .footer__bottom-links a{
        display: block;
        margin-bottom: 10px;
        margin-right: 0 !important;
        font-size: 16px;
        text-align: center;
    }
    
    .footer__bottom-links a:last-child{
        margin-bottom: 0;
    }
}
/* 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%;
}


/* Form */
.hs-form input[type=text],
.hs-form input[type=email],
.hs-form input[type=password],
.hs-form input[type=tel],
.hs-form input[type=number],
.hs-form input[type=file],
.hs-form textarea {
  padding: 15px 20px;
  background-color: #E8E3D6;
  font-size: 18px;
  line-height: 30px;
  border: none;
  border-radius: 2px;
  color: #1D1D1D;
}
.hs-form .hs-button {
  font-size: 18px;
  line-height: 30px;
  border-radius: 4px;
}
.hs-form .hs-input::placeholder {
  font-size: 18px;
  color: rgba(0, 0, 0, .75);
}
.hs-form .hs-input:focus,
.hs-form .hs-input:active {
  outline: none !important;
}
.hs_error_rollup .hs-error-msgs {
  display: none !important;
}
.hs-error-msgs li {
  margin: 10px 0;
}
.hs-error-msgs label {
  font-size: 18px;
  color: #000;
}
.hs-error-msg {
  font-size: 16px;
}
@media (max-width: 767px) {
  .hs-form .hs-button {
    padding: 12px 24px;
    font-size: 16px;
    line-height: 20px;
  }
}
/***

====================================================================
    Custom accordion
====================================================================

***/
.custom-accordion {
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
    padding: 0;
}

.custom-accordion .acc_section {
    border: none;
    margin-top: 0;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.custom-accordion .acc_section > .acc_head {
    padding: 0;
    background-color: transparent;
}

.custom-accordion .acc_section.acc_active > .acc_head {
    background: none;
    border-bottom: none;
}

.custom-accordion .acc_section .acc_content {
    padding: 0;
}

.custom-accordion .acc_section > .acc_head {
    cursor: pointer;
    padding-right: 20px;
    position: relative;
}

.custom-accordion .acc_section > .acc_head::after {
    visibility: hidden;
    content: "";
    position: absolute;
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url("https://25145289.fs1.hubspotusercontent-eu1.net/hubfs/25145289/raw_assets/public/cms-theme-ax-solutions/images/arrow-down.svg") ;
    background-repeat: no-repeat;
    top: 50%;
    transform: translate(0, -50%);
}

.custom-accordion .acc_section.acc_active > .acc_head::after {
    background-image: url("https://25145289.fs1.hubspotusercontent-eu1.net/hubfs/25145289/raw_assets/public/cms-theme-ax-solutions/images/arrow-up.svg");
}

.custom-accordion .custom-accordion__title {
    padding-right: 20px;
    position: relative;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    pointer-events: none;
}

@media screen and (max-width: 991px) {
    .custom-accordion .custom-accordion__title {
        cursor: pointer;
        pointer-events: all;
    }
    .custom-accordion .acc_section > .acc_head::after {
        visibility: inherit;
    }
}


/***

====================================================================
    Custom tab
====================================================================

***/
.custom-tab {
    font-family: 'Open Sans',sans-serif
}

.custom-tab .custom-tab__heading-wrapper {
    padding: 0;
    display: flex;
    overflow-x: auto;
    overflow-y: auto;
    margin-bottom: 50px;
    list-style: none;
}

.custom-tab .custom-tab__heading-wrapper::-webkit-scrollbar {
    /* width: 16px; */
    -webkit-appearance: none;
}
.custom-tab .custom-tab__heading-wrapper::-webkit-scrollbar:vertical {
    width: 12px;
}
.custom-tab .custom-tab__heading-wrapper::-webkit-scrollbar:horizontal {
    height: 12px;
}
.custom-tab .custom-tab__heading-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 10px;
    border: 2px solid #ffffff;
}
.custom-tab .custom-tab__heading-wrapper::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #ffffff;
}

.custom-tab .custom-tab__heading-wrapper li {
    margin-bottom: 0;
    padding-bottom: 0;
    margin: 0;
    margin-right: 30px;
    border: none;
}

.custom-tab .custom-tab__heading-wrapper .custom-tab__heading-title {
    display: block;
    background-color: #ffffff;
    border: 2px solid #E8E3D6;
    padding: 25px 30px;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: var(--primary);
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.custom-tab .custom-tab__heading-wrapper .custom-tab__heading-title.active {
    background-color: #E8E3D6;
}

.custom-tab .custom-tab__heading-wrapper .custom-tab__heading-title:hover {
    background-color: #E8E3D6;
}

.custom-tab .custom-tab__content .custom-tab__content-header {
    color: var(--primary);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.custom-tab .custom-tab__content .custom-tab__content-body p {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}
.custom-tab .custom-tab__content .custom-tab__content-footer {
    display: inline-flex;
}

.custom-tab .custom-tab__content .custom-tab__content-footer a {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-right: 40px;
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, 0.75);
}

.custom-tab .custom-tab__content .custom-tab__content-footer a img {
    margin-right: 20px;
}

.custom-tab.custom-tab--show-all .custom-tab__heading-wrapper {
    --gap: 15px;
    flex-flow: wrap;
    margin-left: calc(-1 * var(--gap));
    margin-right: calc(-1 * var(--gap));
    margin-bottom: 20px;
}

.custom-tab.custom-tab--show-all .custom-tab__heading-wrapper li {
    flex: 0 0 calc(33.333%);
    padding: 0 var(--gap);
    margin-right: 0;
    margin-bottom: calc(2 * var(--gap));
}

.custom-tab.custom-tab--show-all .custom-tab__heading-wrapper .custom-tab__heading-title {
    white-space: normal;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-accordion__desc {
    margin-top: 30px;
    margin-bottom: 20px;
}
.custom-accordion__desc p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .custom-tab.custom-tab--show-all .custom-tab__heading-wrapper {
        --gap: 0;
        flex-flow: nowrap;
        margin-bottom: 10px;
    }

    .custom-tab.custom-tab--show-all .custom-tab__heading-wrapper li {
        margin-bottom: 0;
        margin-right: 30px;
        flex: auto;
    }

    .custom-tab.custom-tab--show-all .custom-tab__heading-wrapper .custom-tab__heading-title {
        white-space: nowrap;
    }
}

@media screen and (max-width: 767px) {
    .custom-tab .custom-tab__heading-wrapper {
        margin-bottom: 25px;
    }

    .custom-tab .custom-tab__heading-wrapper li {
        margin-right: 10px;
    }

    .custom-tab .custom-tab__heading-wrapper .custom-tab__heading-title {
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
    }

    .custom-tab .custom-tab__content .custom-tab__content-header {
        display: none;
    }

    .custom-tab .custom-tab__content .custom-tab__content-body p {
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
    }

    .custom-tab .custom-tab__content .custom-tab__content-footer {
        flex-direction: column;
    }

    .custom-tab .custom-tab__content .custom-tab__content-footer a {
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
    }

    .custom-tab .custom-tab__content .custom-tab__content-footer a:first-child {
        margin-bottom: 25px;
    }

    .custom-tab.custom-tab--show-all .custom-tab__heading-wrapper li {
        margin-right: 10px;
    }
}

/***

====================================================================
    Download and video
====================================================================

***/
.download-and-video {
    display: inline-flex;
}

.download-and-video a {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.75);
    margin-right: 40px;
    display: flex;
    align-items: center;
}

.download-and-video a:hover {
    color: rgba(0, 0, 0, 0.75);
}

.download-and-video a:focus {
    color: rgba(0, 0, 0, 0.75);
}

.download-and-video a img {
    margin-right: 20px;
}

@media screen and (max-width: 767px) {
    .custom-tab .custom-tab__content .custom-tab__content-body p {
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
    }

    .download-and-video {
        flex-direction: column;
    }

    .download-and-video a {
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
    }

    .download-and-video a:first-child {
        margin-bottom: 25px;
    }

    .download-and-video a:last-child {
        margin-bottom: 0;
    }
}

/***

====================================================================
    Fancybox
====================================================================

***/
.fancybox__content .fancybox__iframe {
    outline: none !important;
}
.fancybox__html5video, .fancybox__iframe {
    outline: none !important;
}

@media (max-width: 767px) {
    button.fancybox-button {
        padding: 10px !important;
    }
}

/***

====================================================================
    Custom list
====================================================================

***/
.custom-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.custom-list li {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Crect id='Rectangle_1116' data-name='Rectangle 1116' width='18' height='18' fill='rgba(0,0,0,0.75)' opacity='0.085'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 0 7px;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    padding-left: 40px;
    margin-bottom: 25px;
    color: rgba(0, 0, 0, 0.75);
}

.custom-list li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .custom-list li {
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
        color: rgba(0, 0, 0, 0.75);
    }
}

/***

====================================================================
    Anchor links
====================================================================

***/
.anchor-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.anchor-links li {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4Ij4NCiAgPHBhdGggaWQ9Ikljb25faW9uaWMtbWQtYXJyb3ctZm9yd2FyZCIgZGF0YS1uYW1lPSJJY29uIGlvbmljLW1kLWFycm93LWZvcndhcmQiIGQ9Ik01Ljk3NywxNi4xSDE5LjY0NWwtNi4zLDYuMywxLjYzMSwxLjU3NSw5LTktOS05TDEzLjQsNy41NTJsNi4yNDMsNi4zSDUuOTc3WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTUuOTc3IC01Ljk3NykiIGZpbGw9IiNmNmY2ZjQiLz4NCjwvc3ZnPg0K");
    background-repeat: no-repeat;
    background-position: 0 7px;
    padding-left: 40px;
    margin-bottom: 25px;
}

.anchor-links li a {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #404040;
}

.anchor-links li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .anchor-links li a {
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
        color: #404040
    }
}

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