/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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

/* CSS variables */

:root {
  --column-gap: 2.13%;
}

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

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

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

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

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

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 {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  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: 1.4rem;
}

/* Labels */

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

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

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

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

/* Header container */

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

.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;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

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

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

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 0.7rem;
}

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

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

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

@font-face {
    font-family: 'Circular Std Book';
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Book.eot');
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Book.eot?#iefix') format('embedded-opentype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Book.woff2') format('woff2'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Book.woff') format('woff'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Book.ttf') format('truetype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Book.svg#CircularStd-Book') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std';
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Medium.eot');
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Medium.eot?#iefix') format('embedded-opentype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Medium.woff2') format('woff2'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Medium.woff') format('woff'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Medium.ttf') format('truetype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Medium.svg#CircularStd-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std Book';
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BookItalic.eot');
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BookItalic.eot?#iefix') format('embedded-opentype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BookItalic.woff2') format('woff2'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BookItalic.woff') format('woff'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BookItalic.ttf') format('truetype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BookItalic.svg#CircularStd-BookItalic') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std';
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-MediumItalic.eot');
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-MediumItalic.eot?#iefix') format('embedded-opentype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-MediumItalic.woff2') format('woff2'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-MediumItalic.woff') format('woff'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-MediumItalic.ttf') format('truetype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-MediumItalic.svg#CircularStd-MediumItalic') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std';
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Black.eot');
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Black.eot?#iefix') format('embedded-opentype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Black.woff2') format('woff2'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Black.woff') format('woff'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Black.ttf') format('truetype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Black.svg#CircularStd-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std';
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BlackItalic.eot');
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BlackItalic.eot?#iefix') format('embedded-opentype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BlackItalic.woff2') format('woff2'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BlackItalic.woff') format('woff'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BlackItalic.ttf') format('truetype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BlackItalic.svg#CircularStd-BlackItalic') format('svg');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std';
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Bold.eot');
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Bold.eot?#iefix') format('embedded-opentype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Bold.woff2') format('woff2'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Bold.woff') format('woff'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Bold.ttf') format('truetype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-Bold.svg#CircularStd-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std';
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BoldItalic.eot');
    src: url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BoldItalic.woff2') format('woff2'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BoldItalic.woff') format('woff'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BoldItalic.ttf') format('truetype'),
        url('https://betterbunch.com/hubfs/6M%20-%20Assets/Fonts/CircularStd-BoldItalic.svg#CircularStd-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}



*{margin:0;padding:0;border:0;outline:0;font-size:100%;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box}
html{-webkit-text-size-adjust:none}
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{ display:block }
audio,canvas,video{ display:inline-block }
audio:not([controls]){ display:none; height:0 }
pre{ white-space:pre; white-space:pre-wrap; word-wrap:break-word }
q{ quotes:none }
q:before,q:after{ content:''; content:none }
small{ font-size:85% }
sub,sup{ font-size:75%; line-height:0; position:relative; vertical-align:baseline }
sup{ top:-0.5em } 
sub{ bottom:-0.55em } 
:focus{ outline:0 } 
*:before,*:after{ box-sizing:border-box } 
embed,img,object,svg{ max-width:100%; height:auto } 
iframe{ max-width:100% } 
.header-container-wrapper ul,.footer-container-wrapper ul,.header-container-wrapper ol,.footer-container-wrapper ol{ list-style:none; list-style-image:none } 
.row-fluid [class*="span"]{ min-height:0px !important } 
table{ border-collapse:separate; border-spacing:0 }
caption,th,td{ text-align:left }
blockquote:before,blockquote:after,q:before,q:after{ content:"" } 
blockquote,q{ quotes:"" "" } 
table{ border:0 none; border-collapse:collapse; border-spacing:0 } 
td{ vertical-align:top } 
.cf:before,.cf:after{ content:""; display:table } 
.cf:after{ clear:both } 
::selection{ background:#00acbb; color:#fff } 
::-moz-selection{ background:#00acbb; color:#fff } 

/* Body */
body{ overflow-x:hidden; font-family: 'Circular Std' !important; font-weight:500; -webkit-font-smoothing:antialiased; -webkit-text-size-adjust:none; -webkit-tap-highlight-color:rgba(0,0,0,0); -moz-osx-font-smoothing:grayscale; -webkit-tap-highlight-color:transparent } 
body:not(.custom-background-image)::before,body:not(.custom-background-image)::after{ display:none !important } 
img{ border:0 none; max-width:100%; vertical-align:middle; height:auto }
a{ outline:0; cursor:pointer; transition:color .5s ease; text-decoration:none; color:inherit } 
svg path{ transition:fill .5s ease,stroke .5s ease } 
svg{ vertical-align:middle } 
a:focus{ outline:0; text-decoration:none } 

h1,.h1 {  line-height: 1.2; margin-bottom: 22px;  font-family: 'Circular Std'; }
h2,.h2{  line-height:1.2; margin-bottom:20px;  font-family: 'Circular Std'; } 
.white h2,.white .h2,.white h3,.white .h3{color: inherit;}
h3,.h3 {  line-height:1.2; margin-bottom:20px; font-family: 'Circular Std'; } 
h4,.h4 {  line-height:1.2; margin-bottom:20px; font-family: 'Circular Std';  } 
h5,.h5 { margin-bottom: 20px; line-height:1.5; font-family: 'Circular Std'; }
h6,.h6 { margin-bottom: 20px; line-height:1.5;  font-family: 'Circular Std';}

.pr { position:relative; }
.bold { font-weight:700; }
.lightgray{ color:#8F8F8F; }
.font12{ font-size:12px; line-height:14px; font-weight:500; }
.font22{ font-size:22px; line-height:34px; font-weight:600; color:#6DAB3C; }
.tbl{ display:table; width:100%; height:100% } 
.tbl-cell{ display:table-cell; vertical-align:middle } 
.dis-flex{ display:flex; flex-wrap:wrap } 
.dis_flex{ display:flex; flex-wrap:wrap }
.flex-box{ display:flex; flex-wrap:wrap }
.vmiddle{ align-items:center } 
.vtop{align-items: flex-start;}
.vbottom{ align-items:flex-end } 
.hend{ justify-content: flex-end; }
.hcenter{ justify-content:center } 
.hbetween{justify-content: space-between;}
.hright{ justify-content:right } 
.tc{ text-align:center } 
.tr{ text-align:right } 
.tl{ text-align:left }
.container,.row-fluid .span12.container{ max-width:1280px; width:100%; margin-left:auto !important; margin-right:auto !important; float:none; padding-left:20px; padding-right:20px } 
.dis-flex>.row-fluid-wrapper>.row-fluid:before,.dis-flex>.row-fluid-wrapper>.row-fluid:after{ display:none } 
.cp{ padding:100px 0 }
.clear{ clear:both } 
.overlay{ position:relative; z-index:1 } 
.overlay:before{ position:absolute; content:""; height:100%; width:100%; top:0; left:0; background-color:rgba(31,31,41,0.78); z-index:-1 } 
.overlayblack{ position:relative; z-index:1 } 
.overlayblack:before{ position:absolute; content:""; height:100%; width:100%; top:0; left:0; background-color:rgba(0,0,0,0.78); z-index:-1 } 
.greencolor,h3.greencolor,h2.greencolor { color: #6DAB3C;}
.bgt_img{ background-size:cover !important; background-repeat:no-repeat !important; background-position:center center !important;  }

.common-cta{ margin-top:40px } 
.common-cta a, a.cta_button, .cta_button { border-radius:60px; min-width: 220px; position: relative; box-sizing: border-box !important; background: #262024; text-align: center; font-weight: 500; padding: 15px 20px; display: inline-block; color: #fff; border: 1px solid #262024; font-size: 16px; line-height: 1.4; transition: color .5s ease,background .5s ease,border .5s ease; }
.common-cta a:hover,a.cta_button:hover,.cta_button:hover{ background-color:transparent; color:#262024;} 

.common-cta2{ margin-top:40px } 
.common-cta2 a { border-radius:60px; min-width: 166px; position: relative; box-sizing: border-box !important; background: #262024; text-align: center; font-weight: 500; padding: 15px 20px; display: inline-block; color: #fff; border: 1px solid #262024; font-size: 16px; line-height: 1.4; transition: color .5s ease,background .5s ease,border .5s ease; }
.common-cta2 a:hover { background-color:transparent; color:#262024;} 


.detail-content>*:last-child{ margin-bottom:0 !important } 
.detail-content ul,.detail-content ol{ padding-left:20px; margin-bottom:20px }
.detail-content.tc ul,.detail-content.tc ol,.tc .detail-content ul,.tc .detail-content ol{ text-align:left } 
.detail-content p{ margin-bottom:20px;}
.detail-content li:not(:last-child){ margin-bottom:10px } 
.detail-content a:not(.cta_button){ color:#017EFA; } 
.detail-content a:not(.cta_button):hover{ text-decoration:underline; }
.detail-content li::marker{ color:#017EFA; } 
.detail-content ul ul{ margin-top:20px } 
strong{ font-weight:700 } 
.rtp{ padding-top:0 !important } 
.rbp{ padding-bottom:0 !important } 
.white{ color:#fff } 
.pt60{ padding-top:60px; }
.pb30{ padding-bottom:30px; }
.pt30{ padding-top:30px; }
.titleline { position:relative; } 
.titleline:before{ content:''; display: block; background: #FEB100; border-radius: 66px; width:140px; height:6px; margin-bottom:20px; }

.titleline2 { position:relative; } 
.titleline2:before{ content:''; display: block; background: #FEB100; border-radius: 66px; width:140px; height:6px; margin:0 auto 20px; }


.liststyle2 ul { margin:25px 0; padding:0; list-style:none; }
.liststyle2 li { padding-left:30px; position:relative; margin-bottom:18px; color:#262024; }
.liststyle2 li:last-child { margin-bottom:0; }
.liststyle2 li:before{ content:''; background:url(https://betterbunch.com/hubfs/6M%20-%20Assets/check-1.png); background-size:cover; background-repeat:no-repeat; position:absolute; top:5px; left:0; width:18px; height:18px; }


/* Form */
input::-webkit-input-placeholder{ color:#747474;  font-size:16px; line-height:16px; } 
input:-moz-placeholder{ color:#747474; font-size:16px; line-height:16px; } 
input::-moz-placeholder{ color:#747474;  font-size:16px; line-height:16px; } 
input:-ms-input-placeholder{ color:#747474;  font-size:16px; line-height:16px; } 
textarea::-webkit-input-placeholder{ color:#747474;  font-size:16px; line-height:16px; } 
textarea:-moz-placeholder{ color:#747474;  font-size:16px; line-height:16px; } 
textarea::-moz-placeholder{ color:#747474;  font-size:16px; line-height:16px; } 
textarea:-ms-input-placeholder{ color:#747474;  font-size:16px; line-height:16px;  }
select::-ms-expand{ display:none } 
input::-ms-clear{ display:none } 
input:-webkit-autofill,textarea:-webkit-autofill,select:-webkit-autofill{ -webkit-box-shadow:0 0 0 100px #eaeaea inset; -moz-box-shadow:0 0 0 100px #eaeaea inset; box-shadow:0 0 0 100px #eaeaea inset; color:#6f7c7c; -webkit-text-fill-color:#6f7c7c } 
input,textarea,select{ border-radius:0 }
button,html input[type="button"],input[type="reset"],input[type="submit"],textarea{ -webkit-appearance:none; border-radius:0; transition:color .5s ease }
button,input,select,textarea,option{ font-size:100%; margin:0; vertical-align:baseline; font-family:inherit; } 
input[type="text"],input[type="tel"],input[type="email"]{ -webkit-appearance:none !important } 
input[type="submit"]{ cursor:pointer; transition:color .5s ease }
textarea{ overflow:auto; vertical-align:top; resize:none; height:65px } 
form ul{ list-style:none; padding:0; margin:0 } 
form div.hs-form-field .input>ul>li>label{ cursor:pointer }
form ul.hs-error-msgs{ color:red; } 
form .legal-consent-container .hs-error-msgs{ position:relative; top:-20px } 
form .hs-form-required{ display: inline; color: #5D698D; position: relative; right:0; }
form .hs_error_rollup{ display:none } 
.submitted-message{ text-align:center; font-weight:700; } 
.legal-consent-container .hs-error-msgs label{ color:red !important } 
form fieldset { max-width: 100% !important; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; }
form div.hs-form-field{ float:none !important; width:100% !important; margin-bottom:20px } 
form fieldset.form-columns-2>div.hs-form-field{width:47% !important } 
form fieldset.form-columns-3>div.hs-form-field{width:31% !important } 
form .input{ margin-right:0 !important }
form .hs-form-field>label{ width:100%; pointer-events:none; display:block; color: #5D698D;font-size: 14px; font-weight:400; margin-bottom:3px; text-transform:inherit; } 
form textarea,select.filter-select,form input[type="text"],form input[type="password"],form input[type="datetime"],form input[type="datetime-local"],form input[type="date"],form input[type="month"],form input[type="time"],form input[type="week"],form input[type="number"],form input[type="email"],form input[type="url"],form input[type="search"],form input[type="tel"],form input[type="color"],form select{ color:#262024 !important; font-size:16px; border: 1px solid #F8FAFC !important; padding:18px 24px; width:100% !important; margin:0 0 3px; background-color:#F8FAFC !important; border-radius:40px !important; font-weight:500; } 
form select,select.filter-select{ -moz-appearance:none; -webkit-appearance:none; cursor:pointer; background-image:url('https://betterbunch.com/hubfs/6M%20-%20Assets/Vector%20down.png'); background-position:right 15px center; background-repeat:no-repeat; background-size:9px auto; padding-right:50px }
form .input ul.inputs-list li label input[type="radio"]:checked+span:before{ box-shadow:0 0 0 8px #6f7c7c inset; border:2px solid #6f7c7c } 
form .input ul.inputs-list li label input[type="radio"]{ opacity:0; display:none !important } 
form .input ul.inputs-list li label input[type="radio"]+span:before{ position:absolute; content:''; left:0; top:0; width:38px; height:38px; text-align:center; border:2px solid #9f9f9b; border-radius:50% } 
form .input ul.inputs-list li label input[type="radio"]+span{ position:relative; display:flex; padding-left:64px; min-height:38px; align-items:center } 

form .input ul.inputs-list li label input[type="checkbox"]:checked+span:before{ background-image:url('https://betterbunch.com/hubfs/6M%20-%20Assets/Tick.png'); background-size:75%; background-position:center center; background-repeat:no-repeat } 
form .input ul.inputs-list li label input[type="checkbox"]{ opacity:0; display:none !important } 
form .input ul.inputs-list li label input[type="checkbox"]+span:before{ position:absolute; content:''; left:0; top:-5px; width:30px; height:30px; text-align:center; border:2px solid #C6D0EE; background:#F8F9FF; border-radius:4px; }
form .input ul.inputs-list li label input[type="checkbox"]+span{ position:relative; padding-left:45px; min-height:30px; align-items:center; font-size: 14px; color:#5E6A8E; } 

form .actions{ text-align:right } 
form .hs-submit{ margin-top:34px } 
form .hs_submit input { text-align: center; display: inline-block; color: #fff; border:1px solid #262024; transition: color .5s ease,background .5s ease,border .5s ease,opacity .5s ease; padding:12px 30px; min-width:133px; font-weight: 500; font-size: 16px; background: #262024; border-radius:60px; }
form .hs_submit input:hover{ background: transparent;  color:#262024;  } 
form div.hs-form-field .input>ul>li{ margin:0 0 16px }
form .legal-consent-container .hs-form-booleancheckbox-display>span{ margin-left:0 }
form .legal-consent-container .field.hs-form-field{ margin-bottom:0 } 
form .legal-consent-container a{ font-weight:700 } 
form .legal-consent-container a:hover{ color:#005589 } 
form ul.hs-error-msgs li { padding-top: 3px; position:relative; padding-left:24px; color: #CC2D2D; font-weight: 500; font-size: 12px; margin-top:0 !important; }
/* form ul.hs-error-msgs li:before { content:''; background:url(https://engage.reviewyou.co.nz/hubfs/6M%20-%20Assets/Vector%2022.png); background-repeat:no-repeat; background-position:center center; height:18px; width:18px; position: absolute; left: 0; top: 3px;  } */
form .hs-input.error{ background: rgba(204, 45, 45, 0.1); border-color:#E96166 !important; }
form ul li label.hs-error-msg { margin-top:0; color:#E96166; font-size: 12px; }
form .hs-phone .input > .hs-input { width: 100% !important; display: flex; flex-wrap: wrap; }
form .hs-phone .hs-input select { width: 33.5% !important; padding-right: 30px; }
form .hs-phone .hs-input input.hs-input { width: 63.5% !important; margin-left: 3%; }

/* Header Global Module */

.small-header .wrapper-header { box-shadow: 0px 10px 25px rgba(0, 32, 56, 0.15); background:#fff; }
.wrapper-header{ position:fixed; width:100%; z-index:99; left:0; top:0; background:transparent; padding:20px 0; color: #081D60; font-weight: 700; font-size: 13px; } 
.wrapper-header a{ display:inline-block;  font-weight:500; }
.wrapper-header .logo{ width:168px; } 
.wrapper-header .header-flex { justify-content: space-between; }
.wrapper-header .menu .hs-menu-depth-1 { padding:12px 20px; position: relative; }
.wrapper-header li.active > a,.wrapper-header li.active-branch > a{ color:#017efa;  } 
.wrapper-header a.cta_button { min-width: 210px; padding: 13px 20px; }
.wrapper-header .menu .hs-menu-depth-1 > a { font-size: 16px; color:#262024; font-family: 'Circular Std'; font-weight:500; }
.wrapper-header .menu .hs-menu-depth-2 > a { text-transform: capitalize; }
.wrapper-header .menu .hs-menu-depth-2 > a br{ display:none; }
.header-cta.header-cta2 { display:none; }
.header-cta a { color:#fff; background:#262024; border:1px solid #262024; font-size:16px; font-weight:500; border-radius:60px; padding:15px 40px; display:inline-block; }
.header-cta a:hover { background-color:transparent;  color:#262024;} 

/* footer Global Module */
.topborder { border-top: 1px solid #f1ebe0; padding-top: 100px; border-bottom: 1px solid #f1ebe0; padding-bottom: 100px; }
.left-footer { width:29%; }  
.right-footer { width:71%; padding-left:160px; }  
.footer-menu  ul li a{ color: #747474;font-weight: 500; font-size: 16px; display:inline-block; padding-top:24px; }  
.footer-menu  ul li a:hover { color:#FEB100; }
.footerlabel { color: #262024;font-weight: 500; font-size: 18px; margin-bottom:14px; }
.subscribe-form { margin-top:40px; }
.subscribe-form form{position:relative;  }
.subscribe-form form .hs-submit { margin-top:0; position:absolute; top:6px; right:8px; }
.left-footer .detail-content { padding-top:20px; }
.footer-bottom { padding-top:38px;  padding-bottom:32px; }
.copy-left { color: #747474; font-size: 16px;  }
.copy-left span { color: #262024; font-size: 16px;  }
.social_icon ul { list-style:none; margin:0; padding:0; }
.social_icon ul li a { margin-right:16px; justify-content: center; background: #F5F1E9; border-radius: 60px; display:flex; align-items:center; height:36px; width:36px; }
.social_icon ul li a:hover { opacity:0.7; }  
.social_icon ul li:last-child a { margin-right:0; }

.footer-section2 { padding:62px 0;  border-top: 1px solid #f1ebe0; }
.footer-section2 .right-footer { font-size: 16px; color: #747474; text-align: right; }
.footer-section2 .right-footer span { color:#262024; }



@media(min-width:992px){ 
  .wrapper-header .menu{ position:relative } 
  .wrapper-header .menu ul>li.hs-menu-depth-1>a:hover,.wrapper-header .menu ul>li.hs-menu-depth-1.hs-item-has-children:hover>a,.wrapper-header .hs-menu-depth-2 a:hover{ color:#FEB100; } 
  .wrapper-header .menu{ display:block !important } 
  .wrapper-header .mobile-trigger{ display:none !important } 
  .wrapper-header .menu .hs-menu-depth-1>ul.hs-menu-children-wrapper li a { color:#262024; font-weight:500; font-family: Circular Std; }
/*   .wrapper-header .menu .hs-menu-depth-1>ul.hs-menu-children-wrapper li a:hover { background: #F5F1E9; } */
  .wrapper-header .menu .hs-menu-depth-1>ul.hs-menu-children-wrapper { position: absolute;padding:15px 0; white-space: nowrap; background: #fff;font-weight: 500; visibility: hidden; top: 100%; min-width: 165px; left: 0; transform: translate(0,-20px); transition: transform .5s ease; box-shadow: 0 7px 19px 5px rgb(50 50 50 / 4%); border-radius: 12px; }
  .wrapper-header .menu .hs-menu-depth-2 > a { display: block; padding: 8px 15px; }
  .wrapper-header .menu .hs-menu-depth-1:hover > ul.hs-menu-children-wrapper{ visibility:visible;transform: translate(0px,0px); } 
  .wrapper-header .menu .hs-menu-wrapper > ul{ display:flex; flex-wrap:wrap; justify-content:center } 
  .wrapper-header .hs-menu-children-wrapper{ display:block !important }
  .wrapper-header .child-trigger{ position: absolute; top: 50%; right: 0; width: 8px; transform: translate(-3px, -50%); }
  .wrapper-header .menu .hs-menu-depth-2:not(:last-child) { margin-bottom: 10px; }
  .wrapper-header .menu .header-cta { display: none; }
  .wrapper-header .logo{ position: relative;  } 
  
  .wrapper-header .menu .hs-menu-depth-3:not(:last-child) { margin-bottom:10px; }
  .wrapper-header .menu .hs-menu-depth-3 > a { font-weight: 700; text-transform: capitalize; }
  .wrapper-header .menu .hs-menu-depth-2 .child-trigger { right: 10px; }
  .wrapper-header .menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children { position:relative; }
  .wrapper-header .menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper { left: 100%; top: 0; position: absolute; margin-top: 0; padding: 15px; background: #fff; border-top: 2px solid #017efa; box-shadow: 0 10px 35px 5px rgb(50 50 50 / 15%); min-width: 165px; }
  .wrapper-header .menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper { visibility: hidden; opacity: 0;}
  .wrapper-header .menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children:hover ul.hs-menu-children-wrapper { visibility: visible; opacity: 1; }
  
  
}

@media(min-width:1920px){
  .wrapper-header { padding:35px 0; }
}

@media(max-width:1440px){
      .h1, h1 { font-size: 45px !important; }
}

@media(max-width:1170px){
  .wrapper-header a.cta_button { min-width: auto; }
  .wrapper-header .menu .hs-menu-depth-1 { padding: 12px;}
}



@media(max-width:1024px){
  h1, .h1 { font-size: 35px !important; }
  h2,.h2{ font-size:28px !important;} 
  .common-cta a, a.cta_button { min-width:210px;padding: 15px 20px;}
  .common-cta a.large,a.cta_button.large{  min-width: 210px; } 
  .right-footer { width:60%; padding-left: 50px; }
  .left-footer { width: 40%; }

}



@media(max-width:991px){
/*   .body-container-wrapper{ margin-top:53px; }  */
  .wrapper-header .header-cta:not(.menu .header-cta2) { display: none; }
  .wrapper-header .mobile-trigger{cursor:pointer;position:relative;width:25px;padding:8px 0px;}
  .wrapper-header .mobile-trigger .line{display:block;background:#294550;width:100%;height:2px;position:absolute;left:0;border-radius:4px}
  .wrapper-header .mobile-trigger .line.line-3{top:100%}
  .wrapper-header .mobile-trigger.active-re .line-3{transform:rotate(-45deg)}
  .wrapper-header .mobile-trigger.active-re .line.line-3{top:50%}
  .wrapper-header .mobile-trigger .line.line-2{top:50%}
  .wrapper-header .mobile-trigger.active-re .line-2{opacity:0}
  .wrapper-header .mobile-trigger .line.line-1{top:0}
  .wrapper-header .mobile-trigger.active-re .line-1{top:50%}
  .wrapper-header .mobile-trigger.active-re .line-1{transform:rotate(45deg)}
  .wrapper-header .menu { display:none; position: absolute; background: #F8F9FF; width: 100%; top: 100%; left: 0; color: #081D60; height: 100vh; padding-bottom: 120px; padding-top: 35px; text-align: center; border-top: 1px solid #fff;overflow-y: auto; }
  .wrapper-header .menu .hs-menu-depth-1 { padding: 10px 20px; position: relative; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; }
  .wrapper-header .child-trigger { cursor: pointer; margin-left: 15px; margin-right: -30px; }
  .wrapper-header .child-trigger img { width: 13px; transition: transform .5s ease; }
  .wrapper-header .child-trigger.child-open img { transform: rotate( -180deg ); }
  .wrapper-header ul.hs-menu-children-wrapper { width: 100%; padding-bottom: 0; display:none;  }
  .wrapper-header .hs-menu-depth-2 { margin-top: 15px; align-items: center; display: flex; flex-wrap: wrap; justify-content: center; } 
  .wrapper-header .hs-menu-depth-3 { margin-top: 15px;}
  .wrapper-header .menu .header-cta { margin-top:25px; }
  .wrapper-header{ padding:15px 0; background:#fff; }
  .wrapper-header .container > .dis-flex { justify-content: space-between; }
  .header-cta.header-cta2 { display:block; }
}

@media(max-width:900px){
  .right-footer { width:100%; padding-left:0; margin-top:30px; }
  .left-footer { width: 100%; }
}

@media(max-width:900px){
  .footer-section2 .right-footer { width:100%; text-align: center; padding-left:0; margin-top:30px; }
  .footer-section2 .left-footer { width: 100%; text-align: center; }
}

@media(max-width:767px){
  .common-cta a, a.cta_button, .cta_button { font-size:16px; }
  body{ font-size:16px; line-height:1.5;}
  .w100{ width:100%; }
  .mb50{ margin-bottom:50px;}
  h1,.h1{ font-size:30px; } 
  h2,.h2{ font-size:25px; line-height: 1.4; margin-bottom: 25px;} 
  h3,.h3{ font-size:20px; } 
  form .input ul.inputs-list li label input[type="checkbox"]+span:before { top:0; width:20px; height:20px; }
  form .input ul.inputs-list li label input[type="checkbox"]+span { min-height:20px; padding-left: 34px; }
/*   form textarea, select.filter-select, form input[type="text"], form input[type="password"], form input[type="datetime"], form input[type="datetime-local"], form input[type="date"], form input[type="month"], form input[type="time"], form input[type="week"], form input[type="number"], form input[type="email"], form input[type="url"], form input[type="search"], form input[type="tel"], form input[type="color"], form select { padding:10px 15px; } */
  form fieldset.form-columns-2>div.hs-form-field,form fieldset.form-columns-3>div.hs-form-field{ width:100% !important } 
  .container,.row-fluid .span12.container{ padding-left:20px; padding-right:20px } 
  .common-cta a, a.cta_button { min-width: 175px; }
  .liststyle2 li { font-size:18px; }
  .topborder { padding-top:60px; padding-bottom:60px; }
  .footer-menu ul li a { padding-top:15px; }
  .footer-menu { width: 50%; margin-bottom: 30px; }
  .footerlabel{ margin-bottom:0; }
  .copy-left { width:100%; text-align:center; }
  .social_icon { width:100%; padding-top:20px; text-align:center; }
  .social_icon ul { justify-content: center; }
}

@media(max-width:576px){
  .footer-menu { width:100%; }
  .footer-menu:last-child { margin-bottom:0; }    
}
/* Hero Module */
.main-hero { padding:192px 0 144px; }
.left-hero { width:60%; }
.left-hero .detail-content { max-width:475px; }
.right-hero { width:40%; }
.right-hero img { max-width:761px; }

/* Two Column Alternate Module */
.two-col-alternate { padding:100px 0; }
.alternate-items { margin-bottom:100px; }
.alternate-items:last-child { margin-bottom:0; } 
.alternate-items.change_image_position .col-left { order:2; padding-right:0; padding-left:100px;}
.col-left { width:50%; padding-right:100px; }
.col-right { width:50%; }
.col-right img{ border-radius: 28px; }
.howworks-module { padding:200px 0; }

/* Three Column Slider Module */
.proof-slider { padding:174px 0 100px; }
.proof-slider h2 { max-width:327px; margin-bottom:0; }
.slider-items { position:relative; margin:14px; padding:40px; box-shadow: 0 17px 17px rgb(0 0 0 / 1%); border-radius: 28px; background:#fff; }  
.proofdetail p{ color: #262024 }
.person_name { color: #262024; font-size:18px; font-weight:500; }
.role_company_name { color: #747474; font-weight:500; font-size: 14px; }
.proofdetail { margin-bottom:40px; }

/* Two Column Book Demo Module */
.demopic { height:414px; width:100%; display:inline-block; }
.left-demo { width:40%; } 
.right-demo { width:60%; padding-left:132px; color:#fff; }
.right-demo h2 { color:#fff; }
.shape_image_1 { position: absolute; top: 0; right: 0; width: 102px; z-index: 1;} 
.shape_image_2 { position: absolute; bottom: 0; left: 0; width: 102px; z-index: 1; } 
.parentdemo .dis-flex { position:relative; z-index:2; }
.parentdemo { overflow: hidden; position: relative; border-radius: 48px; padding:70px; }
.bookdemo { margin-bottom:100px; }
.remove_space_outer_from_bottom_.bookdemo { margin-bottom:0; }

/* TwoColumn Book Demo Form Module */
.two-col-demo { padding:241px 0 200px; }
.bookdemo-left { width:67%; padding-right:72px; }
.bookdemo-left .detail-content { max-width:475px; }
.bookdemo-right { width:33%; }
.bookdemo-right form label:not(.hs-error-msg) { position:absolute; top:18px; left: 24px; font-size: 16px; }
.bookdemo-right form .hs-form-field.focused label:not(.hs-error-msg) { transform: translateY(-66%);  font-size: 12px; }
.bookdemo-right form .hs-form-field { position:relative; }  
.bookdemo-right form .hs-form-field .hs-input {padding: 28px 24px 9px;}
.bookdemo-right form .hs_submit input { width:100%; min-width:100%; padding: 18px 30px; }

/* Error 404 module */
.error-section { padding:150px 0 70px; }

/* prefrencepage */
.prefrencepage { padding:150px 0 70px; }
.prefrencepage h1,.prefrencepage h2{ color:#262024 }
.prefrencepage .page-header { color: #747474; }
.prefrencepage h2 { font-size:16px; }
.prefrencepage .item .item-inner { background:#f9f6f1 !important; padding:15px; }
.prefrencepage .email-prefs { margin-top:20px; }
.prefrencepage .email-prefs .item { margin-bottom:20px; }
.prefrencepage form input[type="checkbox"]:checked {background: #FEB100 url('https://engage.reviewyou.co.nz/hubfs/6M%20-%20Assets/Tick.png');background-size: 14px; background-position: center center;background-repeat:no-repeat;}
.prefrencepage form input[type="checkbox"] {  margin-top:0;content: ''; background: #fff; display: inline-block;vertical-align: middle; width: 24px;height: 24px; padding: 2px; margin-right: 15px; text-align: center; border: 1px solid #262024; }
.prefrencepage .email-prefs .item p { margin: 5px 20px 0px 44px; }
.prefrencepage form input[type="submit"]{  border-radius: 60px; position: relative; box-sizing: border-box !important; background: #262024; text-align: center; font-weight: 500 !important; padding: 15px 20px; min-width: 166px; display: inline-block; color: #fff; border: 1px solid #262024; font-size: 16px; line-height: 22px; transition: color .5s ease,background .5s ease,border .5s ease; }
.prefrencepage form input[type="submit"]:hover { background-color: transparent; color: #262024; }
.backup_unsubscribe { max-width:600px; }

/* search page */
.searchpage { padding-top:100px; padding-bottom:60px; }
.searchpage .systems-page { padding-left:0; }  
.searchpage .systems-page h1 { margin-bottom:0; }

/* Two Column Slider Module */
.slider-items2.slick-slide img { display:inline-block; }    
.slider-items2 { padding: 0 20px; }
.s-right { width: 50%; text-align:center; }
.s-left { width: 50%; padding-right:53px; }
.parson-pc { width:60px; height:60px; border-radius:100%; }
.personnamedetails { width:calc(100% - 60px); padding-left:16px; }
.personnamedetails h5 { font-size:18px; margin-bottom:0 ; color: #262024; font-weight:500; }
.role_company_name { color: #747474; font-size: 14px; font-weight:400; }
.upperproff { padding:0 20px; margin-bottom:28px; }

/* How It works module */
.left-works { width:20%; }
.middle-works { width:60%; text-align: center; }  
.right-works { width:20%; }
.servicenumber { display: flex; margin:0 auto 10px; align-items: center; justify-content: center; background: #F5F1E9; height:34px; width:34px; border-radius:100%; font-weight: 500; font-size: 15px; }
.service_counter h4 { font-size:22px; margin-bottom:10px ; color: #262024; font-weight:700; line-height:28px; }
.detail-content  { font-size:16px; margin-bottom:0 ; color: #747474; font-weight:400; line-height:24px; }
.service_counter { margin-bottom: 90px; text-align: center; }
.service_counter:last-child { margin-bottom: 0; }
.middle-works img { display: block; margin:0 auto; position: relative; left: 50px; }

/* Two Column free book Module */
.two-col-demo2 { padding:151px 0 80px; }
.freeform { max-width:400px; position:relative; }
.arrowimg { position:absolute; top:0; right:-68%; max-width:208px; }
.two-col-demo2 .bookdemo-left { padding-right: 59px; width: 60%; }
.two-col-demo2 .bookdemo-right { width: 40%; }
.two-col-demo2 .detail-content {  margin-bottom:40px; max-width:100%; } 
.two-col-demo2 .detail-content p { line-height:30px; }
.two-col-demo2 .bookdemo-left form label:not(.hs-error-msg) { position:absolute; top:18px; left: 24px; font-size: 16px; }
.two-col-demo2 .bookdemo-left form .hs-form-field.focused label:not(.hs-error-msg) { transform: translateY(-66%);  font-size: 12px; }
.two-col-demo2 .bookdemo-left form .hs-form-field label:not(.hs-error-msg):has(~div.input>select) { transform: translateY(-66%);  font-size: 12px; }
.two-col-demo2 .bookdemo-left form .hs-form-field { position:relative; }  
.two-col-demo2 .bookdemo-left form .hs-form-field .hs-input {padding: 28px 24px 9px;}
.two-col-demo2 .bookdemo-left form .hs_submit input { width:100%; min-width:100%; padding: 18px 30px; }

.systems-page.pspage { max-width:596px; padding:220px 0 120px;  }
.pspage h1 { margin-bottom:20px; }  
.pspage p { margin-bottom:60px; font-weight: 400; line-height:30px; font-size: 20px;color: #747474; }
.pspage input.hs-button { width:100%; color: #FFFFFF; margin-top:0 !important; font-weight: 500; font-size: 16px; background: #262024; border-radius: 100px; min-width:100%; padding: 18px 30px; }

@media(min-width:1920px){
  .two-col-alternate { padding:200px 0; }
  .alternate-items { margin-bottom:150px; }
}

@media(max-width:1600px){
  .main-hero { padding:192px 0 100px; }
  .right-hero img { max-width:100%; }
  .left-hero { width:50%; }
  .right-hero { width:50%; }
}

@media(max-width:1440px){
  .left-hero h1{ max-width:416px; }
  .howworks-module { padding:100px 0; }
}  

@media(max-width:1260px){
  .bookdemo-left { padding-right:50px; width:60%; } 
  .bookdemo-right { width:40%; }
}

@media(max-width:1240px){
  .arrowimg { right:-47%; max-width: 120px; }
}

@media(max-width:1140px){
  .middle-works img {left: 0; }
}

@media(max-width:1058px){
  .arrowimg { right:-39%;  }
}


@media(max-width:991px){
  .slider-items2 .dis-flex { align-items: center; } 
  .arrowimg { display:none;  }
}

@media(max-width:900px){
  .left-works { width:100%; }
  .middle-works { width:100%; margin: 40px 0; }
  .right-works { width: 100%; } 
  .service_counter { margin-bottom:40px; }
}

@media(max-width:767px){
  .main-hero { padding-top:150px; padding-bottom:60px; }
  .left-hero, .right-hero { width:100%; }
  .left-hero .detail-content,.left-hero h1 { max-width:100%; }
  .left-hero { order:2; }
  .bookdemo-left { width:100%; padding-right:0; }
  .bookdemo-right { width:100%; }  
  .two-col-demo { padding: 150px 0 60px; }
  .bookdemo-left .detail-content { max-width:100%; }
  .bookdemo-right { padding-top: 20px; }
  .col-left { width:100%;  padding-right: 0; order:2; padding-top:30px; }
  .col-right { width:100%; }
  .alternate-items.change_image_position .col-left { padding-left:0; }
  .alternate-items { margin-bottom: 50px; }
  .proof-slider,.howworks-module,.two-col-alternate { padding:60px 0; }  
  .left-demo { width:100%; } 
  .right-demo { width:100%; padding-left:0; }
  .parentdemo { padding:30px;  }  
  .s-left { width:100%; order:2; margin-top: 30px; }
  .s-right { width:100%; }
  
  .two-col-demo2 .bookdemo-left { width:100%; padding-right:0; order:2; }
  .two-col-demo2 .bookdemo-right { width:100%; padding-bottom: 40px; }
  .freeform { max-width: 100%; }
  .systems-page.pspage { max-width:596px; padding:120px 0 60px;  }
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


.slick-next:before, .slick-prev:before { font-size:0; }
ul.slick-dots button { border: 0; background: #747474; border-radius: 100%; color: inherit; font-size: 0; font-weight: 700; cursor: pointer;padding: 6px; transition: color .5s ease,opacity .5s ease;}
ul.slick-dots button:hover{ opacity:1;}
.slick-dotted ul.slick-dots { display: flex !important; justify-content: center; align-items: center; list-style: none; margin-top: 30px; margin-bottom:0; }
ul.slick-dots li { line-height:0; }
ul.slick-dots li:not(:last-child) { padding-right: 12px; position: relative; }
/* ul.slick-dots li:not(:last-child):before { position: absolute; content: ""; width: 25px; height: 1px; background: #6FCFEB; right: 0; top: 50%; transform: translateY(-50%); opacity: 0.3; } */
ul.slick-dots li.slick-active button{ color: #262024; opacity: 1; background: #262024; }
.slick-arrow { position: absolute; top: 48%; transform: translateY(-48%); z-index: 1; cursor: pointer; }
.slick-prev.slick-arrow { left: -46px; }
.slick-next.slick-arrow { right: -46px; }

@media(max-width:1330px){
  .slick-prev.slick-arrow { left: -34px; } 
  .slick-next.slick-arrow { right: -34px; }
  .slick-arrow svg { height:35px; } 
}

@media(max-width:1279px){
  .slick-prev.slick-arrow { left: -10px; }
  .slick-next.slick-arrow { right: -10px; }
}

@media(max-width:767px){
   ul.slick-dots li:not(:last-child):before { width: 20px;}
  .slick-arrow { padding: 9px 15px; }
  .slick-arrow svg { height:17px; }
}