*, *: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;
}



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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

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

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* 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,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

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

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

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

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


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

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

/* Header DND sections */

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

/* Header container */


.header__row-1 {
  padding-top: 1rem;
}

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

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

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    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;
  overflow: hidden;
}

.header__menu-child-toggle svg {
    fill: #000;
}
button.header__menu-child-toggle.no-button {
    line-height: 0;
}
@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
    .header__menu-toggle svg {
        fill:#000;
    }
    .header__menu--show, .header__menu-container--mobile {
    background-color:#fff;
    }
        .header__menu-item--depth-1 {
            border-top: 1px solid;
    }
    .header__container--left .header__button-col {
    display:none;
    }
}

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

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

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
    /* V1 lang switcher updates to keep "in line" w/ v0 mobile styles */
    .header__language-switcher .hs-language-switcher__menu {
        display: block;
        box-shadow:none!important;
        background: transparent;
    }
    .header__language-switcher .hs-language-switcher__menu a {
        font-size: 20px!important;
    }
    .header__language-switcher .hs-language-switcher__button {
        display: none;
    }
  }

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

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

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

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

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--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,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

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

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    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;
    }
    .hs-menu-wrapper li {
        margin-bottom: 1.4rem;
        text-align: center;
    }
}

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

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









/* 1a. Containers */




/* 1b. Colors */




/* 1c. Typography */


























/* 1d. Buttons */













/* 1e. Forms */









































/* 1f. Tables */













/* 1g. Website header */








/* 1h. Website footer */








.content-wrapper { max-width: 1000px;}
.dnd-section, .content-wrapper--vertical-spacing { padding: 80px 1rem; }
.dnd-section > .row-fluid { max-width: 1000px; }





html { font-size: 16px; }
body { font-family: 'Josefin Slab', serif; font-style: normal; font-weight: normal; text-decoration: none; color: #231f20; font-size: 16px; }

/* Paragraphs */
p { font-family: 'Josefin Slab', serif; font-style: normal; font-weight: normal; text-decoration: none; }
/* Anchors */
a { font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 600; text-decoration: underline; color: #231f20; }
a:hover, a:focus { font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 600; text-decoration: underline; color: #000000; }
a:active { font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 600; text-decoration: underline; color: #4b4748; }
/* Headings */
h1, .h1 { font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 700; text-decoration: none; color: #231f20; font-size: 40px; text-transform: none; }
h2, .h2 { font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 700; text-decoration: none; color: #231f20; font-size: 32px; text-transform: none; }
h3, .h3 { font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 700; text-decoration: none; color: #231f20; font-size: 28px; text-transform: none; }
h4, .h4 { font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 700; text-decoration: none; color: #231f20; font-size: 24px; text-transform: none; }
h5, .h5 { font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 700; text-decoration: none; color: #231f20; font-size: 20px; text-transform: none; }
h6, .h6 { font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 700; text-decoration: none; color: #231f20; font-size: 16px; text-transform: none; }

/* Blockquote */
blockquote { border-left-color: #F8FAFC; }





button, .button, .hs-button, .hs-blog-post-listing__post-button { border: 1px solid #9063e2; padding-top: 10px; padding-right: 20px; padding-bottom: 10px; padding-left: 20px; font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 600; text-decoration: none; background-color: rgba(0, 0, 0, 1.0); border-radius: 0px; color: #ffffff; fill: #ffffff; font-size: 16px; text-transform: none; }
button:hover, button:focus, .button:hover, .button:focus, .hs-button:hover, .hs-button:focus, .hs-blog-post-listing__post-button:hover,
.hs-blog-post-listing__post-button:focus { border: 1px solid #9063e2; font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 600; text-decoration: none; background-color: rgba(144, 99, 226, 1.0); color: #ffffff; fill: #ffffff; }
button:active, .button:active, .hs-button:active, .hs-blog-post-listing__post-button:active { font-family: 'Josefin Slab', serif; font-style: normal; font-weight: normal; text-decoration: none;
    background-color: rgba(75, 71, 72, 1.0);
    border-color: #4b4748;
}





form, .submitted-message { font-family: 'Josefin Slab', serif; font-style: normal; font-weight: normal; text-decoration: none; border: 1px none #F8FAFC;
; border-top-left-radius: 0px;
    border-top-right-radius: 0px; border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px; background-color: 

  
  
    
  


  rgba(248, 250, 252, 1.0)

; padding: 0px;
; }
/* Form title */
.form-title { border: 1px none #F8FAFC;
; padding-top: 0px;
padding-right: 0px;
padding-bottom: 30px;
padding-left: 0px;
; font-family: Merriweather; font-style: normal; font-weight: 700; text-decoration: none; border-top-left-radius: 0px;
    border-top-right-radius: 0px; border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px; font-size: 28px;
    color: #231f20; background-color: 

  
  
    
  


  rgba(248, 250, 252, 1.0)

; }
/* Labels */
form label { color: #425b76; }
/* Help text */
form legend { color: #425b76; }
/* Inputs */
form input[type=text], form input[type=search], form input[type=email], form input[type=password], form input[type=tel],
form input[type=number], form input[type=file], form select, form textarea { border: 2px solid #D1D6DC;

    background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

; color: #425b76; border-radius: 3px; }
/* Form placeholder text */

::-webkit-input-placeholder { color: #425b76; }
::-moz-placeholder { color: #425b76; }
:-ms-input-placeholder { color: #425b76; }
::placeholder { color: #425b76; }

/* Inputs - date picker */
.hs-fieldtype-date .input .hs-dateinput:before { color: #425b76; }
.fn-date-picker td.is-selected .pika-button { background: #231f20; }
.fn-date-picker td .pika-button:hover { background-color: #231f20 !important; }
.fn-date-picker td.is-today .pika-button { color: #231f20; }
/* Submit button */
form input[type=submit], form .hs-button { border: 1px none #231f20;
; padding-top: 15px;
padding-right: 53px;
padding-bottom: 15px;
padding-left: 53px;
;
    font-family: 'Josefin Slab', serif; font-style: normal; font-weight: normal; text-decoration: none; color: #FFFFFF; font-size: 22px;
    background-color: 

  
  
    
  


  rgba(35, 31, 32, 1.0)

; border-radius: 6px; text-transform: none; }

form input[type=submit]:hover,form input[type=submit]:focus,form .hs-button:hover,form .hs-button:focus {
    border: 1px solid #9063e2; font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 600; text-decoration: none; background-color: rgba(144, 99, 226, 1.0); color: #ffffff; fill: #ffffff; }

form input[type=submit]:active,form .hs-button:active {
    background-color: rgba(75, 71, 72, 1.0);
    border-color: #4b4748;
}





.header { background-color: 

  
  
    
  


  rgba(248, 250, 252, 1.0)

; }

.menu__link, .header__logo .logo-company-name, .header__language-switcher-label-current, .header__language-switcher .lang_list_class li a {
    color: #425b76; font-family: Josefin Slab; }

.menu__child-toggle-icon { border-top-color: #425b76; }

.menu .menu__link:hover, .menu .menu__link:focus,
.header__language-switcher-label-current:hover, .header__language-switcher-label-current:focus,
.header__language-switcher .lang_list_class li:hover a, .header__language-switcher .lang_list_class li a:focus {
    color: #1a334e; }

.menu__child-toggle-icon:hover, .menu__child-toggle-icon:focus { border-top-color: #1a334e; }

.menu .menu__link:active, .header__language-switcher-label-current:active, .header__language-switcher .lang_list_class li a:active {
    color: #6a839e; }

.menu__child-toggle-icon:active { border-top-color: #6a839e; }

.menu .menu__item--depth-1 > .menu__link--active-link:after { background-color: #425b76; }

@media (min-width: 767px) {
    .menu .menu__submenu, .header__language-switcher .lang_list_class { border: 2px solid #231f20;
 background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

; }

    .menu__submenu--level-2 > .menu__item:first-child:before { border: 2px solid #231f20;
 background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

; }
}

.menu__submenu .menu__link, .menu__submenu .menu__link:hover, .menu__submenu .menu__link:focus {
    color: #425b76; background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

; }

.header__language-switcher .lang_list_class:before { border-bottom-color: #231f20; }

.menu__submenu .menu__link:hover, .menu__submenu .menu__link:focus, .header__language-switcher .lang_list_class li:hover,
.menu__submenu--level-2 > .menu__item:first-child:hover:before, .menu__submenu--level-2 > .menu__item:first-child.focus:before {
    background-color: 

  
  
    
  


  rgba(248, 250, 252, 1.0)

; }

.header__language-switcher .lang_list_class.first-active::after { border-bottom-color: 

  
  
    
  


  rgba(248, 250, 252, 1.0)

; }

.header__language-switcher-label-current, .header__language-switcher .lang_list_class li a {font-family: Josefin Slab;}

.header__language-switcher-label-current:after {border-top-color: #425b76;}

@media(max-width: 767px) {
    .header__navigation { background-color: 

  
  
    
  


  rgba(248, 250, 252, 1.0)

; }

    .header__navigation-toggle svg, .menu-arrow svg { fill: #425b76; }
}





.footer { background-color: 

  
  
    
  


  rgba(248, 250, 252, 1.0)

; }

/* Footer content */

.footer p,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer label,
.footer span,
.footer li,
.footer img {
    color: #425b76;
}





.blog-post,
.blog-header__inner,
.blog-related-posts {
    padding: 80px 0;
}

/* Blog post */

.blog-post__meta a {
    color: #231f20;
}

.blog-post__tag-link {
    color: #231f20;
}

.blog-post__tag-link:hover,
.blog-post__tag-link:focus {
    color: #000000;
}

.blog-post__tag-link:active {
    color: #4b4748;
}

/* Blog related posts */

.blog-related-posts__title-link,
.blog-related-posts__title-link:hover,
.blog-related-posts__title-link:focus,
.blog-related-posts__title-link:active {
    font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 700; text-decoration: none;
    text-transform: none;
}

.blog-related-posts__title-link {
    color: #231f20;
}

.blog-related-posts__title-link:hover,
.blog-related-posts__title-link:focus {
    color: #000000;
}

.blog-related-posts__title-link:active {
    color: #4b4748;
}

/* Blog comments */

.blog-comments {
    margin-bottom: 80px;
}

#comments-listing .comment-reply-to {
    color: #231f20;
}

#comments-listing .comment-reply-to:hover,
#comments-listing .comment-reply-to:focus {
    color: #000000;
}

#comments-listing .comment-reply-to:active {
    color: #4b4748;
}





.hs-search-results__title {
    font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 700; text-decoration: none;
    color: #231f20;
}





/* Blog listing */

.hs-blog-post-listing__post-title-link,
.hs-blog-post-listing__post-title-link:hover,
.hs-blog-post-listing__post-title-link:focus,
.hs-blog-post-listing__post-title-link:active {
    font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 700; text-decoration: none;
    text-transform: none;
}

.hs-blog-post-listing__post-title-link {
    color: #231f20;
}

.hs-blog-post-listing__post-title-link:hover,
.hs-blog-post-listing__post-title-link:focus {
    color: #000000;
}

.hs-blog-post-listing__post-title-link:active {
    color: #4b4748;
}


.hs-blog-post-listing__post-tag,
.hs-blog-post-listing__post-author-name {
    color: #231f20;
}

/* Blog pagination */

.hs-pagination__link-text,
.hs-pagination__link--number {
    color: #231f20;
}

.hs-pagination__link:hover .hs-pagination__link-text,
.hs-pagination__link:focus .hs-pagination__link-text,
.hs-pagination__link--number:hover,
.hs-pagination__link--number:focus {
    color: #000000;
}

.hs-pagination__link:active .hs-pagination__link-text,
.hs-pagination__link--number:active {
    color: #4b4748;
}

.hs-pagination__link-icon svg {
    fill: #231f20;
}

/* Pricing card */

.card__price {
    font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 700; text-decoration: none;
    color: #231f20;
    font-size: 28px;
}

.card__body svg {
    fill: #231f20;
}

/* Social follow */

.social-links__icon {
    background-color: #231f20;
}

.social-links__icon:hover,
.social-links__icon:focus {
    background-color: #000000;
}

.social-links__icon:active {
    background-color: #4b4748;
    font-family: 'Josefin Slab', serif; font-style: normal; font-weight: 700; text-decoration: none;
    color: #231f20;
    font-size: 28px;
}

a, a:hover {
    text-decoration:none;
}
.card--dark, .card--light {
    padding: 1.4rem;
}
.card--light {
    border: 1px solid #666666;
    background-color: rgba(255, 255, 255, 1.0);
    border-radius: 0px;
    color: #231f20;
}
h1, h2, h3, h4, h5, h6, ol, ul {
    margin: 0 0 1.4rem;
}

/* Custom CSS */

.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}

body, p { font-weight:600; }

blockquote {
    font-family: 'Josefin Slab', serif;
    font-style: normal;
    font-weight: 700;
    text-decoration: none;
    border-left-color: #F5F5F5;
    color: #231f20;
    font-size: 24px;
}

form {
    border: 1px none #F5F5F5;
    padding: 45px;
    background-color: rgba(245, 245, 245, 1.0);
    border-radius: 0px;
}

/* Lightbox */
.basicLightbox{position:fixed;display:flex;justify-content:center;align-items:center;top:0;left:0;width:100%;height:100vh;background:rgba(0,0,0,.8);opacity:.01;transition:opacity .4s ease;z-index:1000;will-change:opacity}.basicLightbox--visible{opacity:1}.basicLightbox__placeholder{max-width:100%;transform:scale(.9);transition:transform .4s ease;z-index:1;will-change:transform}.basicLightbox__placeholder>iframe:first-child:last-child,.basicLightbox__placeholder>img:first-child:last-child,.basicLightbox__placeholder>video:first-child:last-child{display:block;position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;max-width:95%;max-height:95%}.basicLightbox__placeholder>iframe:first-child:last-child,.basicLightbox__placeholder>video:first-child:last-child{pointer-events:auto}.basicLightbox__placeholder>img:first-child:last-child,.basicLightbox__placeholder>video:first-child:last-child{width:auto;height:auto}.basicLightbox--iframe .basicLightbox__placeholder,.basicLightbox--img .basicLightbox__placeholder,.basicLightbox--video .basicLightbox__placeholder{width:100%;height:100%;pointer-events:none}.basicLightbox--visible .basicLightbox__placeholder{transform:scale(1)}

/* mage Gallery Slider */

.splide__slide {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.splide__slide--nav {
    height: auto;
}

.splide__slide--nav-image {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.splide__track--nav > .splide__list > .splide__slide {
    border: none !important; /* stylelint-disable-line declaration-no-important */
    opacity: 0.6;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
    border: none !important; /* stylelint-disable-line declaration-no-important */
    opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
}

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

.splide__slide--image_caption__wrapper {
    position: relative;
    height: auto;
    width: auto;
}

.splide__slide--image__wrapper {
    height: 100%;
}

.splide__slide--image {
    display: block;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.splide__pagination__page {
    background: #ccc !important; /* stylelint-disable-line declaration-no-important */
    opacity: 0.5 !important; /* stylelint-disable-line declaration-no-important */
}

.splide__pagination__page.is-active {
    opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
}

.splide__slide--caption {
    box-sizing: border-box;
    height: auto;
    padding: 0.5rem 1rem 0;
    align-self: flex-end;
}

.splide__toggle {
    display: inline-flex;
    height: 1.8rem;
    width: 1.8rem;
    padding: 1px 6px;
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #ccc;
    opacity: 0.7;
    transition: background-color 0.2s ease;
}

.splide_toggle svg {
    fill: initial;
}

.splide__toggle:hover {
    opacity: 1;
}

.splide__controls {
    display: flex;
    margin-top: 0.75rem;
    align-items: center;
    justify-content: center;
}

.splide__controls .splide__pagination {
    position: relative;
    bottom: auto;
    left: auto;
    width: auto;
    padding: 0 0.5rem;
    transform: none;
}

.splide__toggle__play {
    margin-left: 2px;
}

.splide__nav {
    margin-top: 0.75rem;
}

/** Below styles are to counter overly specific button styling in themes. These styles are modified from https://cdn.jsdelivr.net/npm/@splidejs/splide@4.1.2/dist/css/splide.min.css  **/
button.splide__arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    display: flex;
    height: 2em;
    width: 2em;
    padding: 0;
    border: 0;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #ccc;
    cursor: pointer;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    opacity: 0.7;
    transform: translateY(-50%);
}

/** These styles are unminified from the minified css mentioned above for ordering purposes. **/
/* stylelint-disable */
button.splide__arrow svg {
    height: 1.2em;
    width: 1.2em;
    fill: #000;
}

button.splide__arrow:hover:not(:disabled) {
    opacity: 0.9;
}

button.splide__arrow:disabled {
    opacity: 0.3;
}

button.splide__arrow:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px;
}

button.splide__arrow--prev {
    left: 1em;
}

button.splide__arrow--prev svg {
    transform: scaleX(-1);
}

button.splide__arrow--next {
    right: 1em;
}

.splide__arrows--rtl button.splide__arrow--prev {
    right: 1em;
    left: auto;
}

.splide__arrows--rtl button.splide__arrow--prev svg {
    transform: scaleX(1);
}

.splide__arrows--rtl button.splide__arrow--next {
    right: auto;
    left: 1em;
}

.splide__arrows--rtl button.splide__arrow--next svg {
    transform: scaleX(-1);
}

.splide__arrows--ttb button.splide__arrow {
    left: 50%;
    transform: translate(-50%);
}

.splide__arrows--ttb button.splide__arrow--prev {
    top: 1em;
}

.splide__arrows--ttb button.splide__arrow--prev svg {
    transform: rotate(-90deg);
}

.splide__arrows--ttb button.splide__arrow--next {
    top: auto;
    bottom: 1em;
}

.splide__arrows--ttb button.splide__arrow--next svg {
    transform: rotate(90deg);
}


/* Website Header */
/* Layout */

.header__container {
    position: relative;
}

.header__wrapper {
    display: flex;
    margin: 0 auto;
    align-items: center;
    max-width: 1000px;
}

.header__top {
    padding: 0.7rem 0;
}

.header__bottom {
    padding: 2.1rem 0;
    background-color:#fff;
}

@media (max-width: 767px) {
    .header__top {
        display: none;
    }

    .header__bottom {
        padding: 2.1rem 20px;
    }
}

/* Layout - left */

.header__container--left .header__language-switcher-col {
    margin-left: auto;
}

.header__container--left .header__wrapper--bottom {
    justify-content: space-between;
}

.header__container--left .header__menu-col {
    margin-left: auto;
    text-align: right;
}

[dir='rtl'] .header__container--left .header__menu-col {
    margin-right: auto;
    margin-left: 0;
    text-align: left;
}

.header__container--left .header__button-col {
    margin-left: 1rem;
}

@media (min-width: 767px) {
    .header__container--left .header__logo-col {
        flex: 1 0 0;
    }

    .header__container--left .header__menu-col {
        flex: 2 0 0;
    }
}

svg.header__logo-image { width:100%; max-width:290px; height:auto; }
footer svg.header__logo-image { width:100%; max-width:440px; height:auto; }


/* Layout - centered */

.header__container--centered .header__button-col {
    margin-left: auto;
}

.header__container--centered .header__wrapper--bottom {
    flex-wrap: wrap;
    text-align: center;
}

.header__container--centered .header__logo-col {
    width: 100%;
    margin-bottom: 1.4rem;
}

.header__container--centered .header__menu-col {
    width: 100%;
}

@media (max-width: 767px) {
    .header__container--centered .header__wrapper--bottom {
        justify-content: space-around;
        text-align: left;
    }

    .header__container--centered .header__logo-col,
    .header__container--centered .header__menu-col {
        width: auto;
        margin-bottom: 0;
    }
}

/* Language switcher */

.header__language-switcher {
    position: relative;
    cursor: pointer;
}

.header__language-switcher .lang_switcher_class {
    position: static;
}

/* Language switcher - top level menu item */

.header__language-switcher-label {
    display: flex;
}

.header__language-switcher-current-label {
    display: flex;
    margin-bottom: 5px;
    margin-left: 0.5rem;
    align-items: center;
}

.header__language-switcher-child-toggle svg {
    height: 15px;
    width: 15px;
    margin-left: 0.35rem;
}

/* Language switcher - submenu */

.header__language-switcher .lang_list_class {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    left: auto;
    display: block;
    width: 200px;
    padding: 0;
    border-style: solid;
    border-width: 1px;
    opacity: 0;
    text-align: left;
    transform: none;
    visibility: hidden;
}

.header__language-switcher-label--open .lang_list_class,
.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
    opacity: 1;
    visibility: visible;
}

.header__language-switcher .lang_list_class:after,
.header__language-switcher .lang_list_class:before {
    content: none;
}

.header__language-switcher .lang_list_class li {
    padding: 0;
    border: none;
    margin: 0;
}

.header__language-switcher .lang_list_class li:first-child {
    padding-top: 0;
    border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.header__language-switcher .lang_list_class .lang_switcher_link {
    display: inline-flex;
    width: 100%;
    padding: 0.7rem 1rem;
}

@media (max-width: 767px) {
    .header__language-switcher .lang_list_class {
        position: static;
        display: none;
        width: 100%;
        border: none;
    }

    .header__language-switcher-label--open .lang_list_class {
        display: block;
    }

    .header__language-switcher-current-label {
        display: block;
        width: 80%;
        padding: 0.7rem 0 0.7rem 1rem;
        margin: 0;
        order: 1;
    }

    .header__language-switcher .globe_class {
        height: auto;
        width: 100%;
    }

    .header__language-switcher-label {
        display: flex;
        flex-wrap: wrap;
    }

    .hs_cos_wrapper_type_language_switcher {
        width: 100%;
    }
    .header__language-switcher-child-toggle,
    .header__language-switcher-child-toggle:hover,
    .header__language-switcher-child-toggle:focus,
    .header__language-switcher-child-toggle:active {
        position: absolute;
        top: 0;
        right: 0;
        width: 20%;
        padding: 10px 30px;
        border: 0;
        cursor: pointer;
    }

    .header__language-switcher-child-toggle svg {
        margin-left: 0;
    }

    .header__language-switcher-child-toggle--open svg {
        transform: rotate(180deg);
        transform-origin: 50% 50%;
        transition: transform 0.4s;
    }
}

/* Logo */

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

/* Menu */

.header__menu-container--mobile {
    display: none;
}

.header__menu--mobile {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    display: none;
    width: 100%;
}

@media (max-width: 767px) {
    .header__menu--desktop {
        display: none;
    }

    .header__menu-container--mobile {
        display: block;
    }

    .header__menu--show {
        display: block;
    }
}

/* Menu items */

.header__menu-item {
    position: relative;
    display: inline-flex;
}

@media (max-width: 767px) {
    .header__menu-item {
        display: block;
        width: 100%;
        text-align: left;
    }

    [dir='rtl'] .header__menu-item {
        text-align: right;
    }

    .header__menu-link {
        display: block;
        width: 100%;
        padding: 0.7rem 1rem;
    }

    .header__menu-item--has-submenu .header__menu-link {
        width: 80%;
    }
}

/* Menu items - top level */

.header__menu-item--depth-1 {
    padding: 0 1rem;
}

@media (max-width: 767px) {
    .header__menu-item--depth-1 {
        padding: 0;
    }
}

/* Menu items - submenus */

.header__menu-submenu {
    position: absolute;
    z-index: 99;
    top: 100%;
    left: -1px;
    display: none;
    width: 200px;
    border-style: solid;
    border-width: 1px;
    text-align: left;
    background-color:#fff;
}

[dir='rtl'] .header__menu-submenu {
    text-align: right;
}

.header__menu-item--open > .header__menu-submenu {
    display: block;
}

.header__menu-item--depth-1:last-child > .header__menu-submenu {
    right: 0;
    left: auto;
}

.header__menu-submenu--level-3 {
    top: 0;
    left: 100%;
}

/* prettier-ignore */
.header__menu-item--depth-1:nth-last-child(-n + 2) .header__menu-submenu--level-3 {
    top: 0;
    right: 100%;
    left: auto;
}

.header__menu-submenu .header__menu-item {
    width: 100%;
    background-color: inherit;
}

.header__menu-submenu .header__menu-link {
    display: inline-flex;
    padding: 0.7rem 1rem;
}

.header__menu-item--depth-3 > .header__menu-link {
    margin-left: 10px;
}

.header__menu-item--depth-4 > .header__menu-link {
    margin-left: 20px;
}

.header__menu-item--depth-5 > .header__menu-link,
.header__menu-item--depth-6 > .header__menu-link,
.header__menu-item--depth-7 > .header__menu-link,
.header__menu-item--depth-8 > .header__menu-link,
.header__menu-item--depth-9 > .header__menu-link,
.header__menu-item--depth-10 > .header__menu-link {
    margin-left: 30px;
}

.header__menu-item--button {
    padding: 0.7rem 1rem;
}

@media (max-width: 767px) {
    /* prettier-ignore */
    .header__menu-submenu,
    .header__menu-submenu--level-3,
    .header__menu-item--depth-1:nth-last-child(-n + 2) .header__menu-submenu--level-3 {
        position: static;
        width: 100%;
        border: none;
    }
}

/* Menu icons */

@media (min-width: 767px) {
    .header__menu-submenu .header__menu-child-toggle {
        padding: 0.7rem 1rem;
        margin-left: auto;
    }

    [dir='rtl'] .header__menu-submenu .header__menu-child-toggle {
        margin-right: auto;
        margin-left: 0;
    }
}

.header__menu-child-toggle svg {
    height: 15px;
    width: 15px;
    margin-left: 0.35rem;
}

[dir='rtl'] .header__menu-child-toggle svg {
    margin-right: 0.35rem;
    margin-left: 0;
}

.header__menu-toggle {
    display: none;
}

.header__menu-toggle svg {
    height: 30px;
    width: 30px;
}

@media (max-width: 767px) {
    .header__menu-child-toggle,
    .header__menu-child-toggle:hover,
    .header__menu-child-toggle:focus,
    .header__menu-child-toggle:active {
        position: absolute;
        top: 0;
        right: 0;
        width: 20%;
        min-width: 75px;
        padding: 10px 30px;
        border: 0;
        cursor: pointer;
    }

    [dir='rtl'] .header__menu-child-toggle,
    [dir='rtl'] .header__menu-child-toggle:hover,
    [dir='rtl'] .header__menu-child-toggle:focus,
    [dir='rtl'] .header__menu-child-toggle:active {
        right: auto;
        left: 0;
    }

    .header__menu-child-toggle svg {
        margin-left: 0;
    }

    .header__menu-child-toggle--open svg {
        transform: rotate(180deg);
        transform-origin: 50% 50%;
        transition: transform 0.4s;
    }

    .header__menu-toggle--show {
        display: block;
    }
    .header__menu-toggle, .splide__toggle {
        margin:24px 0;
    }
    .header__container--left .header__menu-col {
        margin-left: 30px;
    }

}

@media (max-width: 575px) {
        .header__logo-link svg {
        width: 100%;
    }
}
/* List icons */

.list__icon {
  margin-right: 1rem;
}

/* List item */

.list__item {
  margin-top: 0;
}
.list__item > span { line-height:0; }
/* List item content */

.list__item p,
.list__item h1,
.list__item h2,
.list__item h3,
.list__item h4,
.list__item h5,
.list__item h6,
.list__item blockquote {
  margin-bottom: 0.7rem;
}
.list__icon { display:block; }
.button .button__icon svg { height: 1.25rem; margin-right: 1rem; fill: inherit; }
.button span { display:inline-block; }
a.button { align-items: center; cursor: pointer; display: inline-flex; position: relative; text-align: center; transition: color .15slinear; white-space: normal; }
.form-title { font-family:inherit; color:#fff; background-color:#000; padding:30px; }



.basicLightbox{position:fixed;display:flex;justify-content:center;align-items:center;top:0;left:0;width:100%;height:100vh;background:rgba(0,0,0,.8);opacity:.01;transition:opacity .4s ease;z-index:1000;will-change:opacity}.basicLightbox--visible{opacity:1}.basicLightbox__placeholder{max-width:100%;transform:scale(.9);transition:transform .4s ease;z-index:1;will-change:transform}.basicLightbox__placeholder>iframe:first-child:last-child,.basicLightbox__placeholder>img:first-child:last-child,.basicLightbox__placeholder>video:first-child:last-child{display:block;position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;max-width:95%;max-height:95%}.basicLightbox__placeholder>iframe:first-child:last-child,.basicLightbox__placeholder>video:first-child:last-child{pointer-events:auto}.basicLightbox__placeholder>img:first-child:last-child,.basicLightbox__placeholder>video:first-child:last-child{width:auto;height:auto}.basicLightbox--iframe .basicLightbox__placeholder,.basicLightbox--img .basicLightbox__placeholder,.basicLightbox--video .basicLightbox__placeholder{width:100%;height:100%;pointer-events:none}.basicLightbox--visible .basicLightbox__placeholder{transform:scale(1)}

:root {
  --blur: 3px;
  --unblur: 0;
  --scale: 1.5;
  --unscale: 1;
  --grayscale: 100%;
  --ungrayscale: 0%;
  --transition: 0.3s ease-in-out;
}

.hs-image__grid__list {
  display: flex;
  padding-left: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style-type: none;
}

.hs-image__grid__list__item {
  position: relative;
  overflow: hidden;
  margin: 0;
  flex-basis: calc(30% - 10px);
}

button.hs-image__grid__list__item__button {
  all: unset;
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
    width:100%;
}

button.hs-image__grid__list__item__button:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

button.hs-image__grid__list__item__button:focus:not(:focus-visible) {
  outline: none;
}

.hs-image__grid__list__item__image {
  position: relative;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

.hs-image__grid__item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0);
  opacity: 0;
  transition: background-color 0.5s, opacity 0.5s;
}

.hs-image__grid__item__overlay:hover {
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.hs-image__grid__item__overlay__content {
  max-height: 100%;
  width: 100%;
  opacity: 1;
  text-align: center;
}

.hs-image__grid__item__overlay__content * {
  padding: initial;
  margin: initial;
}

.hs-image__grid__item__overlay__content--fit {
  display: inline-block;
  /** For supporting fitty responsive text **/
  width: 100%;
  white-space: nowrap;
}

.hs-image__grid__item__overlay__content
  .hs-image__grid__item__overlay__content--fit
  * {
  /** For handling a state where rich text for the overlay has child html tags for fitty responsive text */
  font-size: inherit !important;
}

/** Image hover transitions; **/

.hs-image__grid__item__image--zoom_out {
  transform: scale(var(--scale));
  transition: var(--transition);
}

.hs-image__grid__list__item:hover .hs-image__grid__item__image--zoom_out {
  transform: scale(var(--unscale));
}

.hs-image__grid__item__image--blur {
  filter: blur(var(--unblur));
  transition: var(--transition);
}

.hs-image__grid__list__item:hover .hs-image__grid__item__image--blur {
  filter: blur(var(--blur));
}

.hs-image__grid__item__image--grayscale {
  filter: grayscale(var(--ungrayscale));
  transition: var(--transition);
}

.hs-image__grid__list__item:hover .hs-image__grid__item__image--grayscale {
  filter: grayscale(var(--grayscale));
}

.hs-image__grid__lightbox {
  display: flex;
  align-items: center;
  justify-items: center;
}

.hs-image__grid__lightbox__image {
  max-height: 90vh;
  max-width: 90vw;
}

.hs-image__grid__lightbox__button {
  display: flex;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-items: center;
}

.hs-image__grid__lightbox__button__icon {
  display: flex;
  align-items: center;
  justify-items: center;
}

.hs-image__grid__lightbox__button--close {
  all: unset;
  position: absolute;
  top: -40px;
  right: -40px;
  height: 48px;
  width: 48px;
  background: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  text-align: center;
}

button.hs-image__grid__lightbox__button--close:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

button.hs-image__grid__lightbox__button--close:focus:not(:focus-visible) {
  outline: none;
}

/** Below styles are to counter overly specific button styling in themes. **/
button.hs-image__grid__lightbox__button {
  position: absolute;
  z-index: 1;
  top: 50%;
  display: flex;
  height: 2em;
  width: 2em;
  padding: 0;
  border: 0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #ccc;
  cursor: pointer;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  opacity: 0.7;
  transform: translateY(-50%);
}

/** These styles are unminified from the minified css mentioned above for ordering purposes. **/
/* stylelint-disable */
button.hs-image__grid__lightbox__button svg {
  height: 1.2em;
  width: 1.2em;
  fill: #000;
}

button.hs-image__grid__lightbox__button:hover:not(:disabled) {
  opacity: 0.9;
}

button.hs-image__grid__lightbox__button:disabled {
  opacity: 0.3;
}

button.hs-image__grid__lightbox__button:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

button.hs-image__grid__lightbox__button:focus:not(:focus-visible) {
  outline: none;
}

button.hs-image__grid__lightbox__button--prev {
  left: 1em;
}

button.hs-image__grid__lightbox__button--next {
  right: 1em;
}

button.hs-image__grid__lightbox__button--hide {
  display: none;
}
/* stylelint-enable */
.hs-content-library {
  --title-font-size: 1.5rem;

  /* Increase featured font size proportionally by 1/3 ex. 24px -> 32px  */
  --featured-title-font-size: calc(var(--title-font-size) * 1.33333333);
  --description-font-size: 1rem;

  /* Increase featured font size proportionally by 1/8 ex. 16px -> 18px  */
  --featured-description-font-size: calc(var(--description-font-size) * 1.125);
  --description-line-height: 1.375;

  /* Sets up calculations so grid elements wrap at a minimum size, and stretch to maintain column count */
  --grid-layout-gap: 32px;
  --grid-column-count: 3;
  --grid-item--min-width: 311px;
  --gap-count: calc(var(--grid-column-count) - 1);
  --total-gap-width: calc(var(--gap-count) * var(--grid-layout-gap));
  --grid-item--max-width: calc((100% - var(--total-gap-width)) / var(--grid-column-count));

  display: grid;
  grid-gap: var(--grid-layout-gap);
  grid-template-columns: repeat(auto-fill, minmax(max(var(--grid-item--min-width), var(--grid-item--max-width)), 1fr));
}

.hs-content-library__card {
  box-sizing: border-box;
  min-height: 100px;
  padding: 16px;
  line-height: var(--description-line-height);
}

.hs-content-library__image {
  box-sizing: border-box;
  padding: 24px;
}

.hs-content-library__image img,
.hs-content-library__image svg {
  height: auto;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
  vertical-align: middle;
}

.hs-content-library__title {
  margin: 0.5rem 0;
  font-size: var(--title-font-size);
}

.hs-content-library__description {
  font-size: var(--description-font-size);
}

.hs-content-library__image--custom {
  padding: 0;
}

.hs-content-library__image--custom img {
  -o-object-fit: cover;
  object-fit: cover;
}

.hs-content-library__card--featured {
  display: flex;
  max-width: initial;
  align-items: center;
  grid-column: 1/-1;
  gap: 16px;
}

.hs-content-library__card--featured .hs-content-library__image {
  flex: 1 1 50%;
  background-color: #ebe5e0;
}

.hs-content-library__card--featured .hs-content-library__image img,
.hs-content-library__card--featured .hs-content-library__image svg {
  aspect-ratio: 4/3;
}

.hs-content-library--cards .hs-content-library__card {
  border: 1px solid #ccc;
  background-color: #fff;
}

.hs-content-library--cards .hs-content-library__image {
  border: 1px solid #ccc;
}

.hs-content-library--tiles .hs-content-library__image {
  background-color: #fff;
}

.hs-content-library--tiles .hs-content-library__card:not(.hs-content-library__card--featured) {
  padding: 0;
}

.hs-content-library--minimal .hs-content-library__card:not(.hs-content-library__card--featured) {
  display: flex;
  padding: 0;
  flex: 4 1 calc(33% - var(--grid-layout-gap));
  background-color: transparent;
  gap: 16px;
}

.hs-content-library--minimal .hs-content-library__card:not(.hs-content-library__card--featured) .hs-content-library__image {
  padding: 0;
}

.hs-content-library--minimal .hs-content-library__card:not(.hs-content-library__card--featured) .hs-content-library__image img,
.hs-content-library--minimal .hs-content-library__card:not(.hs-content-library__card--featured) .hs-content-library__image svg {
  height: 72px;
  width: 72px;
  padding: 8px;
  margin-top: 6px;
  background-color: #fff;
}

.hs-content-library--minimal .hs-content-library__card:not(.hs-content-library__card--featured) .hs-content-library__title {
  margin-top: 0;
}

@media only screen and (max-width: 1025px) {
  .hs-content-library__card--featured {
    flex-basis: calc(100% - var(--grid-layout-gap));
  }

  .hs-content-library__card--featured .hs-content-library__image {
    flex: 1 1 100%;
  }
}

@media only screen and (max-width: 767px) {
  .hs-content-library__image img,
  .hs-content-library__image svg {
    max-height: 200px;
  }

  .hs-content-library__title,
  .hs-content-library__description {
    margin: 0.5rem 0;
  }

  .hs-content-library__description {
    font-size: 0.875rem;
  }
}

/* Styles from here down are generated by a script with color shifts included */
.hs-default-svg-BABDCF-fill {
  --red-svg: calc(var(--red-svg-tertiary) + 51);
  --green-svg: calc(var(--green-svg-tertiary) + 49);
  --blue-svg: calc(var(--blue-svg-tertiary) + 36);

  fill: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}

.hs-default-svg-516747-fill {
  fill: rgb(var(--red-svg-primary), var(--green-svg-primary), var(--blue-svg-primary));
}

.hs-default-svg-516747-stroke {
  stroke: rgb(var(--red-svg-primary), var(--green-svg-primary), var(--blue-svg-primary));
}

.hs-default-svg-D7D9E3-fill {
  --red-svg: calc(var(--red-svg-tertiary) + 80);
  --green-svg: calc(var(--green-svg-tertiary) + 77);
  --blue-svg: calc(var(--blue-svg-tertiary) + 56);

  fill: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}

.hs-default-svg-D7D9E3-stroke {
  --red-svg: calc(var(--red-svg-tertiary) + 80);
  --green-svg: calc(var(--green-svg-tertiary) + 77);
  --blue-svg: calc(var(--blue-svg-tertiary) + 56);

  stroke: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}

.hs-default-svg-734E36-fill {
  fill: rgb(var(--red-svg-secondary), var(--green-svg-secondary), var(--blue-svg-secondary));
}

.hs-default-svg-734E36-stroke {
  stroke: rgb(var(--red-svg-secondary), var(--green-svg-secondary), var(--blue-svg-secondary));
}

.hs-default-svg-D7CBC1-fill {
  --red-svg: calc(var(--red-svg-secondary) + 100);
  --green-svg: calc(var(--green-svg-secondary) + 125);
  --blue-svg: calc(var(--blue-svg-secondary) + 139);

  fill: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}

.hs-default-svg-D7CBC1-stroke {
  --red-svg: calc(var(--red-svg-secondary) + 100);
  --green-svg: calc(var(--green-svg-secondary) + 125);
  --blue-svg: calc(var(--blue-svg-secondary) + 139);

  stroke: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}

.hs-default-svg-F4F0EC-fill {
  --red-svg: calc(var(--red-svg-secondary) + 129);
  --green-svg: calc(var(--green-svg-secondary) + 162);
  --blue-svg: calc(var(--blue-svg-secondary) + 182);

  fill: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}

.hs-default-svg-68855C-fill {
  --red-svg: calc(var(--red-svg-primary) + 23);
  --green-svg: calc(var(--green-svg-primary) + 30);
  --blue-svg: calc(var(--blue-svg-primary) + 21);

  fill: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}

.hs-default-svg-878CAB-fill {
  fill: rgb(var(--red-svg-tertiary), var(--green-svg-tertiary), var(--blue-svg-tertiary));
}

.hs-default-svg-C9CCD9-fill {
  --red-svg: calc(var(--red-svg-tertiary) + 66);
  --green-svg: calc(var(--green-svg-tertiary) + 64);
  --blue-svg: calc(var(--blue-svg-tertiary) + 46);

  fill: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}

.hs-default-svg-E7E8ED-fill {
  --red-svg: calc(var(--red-svg-tertiary) + 96);
  --green-svg: calc(var(--green-svg-tertiary) + 92);
  --blue-svg: calc(var(--blue-svg-tertiary) + 66);

  fill: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}

.hs-default-svg-C3B1A2-fill {
  --red-svg: calc(var(--red-svg-secondary) + 80);
  --green-svg: calc(var(--green-svg-secondary) + 99);
  --blue-svg: calc(var(--blue-svg-secondary) + 108);

  fill: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}

.hs-default-svg-829F74-fill {
  --red-svg: calc(var(--red-svg-primary) + 49);
  --green-svg: calc(var(--green-svg-primary) + 56);
  --blue-svg: calc(var(--blue-svg-primary) + 45);

  fill: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}

.hs-default-svg-9DB492-fill {
  --red-svg: calc(var(--red-svg-primary) + 76);
  --green-svg: calc(var(--green-svg-primary) + 77);
  --blue-svg: calc(var(--blue-svg-primary) + 75);

  fill: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}

.hs-default-svg-B8C9B1-fill {
  --red-svg: calc(var(--red-svg-primary) + 103);
  --green-svg: calc(var(--green-svg-primary) + 98);
  --blue-svg: calc(var(--blue-svg-primary) + 106);

  fill: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}

.hs-default-svg-875C3F-fill {
  --red-svg: calc(var(--red-svg-secondary) + 20);
  --green-svg: calc(var(--green-svg-secondary) + 14);
  --blue-svg: calc(var(--blue-svg-secondary) + 9);

  fill: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}

.hs-default-svg-A5A9C0-fill {
  --red-svg: calc(var(--red-svg-tertiary) + 30);
  --green-svg: calc(var(--green-svg-tertiary) + 29);
  --blue-svg: calc(var(--blue-svg-tertiary) + 21);

  fill: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}

.hs-default-svg-6B885E-fill {
  --red-svg: calc(var(--red-svg-primary) + 26);
  --green-svg: calc(var(--green-svg-primary) + 33);
  --blue-svg: calc(var(--blue-svg-primary) + 23);

  fill: rgb(var(--red-svg), var(--green-svg), var(--blue-svg));
}
/* Pricing card */
.pricing-card {
  display: flex;
  flex-flow: column;
}

.pricing-card__content {
  display: flex;
  flex: 1 0;
  flex-flow: column;
}

.pricing-card__list {
  flex-grow: 1;
}

/* Heading */

.pricing-card__heading {
  padding: 0.7rem;
  text-align: center;
}

.pricing-card__heading,
.pricing-card__heading *,
.pricing-card__heading p,
.pricing-card__heading h1,
.pricing-card__heading h2,
.pricing-card__heading h3,
.pricing-card__heading h4,
.pricing-card__heading h5,
.pricing-card__heading h6,
.pricing-card__heading a,
.pricing-card__heading span,
.pricing-card__heading div,
.pricing-card__heading li,
.pricing-card__heading blockquote {
  margin-bottom: 0;
  color: #fff;
}

/* Price */

.pricing-card__price {
  text-align: center;
}

/* List items */

.pricing-card__list-item {
  margin-top: 0;
}

/* List icons */

.pricing-card__list-icon {
  margin-right: 1rem;
}

/* Overlay */

.pricing-card__overlay-background {
  position: fixed;

  /* One less than the overlay z-index value */
  z-index: 999999;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, 0.2);
  inset: 0;
  opacity: 0;
  transition: opacity 500ms ease 0s, visibility 500ms ease 0s;
  visibility: hidden;
}

.pricing-card__overlay-background.open {
  opacity: 1;
  visibility: visible;
}

/* Overlay */

html.pricing-card__payments--overlay-open {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing-card__overlay {
  position: fixed;

  /* Well below the maximum value, but high enough to cover most cases */
  z-index: 1000000;
  top: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  height: calc(100% - 50px);
  width: 100vw;
  background-color: #fff;
  transform: translateY(0);
  transition: transform 500ms ease 0s, visibility 500ms ease 0s;
  visibility: hidden;
}

.pricing-card__overlay.open {
  transform: translateY(-100%);
  transition: transform 500ms ease 0s, visibility 500ms ease 0s;
  visibility: visible;
}

button.pricing-card__overlay-close--top {
  position: absolute;
  top: -40px;
  right: 16px;
  display: flex;
  height: 30px;
  width: 30px;
  padding: 5px;
  border: none;
  border-radius: 50%;
  align-items: center;
  background: #fff;
  outline-color: #33475b;
}

button.pricing-card__overlay-close--top svg {
  fill: #7c98b6;
}

button.pricing-card__overlay-close--top:hover svg,
button.pricing-card__overlay-close--top:focus svg {
  fill: #33475b;
}

@media screen and (min-width: 768px) {
  button.pricing-card__overlay-close--top {
    top: 16px;
    right: 16px;
    background: transparent;
  }
}

button.pricing-card__overlay-close--bottom {
  position: absolute;
  top: initial;
  right: 16px;
  bottom: 16px;
  padding: 5px;
  border: none;
  background: none;
  color: #33475b;
  font-size: 14px;
  font-weight: normal;
  opacity: 0;
  outline-color: #33475b;
}

button.pricing-card__overlay-close--bottom:focus {
  opacity: 1;
}

.pricing-card__overlay .payments-iframe-container {
  height: 100%;
  width: 100%;
}

.pricing-card__overlay .payments-iframe-container iframe {
  height: 100% !important; /* stylelint-disable-line declaration-no-important */
}