/* 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 */
  -webkit-text-decoration: underline dotted;
          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%;
  -webkit-transform: translateY(-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+)!important;
  background-position: center right 15px!important;
  background-repeat: no-repeat!important;
  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 */

 .new-add .header__language-switcher {
  cursor: pointer;
    padding-right: 0;
    width: 100px;
    margin-right: 16px;
}

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

.new-add .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;
 opacity: 0;
}

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

.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: 14px;
  padding: 0.40rem 0.8rem;
}

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

.new-add .header__language-switcher--label {
  display: flex;
  position: relative;
  align-items: center;
}

.new-add .header__language-switcher--label-current {
  color: var(--theme_menu_color_rs);
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.new-add .header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--theme_menu_color_rs);
  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--toggle{
    position:relative;
  }
  .header__navigation--toggle:before {
    content: "\f0c9";
    position: absolute;
    top: 0px;
    left: 0px;
    /* height: 20px; */
    /* width: 20px; */
    /* font-size: 28px !important; */
    color: var(--theme_menu_color_rs);
    font: normal normal normal 28px/1 FontAwesome;
}
    .header__close--toggle.show { 
       position:relative;
  }
  .header__close--toggle.show:after {
    position: absolute;
    top: 0px;
    left: 0px;
    content: "\f00d";
    font: normal normal normal 31px/1 FontAwesome;
    color: var(--theme_menu_color_rs);
    line-height: 21px;
}
  .new-add .menu__link {
    line-height: 40px!important;
}
/*   .new-add .menu__submenu .menu__item .menu__link {
    line-height: 40px !important;
  } */
 
 .no-button, .no-button:active, .no-button:focus, .no-button:hover {
   height: 52px;
    background: transparent;
  }
  
 
   .menu__submenu .menu__item .menu__link {
    line-height: 30px !important;
    height: 50px !important;
  }
  .new-add .hs-search-field{
    width: 100% !important;
  }
  .new-add .row-fluid {
   flex-wrap: nowrap;
    align-items: center;
  }
  .new-add{
    display: block !important;
  }
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .new-add .header__navigation.open,
  .new-add .header__search.open,
  .new-add .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
/*     min-height: calc(100vh - 115px); */
    position: absolute;
    right: 0;
    top: 85px;
    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,
  .new-add .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none !important;
    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;
  }

  .new-add .header__navigation--toggle {
/*     background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==); */
    background-size: cover;
    height: 25px;
    width: 25px;
    margin: auto;
  }
 .header__navigation--toggle.hide.open {
   display:none;
  }
  .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:none;
  height: 25px;
  width: 25px;
  cursor: pointer;
  position: relative;
  }
  .header__search--toggle:before {
    content: "";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 21px;
    height: 25px;
  width: 25px;
    position:absolute;
  } */
  .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;
  }

  .new-add .header__close--toggle.show {
    display: block;
    margin: auto;
  }
  .new-add .header--toggle.header__search--toggle.hide.open {
    display: none;
  }
.new-add .side_cntnt {
    display: flex !important;
    justify-content: end !important;
    padding: 0px 16px 20px;
}
.new-add .header__language-switcher {
    display: block;
    border: none;
    padding: 0px;
}
.new-add .header__language-switcher--toggle {
   display: none; 
  }
  .new-add .header__language-switcher .lang_list_class {
 min-width: 120px;
  }
  .new-add .hs-search-field .hs-search-field__input {
    border:none!important; 
  }
}


.header__search--toggle {
  position:relative;
}
.header__search--toggle:before {
    color: var(--theme_menu_color_rs);
    content: "\f002";
    font: normal normal normal 14px/1 FontAwesome;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 9;
    font-size: 24px;
    line-height: 0px;
  cursor: pointer;
}
.header__search {
      display: none;
    position: absolute;
    right: 0px;
    top: 96px;
    z-index: 5;
}
.header--toggle.header__search--toggle.hide.open {
  display: block;
}
.header__search.header--element.open {
  display: block;
  padding: 0px;
}
.new-add{
    display: flex;
    justify-content: center;
}
.new-add .side_cntnt{
    display: flex;
    justify-content: center;
    align-items: center;
  position: relative;
}
.hs-search-field__input {
  border:none;
}

.new-add .hs-search-field {
       background: #000000;
    padding: 0;
    width: 310px;
}
.new-add .hs-search-field .hs-search-field__input  {
   background: var(--theme_menu_color_rs);
    width: 100%;
    outline: none;
    border: 1px solid #000;
}
.new-add .hs-search-field  label {
  display:none;
}
.new-add .globe_class{
    position: relative;
}
.new-add .globe_class:before{
  position: absolute !important;
  color: var(--theme_menu_color_rs) !important;
  font: normal normal normal 14px/1 FontAwesome !important;
  content: "\f0ac" !important;
  font-size: 24px !important;
}
.new-add .lang_list_class li{
  background-color: var(--theme_l_translator_color_rs) !important;
}
.new-add-footer .hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul{
  gap: 20px;
}
.new-add-footer li a{
  color: var(--theme_f_menu_color_rs);
}
.new-add-footer .social-links__icon{
  background-color: transparent;
}
.new-add-footer .social-links__icon:hover{
  background-color: transparent;
}
.new-add-footer .social-links__icon svg{
  fill: var(--theme_f_menu_color_rs);
}

@media(max-width: 767px){
  .new-add-footer .social-links{
    justify-content: center !important;
    margin-top: 30px;
  }
}
/* form css */

.submitted-message  {
    text-align: center;
    font-size: 26px;
    color: #005e10; 
}

/* 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;
  }
}
@charset "UTF-8";
/*
! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com
*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */ /* 3 */
  tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", 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;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  -webkit-font-feature-settings: inherit;
          font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-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.
*/
::-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 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{
  -webkit-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{
  color: #6b7280;
  opacity: 1;
}
input::placeholder,textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}
::-webkit-date-and-time-value{
  min-height: 1.5em;
}
::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}
select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
[multiple],[size]:where(select:not([size="1"])){
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}
[type='checkbox'],[type='radio']{
  -webkit-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}
[type='checkbox']{
  border-radius: 0px;
}
[type='radio']{
  border-radius: 100%;
}
[type='checkbox']:focus,[type='radio']:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
[type='checkbox']:checked,[type='radio']:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
[type='checkbox']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
[type='radio']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='checkbox']:indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='file']{
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}
[type='file']:focus{
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
::-webkit-backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 320px){
  .container{
    max-width: 320px;
  }
}
@media (min-width: 480px){
  .container{
    max-width: 480px;
  }
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}
@media (min-width: 992px){
  .container{
    max-width: 992px;
  }
}
@media (min-width: 1230px){
  .container{
    max-width: 1230px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}
@media (min-width: 1920px){
  .container{
    max-width: 1920px;
  }
}
button,
  [type=button],
  .hs-button,
  .btn{
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border-radius: var(--hs-border-radius);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(var(--hs-primary-color) / var(--tw-border-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-decoration-line: none;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 250ms;
}
button:focus,
  [type=button]:focus,
  .hs-button:focus,
  .btn:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.block{
  display: block;
}
.flex{
  display: flex;
}
.contents{
  display: contents;
}
.transform{
  -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
          transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.flex-wrap{
  flex-wrap: wrap;
}
.border{
  border-width: 1px;
}
.p-0{
  padding: 0px;
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 250ms;
}
[x-cloak] {
  display: none !important;
}

/* Theme base styles */
/* Tools
Any animations, or functions used throughout the project.
Note: _macros 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.
*/
/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/
/* Responsive grid */
.row-fluid {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }
  .row-fluid [class*=span] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .row-fluid {
    width: 100%;
  }
  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
  }
  .row-fluid:after {
    clear: both;
  }
  .row-fluid [class*=span] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.762430939%;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  .row-fluid [class*=span]:first-child {
    margin-left: 0;
  }
  .row-fluid .span12 {
    width: 99.999999993%;
  }
  .row-fluid .span11 {
    width: 91.436464082%;
  }
  .row-fluid .span10 {
    width: 82.872928171%;
  }
  .row-fluid .span9 {
    width: 74.30939226%;
  }
  .row-fluid .span8 {
    width: 65.745856349%;
  }
  .row-fluid .span7 {
    width: 57.182320438%;
  }
  .row-fluid .span6 {
    width: 48.618784527%;
  }
  .row-fluid .span5 {
    width: 40.055248616%;
  }
  .row-fluid .span4 {
    width: 31.491712705%;
  }
  .row-fluid .span3 {
    width: 22.928176794%;
  }
  .row-fluid .span2 {
    width: 14.364640883%;
  }
  .row-fluid .span1 {
    width: 5.801104972%;
  }
}
@media (min-width: 1280px) {
  .row-fluid {
    width: 100%;
  }
  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
  }
  .row-fluid:after {
    clear: both;
  }
  .row-fluid [class*=span] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.564102564%;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  .row-fluid [class*=span]:first-child {
    margin-left: 0;
  }
  .row-fluid .span12 {
    width: 100%;
  }
  .row-fluid .span11 {
    width: 91.452991453%;
  }
  .row-fluid .span10 {
    width: 82.905982906%;
  }
  .row-fluid .span9 {
    width: 74.358974359%;
  }
  .row-fluid .span8 {
    width: 65.811965812%;
  }
  .row-fluid .span7 {
    width: 57.264957265%;
  }
  .row-fluid .span6 {
    width: 48.717948718%;
  }
  .row-fluid .span5 {
    width: 40.170940171%;
  }
  .row-fluid .span4 {
    width: 31.623931624%;
  }
  .row-fluid .span3 {
    width: 23.076923077%;
  }
  .row-fluid .span2 {
    width: 14.52991453%;
  }
  .row-fluid .span1 {
    width: 5.982905983%;
  }
}
/* Clearfix */
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}

/* Visibilty classes */
/* Responsive visibilty classes */
.visible-phone {
  display: none !important;
}

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

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

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }
  .hidden-phone {
    display: none !important;
  }
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }
  .hidden-tablet {
    display: none !important;
  }
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 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.)
*/
/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/
/* 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;
  }
}
body#app {
  -webkit-hyphens: auto;
          hyphens: auto;
}

html {
  scroll-behavior: smooth;
}

.quote-icon-image {
  width: 100px !important;
}

.location-wrapper > .location-details-1 > .location-name {
  color: #9f6720;
}

body{
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hs-headline-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: var(--hs-headline-font-weight);
  -webkit-hyphens: manual;
          hyphens: manual;
  font-style: var(--hs-headline-font-style);
  text-transform: var(--hs-headline-transform);
}

.font-headline {
  -webkit-hyphens: manual;
          hyphens: manual;
  font-style: var(--hs-headline-font-style);
  text-transform: var(--hs-headline-transform);
}

.font-subheadline {
  text-transform: var(--hs-subheadline-transform);
  font-style: var(--hs-subheadline-font-style);
}

h1{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  margin-top: 0px;
  font-size: 2em;
}

@media (min-width: 768px){
  h1{
    font-size: 3rem;
  }
}

h2{
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.25;
}

@media (min-width: 768px){
  h2{
    font-size: 2.25rem;
  }
}

h3{
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.25;
}
@media (min-width: 992px) {
  h3{
    font-size: 1.625rem;
  }
}

h4{
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
@media (min-width: 992px) {
  h4{
    font-size: 1.2em;
  }
}

h5{
  margin-bottom: 0.5rem;
}

p{
  margin-bottom: 1rem;
}

strong{
  font-weight: 700;
}

.content-wrapper,
.container,
.dnd-section > .row-fluid,
.system-container,
.header__container {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: var(--hs-container);
}

.container-large,
.container-small{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 320px){
  .container-large,
.container-small{
    max-width: 320px;
  }
}

@media (min-width: 480px){
  .container-large,
.container-small{
    max-width: 480px;
  }
}

@media (min-width: 640px){
  .container-large,
.container-small{
    max-width: 640px;
  }
}

@media (min-width: 768px){
  .container-large,
.container-small{
    max-width: 768px;
  }
}

@media (min-width: 992px){
  .container-large,
.container-small{
    max-width: 992px;
  }
}

@media (min-width: 1230px){
  .container-large,
.container-small{
    max-width: 1230px;
  }
}

@media (min-width: 1536px){
  .container-large,
.container-small{
    max-width: 1536px;
  }
}

@media (min-width: 1920px){
  .container-large,
.container-small{
    max-width: 1920px;
  }
}

.container-large,
.container-small {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: var(--hs-container);
}

.container-large {
  max-width: var(--hs-container-large) !important;
}

.container-small {
  max-width: var(--hs-container-small) !important;
}

span a{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 250ms;
}
span a svg{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
span a:hover{
  --tw-text-opacity: 1;
  color: rgb(var(--hs-primary-color) / var(--tw-text-opacity));
}

strong a,
.hs_cos_wrapper_type_rich_text a,
.accordion a{
  text-decoration-line: underline;
}
strong a:hover,
.hs_cos_wrapper_type_rich_text a:hover,
.accordion a:hover{
  text-decoration-line: none;
}

.hs_cos_wrapper_type_rich_text a,
.accordion a{
  --tw-text-opacity: 1;
  color: rgb(var(--hs-primary-color) / var(--tw-text-opacity));
}

p a:not(.lnk_tag) span{
  text-decoration-line: underline;
}
p a:not(.lnk_tag) span:hover{
  text-decoration-line: none;
}

ul[role=menu] li{
  margin-bottom: 0.5rem;
}

.hs_cos_wrapper_type_rich_text ul {
  list-style: disc;
  padding-left: 40px;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin: 1em 0;
}

.hs-menu-flow-horizontal ul[role=menu] {
  row-gap: 1rem;
  -webkit-column-gap: 0.5rem;
          column-gap: 0.5rem;
}
[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: initial;
          appearance: initial;
}

.service-link-rs a {
  text-align: left !important;
  display: inline-block !important;
  padding: 0.5rem 1rem;
  font-size: 1.05rem;
  border-radius: 0.25rem;
  border: 2px solid;
}

.property-details .icon-value-box {
  display: inline-flex !important;
  border: 2px solid green;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  margin-top: 1rem !important;
  margin-right: 0.5rem !important;
}

.property-details .icon-value-box > * {
  color: black !important;
  font-size: 1.05rem;
}

.property-details .icon-value-group {
  display: block !important;
}

button.MuiButton-root {
  background-color: green !important;
  padding: 0.5rem 1rem !important;
  align-self: flex-end !important;
}

button.MuiButton-root:hover,
button.MuiButton-root:focus,
button.MuiButton-root:active {
  background-color: rgba(0, 94, 16, 0.6431372549) !important;
}

@media (max-width: 767px) {
  .header-top-column-5-vertical-alignment .button.primary, header .widget-type-cell .header-top-column-5-padding {
    display: none !important;
  }
}
.new-add .side_cntnt {
  display: none !important;
}

div#app .widget-type-form{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 320px){
  div#app .widget-type-form{
    max-width: 320px;
  }
}

@media (min-width: 480px){
  div#app .widget-type-form{
    max-width: 480px;
  }
}

@media (min-width: 640px){
  div#app .widget-type-form{
    max-width: 640px;
  }
}

@media (min-width: 768px){
  div#app .widget-type-form{
    max-width: 768px;
  }
}

@media (min-width: 992px){
  div#app .widget-type-form{
    max-width: 992px;
  }
}

@media (min-width: 1230px){
  div#app .widget-type-form{
    max-width: 1230px;
  }
}

@media (min-width: 1536px){
  div#app .widget-type-form{
    max-width: 1536px;
  }
}

@media (min-width: 1920px){
  div#app .widget-type-form{
    max-width: 1920px;
  }
}

div#app .widget-type-form {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: var(--hs-container);
  max-width: var(--hs-container-small);
}
div#app .widget-type-form .hs-form-required,
div#app .widget-type-form .hs-error-msg{
  padding-top: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(var(--hs-error-color) / var(--tw-text-opacity));
}
div#app .widget-type-form input.error{
  --tw-border-opacity: 1;
  border-color: rgb(var(--hs-error-color) / var(--tw-border-opacity));
}
div#app .widget-type-form fieldset{
  margin-bottom: 1rem;
  display: block;
}
div#app .widget-type-form fieldset.form-columns-1, div#app .widget-type-form fieldset.form-columns-2, div#app .widget-type-form fieldset.form-columns-3{
  display: grid;
  gap: 1rem;
}
div#app .widget-type-form fieldset.form-columns-1 .hs-form-field, div#app .widget-type-form fieldset.form-columns-2 .hs-form-field, div#app .widget-type-form fieldset.form-columns-3 .hs-form-field {
  width: 100%;
  float: none;
}
div#app .widget-type-form fieldset.form-columns-1 .input, div#app .widget-type-form fieldset.form-columns-2 .input, div#app .widget-type-form fieldset.form-columns-3 .input {
  margin-right: 0px;
}
@media (min-width: 768px) {
  div#app .widget-type-form fieldset.form-columns-1 {
    grid-template-columns: repeat(1, minmax(280px, 1fr));
  }
  div#app .widget-type-form fieldset.form-columns-2 {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
  div#app .widget-type-form fieldset.form-columns-3 {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
  }
}
div#app .widget-type-form .hs_recaptcha{
  margin-bottom: 1rem;
}
div#app .widget-type-form .hs-form-field{
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
div#app .widget-type-form .hs-form-field > legend{
  order: 2;
  font-size: 0.85rem;
  opacity: 0.6;
}
div#app .widget-type-form .legal-consent-container .hs-richtext + div:not(.hs-richtext){
  margin-bottom: 1rem;
}
div#app .widget-type-form ul.inputs-list{
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
div#app .widget-type-form ul.inputs-list span{
  font-size: 1rem;
  font-weight: 400;
}
div#app .widget-type-form .hs-form-radio-display,
div#app .widget-type-form .hs-form-checkbox-display,
div#app .widget-type-form .hs-form-booleancheckbox-display{
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
}
div#app .widget-type-form .hs-form-radio-display > input,
div#app .widget-type-form .hs-form-checkbox-display > input,
div#app .widget-type-form .hs-form-booleancheckbox-display > input {
  aspect-ratio: 1/1;
}
div#app .widget-type-form .hs-form-radio-display > span,
div#app .widget-type-form .hs-form-checkbox-display > span,
div#app .widget-type-form .hs-form-booleancheckbox-display > span {
  margin-left: 0;
}
div#app .widget-type-form input.hs-input[type=checkbox]{
  width: 1rem;
  cursor: pointer;
}
div#app .widget-type-form .hs-input:not([type=radio]):not([type=checkbox]):not([type=file]){
  width: 100%;
  border-radius: var(--hs-border-radius);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
div#app .widget-type-form .hs-input:not([type=radio]):not([type=checkbox]):not([type=file]):focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-color: rgb(var(--hs-primary-color) / var(--tw-ring-opacity));
  --tw-ring-opacity: 0.25;
}
div#app .widget-type-form .hs-input{
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
}
div#app .widget-type-form fieldset,
div#app .widget-type-form label {
  max-width: inherit;
}
div#app .widget-type-form fieldset,
div#app .widget-type-form fieldset p,
div#app .widget-type-form fieldset span,
div#app .widget-type-form label,
div#app .widget-type-form label p,
div#app .widget-type-form label span{
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height: 1.25rem;
  font-size: 0.85rem;
}
div#app .widget-type-form label{
  font-weight: 700;
}
div#app .widget-type-form .hs_submit .hs-button[type=submit]{
  cursor: pointer;
  border-width: 1px;
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--hs-primary-color) / var(--tw-bg-opacity));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 250ms;
}
div#app .widget-type-form .hs_submit .hs-button[type=submit]:hover{
  --tw-border-opacity: 1;
  border-color: rgb(var(--hs-primary-color) / var(--tw-border-opacity));
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(var(--hs-primary-color) / var(--tw-text-opacity));
}
div#app .widget-type-form input.hs-input::-webkit-input-placeholder{
  --tw-text-opacity: 1;
  color: rgb(var(--hs-body-color) / var(--tw-text-opacity));
  opacity: 0.4;
}
div#app .widget-type-form input.hs-input::placeholder{
  --tw-text-opacity: 1;
  color: rgb(var(--hs-body-color) / var(--tw-text-opacity));
  opacity: 0.4;
}

.mutistep-wrapper .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.mutistep-wrapper ol > li:after {
  content: "";
  display: inline-block;
  height: 2px;
  border-radius: 4px;
  background-color: rgb(var(--hs-accent-color) / 0.75);
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: 100%;
  transition: background 1s ease-in-out;
  overflow: hidden;
}
.mutistep-wrapper ol > li.done:after {
  background-position: 0%;
}
.mutistep-wrapper ol > li:last-child:after {
  content: none;
}
.mutistep-wrapper [type=radio]:checked {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='rgb(var(--hs-primary-color) / 100)' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E");
}
.mutistep-wrapper .hs-button {
  margin: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  line-height: 12px;
  position: relative;
  text-align: center;
  transition: all 0.15s linear;
  --tw-border-opacity: 1;
  border-color: rgb(var(--hs-primary-color) / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(var(--hs-primary-color) / var(--tw-bg-opacity));
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  font-size: 14px;
  padding: 12px 24px;
}
.mutistep-wrapper .hs-button:hover, .mutistep-wrapper .hs-button:focus{
  --tw-border-opacity: 1;
  border-color: rgb(0 25 51 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 25 51 / var(--tw-bg-opacity));
}
.mutistep-wrapper .hs-button:active{
  --tw-border-opacity: 1;
  border-color: rgb(0 25 51 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 25 51 / var(--tw-bg-opacity));
}
.mutistep-wrapper label {
  font-size: 14px;
  width: 130px;
  display: block;
  float: none;
  width: auto;
  font-weight: 500;
  line-height: 20px;
  padding-top: 0;
  margin-bottom: 4px;
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --tw-text-opacity: 1;
  color: rgb(0 25 51 / var(--tw-text-opacity));
}
.mutistep-wrapper .hs-video-form label{
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.mutistep-wrapper .hs-video-form .hs-back-button{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
  width: 20%;
  height: 38px;
  margin-right: 10px;
  border: 1px solid;
  border-radius: 3px;
}
.mutistep-wrapper .hs-video-form .hs-button {
  width: 70%;
}
.mutistep-wrapper .hs-video-form .hs-button span {
  font-size: 15px;
}
.mutistep-wrapper .hs-video-form .hs-richtext{
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.mutistep-wrapper .hs-video-form .legal-consent-container {
  max-height: 180px !important;
  overflow-y: scroll !important;
}
.mutistep-wrapper .hs-video-form .legal-consent-container:after {
  content: "";
  display: block;
  height: 100px;
  width: 100%;
}
.mutistep-wrapper .hs-video-form .legal-consent-wrapper {
  position: relative;
}
.mutistep-wrapper .hs-video-form .legal-consent-overlay {
  position: absolute;
  pointer-events: none;
  left: 0;
  bottom: 0;
  height: 100px;
  width: 100%;
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  --tw-gradient-from: #000 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #4b5563 var(--tw-gradient-to-position);
}
.mutistep-wrapper .hs-error-msgs label{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}
.mutistep-wrapper .hs-input {
  display: inline-block;
  width: 100% !important;
  max-width: none;
  height: 40px;
  padding: 9px 10px;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity));
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --tw-text-opacity: 1;
  color: rgb(var(--hs-body-color) / var(--tw-text-opacity));
  box-sizing: border-box;
  border-radius: 3px;
}
.mutistep-wrapper .hs-input:not([type=file]){
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
}
.mutistep-wrapper .hs-input[type=radio] {
  border-radius: 100%;
}
.mutistep-wrapper .hs-input[type=checkbox], .mutistep-wrapper .hs-input[type=radio] {
  cursor: pointer;
  width: 1rem !important;
  height: 1rem;
  padding: 0;
  margin-right: 8px;
  line-height: normal;
  border: solid 1px currentColor;
}
.mutistep-wrapper .hs-input[type=file] {
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}
.mutistep-wrapper select.is-placeholder{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.mutistep-wrapper select.is-placeholder:focus{
  --tw-text-opacity: 1;
  color: rgb(var(--hs-body-color) / var(--tw-text-opacity));
}
.mutistep-wrapper .hs-input:-moz-placeholder, .mutistep-wrapper .hs-input::-webkit-input-placeholder,
.mutistep-wrapper .hs-input option:disabled{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.mutistep-wrapper .hs-input input,
.mutistep-wrapper .hs-input textarea {
  transition: border 0.2s linear;
}
.mutistep-wrapper .hs-input:focus {
  outline: none;
  border-color: rgb(var(--hs-primary-color) / 0.8);
}
.mutistep-wrapper textarea.hs-input {
  height: auto;
}
.mutistep-wrapper select[multiple].hs-input {
  height: inherit;
}
.mutistep-wrapper input.hs-input.error{
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity));
}
.mutistep-wrapper div.field.error input,
.mutistep-wrapper div.field.error textarea,
.mutistep-wrapper div.field.error .chzn-choices{
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity));
}
.mutistep-wrapper textarea.hs-input.error,
.mutistep-wrapper select.hs-input.error{
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity));
}
.mutistep-wrapper input.hs-input.error:focus{
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity));
}
.mutistep-wrapper div.field.error input:focus,
.mutistep-wrapper div.field.error textarea:focus,
.mutistep-wrapper div.field.error .chzn-choices:focus{
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity));
}
.mutistep-wrapper textarea.hs-input.error:focus,
.mutistep-wrapper select.hs-input.error:focus{
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity));
}
.mutistep-wrapper .actions {
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 17px 0px;
}
.mutistep-wrapper .inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.mutistep-wrapper .inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.mutistep-wrapper .inputs-list label {
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  white-space: normal;
  font-weight: normal;
}
.mutistep-wrapper .inputs-list label.hs-form-radio-display, .mutistep-wrapper .inputs-list label.hs-form-checkbox-display, .mutistep-wrapper .inputs-list label.hs-form-booleancheckbox-display {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.mutistep-wrapper .inputs-list label.hs-form-radio-display > span, .mutistep-wrapper .inputs-list label.hs-form-checkbox-display > span, .mutistep-wrapper .inputs-list label.hs-form-booleancheckbox-display > span {
  margin-left: 0;
}
.mutistep-wrapper .inputs-list:first-child {
  padding-top: 6px;
}
.mutistep-wrapper .inputs-list > li + li {
  padding-top: 2px;
}
.mutistep-wrapper ul.no-list {
  list-style: none;
}
.mutistep-wrapper .field {
  margin-bottom: 18px;
}
.mutistep-wrapper .hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
  font-size: 11px;
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --tw-text-opacity: 1;
  color: rgb(var(--hs-body-color) / var(--tw-text-opacity));
}
.mutistep-wrapper .hs-form-required{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}
.mutistep-wrapper .hs-richtext{
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --tw-text-opacity: 1;
  color: rgb(var(--hs-body-color) / var(--tw-text-opacity));
  margin-bottom: 3px;
  line-height: 24px;
  font-size: 14px;
}
.mutistep-wrapper .hs-richtext hr {
  margin-left: 0;
  width: 91%;
}
.mutistep-wrapper .hs-custom-style .hs-dependent-field > div input.hs-input:not([type=checkbox]):not([type=radio]) {
  width: 90%;
}
.mutistep-wrapper form.hs-form-rtl .field {
  flex: 0 1 100%;
}
.mutistep-wrapper form.hs-form-rtl .hs-input[type=checkbox], .mutistep-wrapper form.hs-form-rtl .hs-input[type=radio] {
  margin: 3px 5px 3px 5px;
}
.mutistep-wrapper form.hs-form-rtl fieldset {
  display: flex;
}
.mutistep-wrapper form.hs-form-rtl fieldset[class^=form-columns-] .input {
  margin-right: 0px;
}
.mutistep-wrapper form.hs-form-rtl ul {
  padding: 0px;
}
.mutistep-wrapper form.hs-form-rtl .legal-consent-container .hs-form-booleancheckbox-display input {
  width: auto;
  float: right;
}
.mutistep-wrapper form.hs-form-rtl .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 0px;
}
.mutistep-wrapper form.hs-form-rtl .hs-dependent-field {
  display: flex;
  flex: 0 1 100%;
  flex-wrap: wrap;
}
.mutistep-wrapper .email-correction,
.mutistep-wrapper .email-validation {
  padding-top: 3px;
  font-size: 12px;
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mutistep-wrapper .email-correction a,
.mutistep-wrapper .email-validation a {
  cursor: pointer;
}
@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
  .mutistep-wrapper .email-correction form .form-columns-2 .hs-form-field,
  .mutistep-wrapper .email-correction form .form-columns-3 .hs-form-field {
    float: none;
    width: 100%;
  }
  .mutistep-wrapper .email-validation form .form-columns-2 .hs-form-field,
  .mutistep-wrapper .email-validation form .form-columns-3 .hs-form-field {
    float: none;
    width: 100%;
  }
  .mutistep-wrapper .email-correction form .form-columns-2 .hs-form-field .hs-input,
  .mutistep-wrapper .email-correction form .form-columns-3 .hs-form-field .hs-input {
    width: 100%;
  }
  .mutistep-wrapper .email-validation form .form-columns-2 .hs-form-field .hs-input,
  .mutistep-wrapper .email-validation form .form-columns-3 .hs-form-field .hs-input {
    width: 100%;
  }
  .mutistep-wrapper .email-correction form .form-columns-2 .hs-form-field input[type=checkbox], .mutistep-wrapper .email-correction form .form-columns-2 .hs-form-field input[type=radio] {
    width: 24px;
  }
  .mutistep-wrapper .email-correction form .form-columns-3 .hs-form-field input[type=checkbox], .mutistep-wrapper .email-correction form .form-columns-3 .hs-form-field input[type=radio] {
    width: 24px;
  }
  .mutistep-wrapper .email-validation form .form-columns-2 .hs-form-field input[type=checkbox], .mutistep-wrapper .email-validation form .form-columns-2 .hs-form-field input[type=radio] {
    width: 24px;
  }
  .mutistep-wrapper .email-validation form .form-columns-3 .hs-form-field input[type=checkbox], .mutistep-wrapper .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
    width: 24px;
  }
}
.mutistep-wrapper .hs-button {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.mutistep-wrapper .hs-form-field input[type=text], .mutistep-wrapper .hs-form-field input[type=email], .mutistep-wrapper .hs-form-field input[type=phone], .mutistep-wrapper .hs-form-field input[type=number], .mutistep-wrapper .hs-form-field input[type=tel], .mutistep-wrapper .hs-form-field input[type=date] {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.mutistep-wrapper .hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.mutistep-wrapper .hs-default-font-element,
.mutistep-wrapper .hs-main-font-element{
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height: normal;
}
.mutistep-wrapper [class*=hs-form-].hs-form {
  width: 100%;
}
.mutistep-wrapper [class*=hs-form-] .hs-submit > .actions {
  text-align: left;
  justify-content: end;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0;
}
.mutistep-wrapper [class*=hs-form-] input[type=submit]{
  --tw-border-opacity: 1;
  border-color: rgb(255 108 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 108 0 / var(--tw-bg-opacity));
}
.mutistep-wrapper [class*=hs-form-] input[type=submit]:focus, .mutistep-wrapper [class*=hs-form-] input[type=submit]:hover, .mutistep-wrapper [class*=hs-form-] input[type=submit]:active{
  --tw-border-opacity: 1;
  border-color: rgb(199 84 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(199 84 0 / var(--tw-bg-opacity));
}
.mutistep-wrapper [class*=hs-form-] input[type=submit]:last-child,
.mutistep-wrapper [class*=hs-form-] .actions button:first-child {
  background-repeat: no-repeat;
  background-size: 0.5rem;
}
.mutistep-wrapper [class*=hs-form-] input[type=submit]:last-child {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 320 512'%3E%3C!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cstyle%3Esvg%7Bfill:%23ffffff%7D%3C/style%3E%3Cpath d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
  background-position: 80% center;
  padding-right: 2.2rem;
}
.mutistep-wrapper [class*=hs-form-] .actions button:first-child{
  --tw-border-opacity: 1;
  border-color: rgb(255 108 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.mutistep-wrapper [class*=hs-form-] .hs-button{
  --tw-border-opacity: 1;
  border-color: rgb(var(--hs-primary-color) / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(var(--hs-primary-color) / var(--tw-bg-opacity));
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  font-size: 12px;
  line-height: 12px;
}
.mutistep-wrapper [class*=hs-form-] .hs-button:focus, .mutistep-wrapper [class*=hs-form-] .hs-button:hover, .mutistep-wrapper [class*=hs-form-] .hs-button:active{
  --tw-border-opacity: 1;
  border-color: rgb(0 25 51 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 25 51 / var(--tw-bg-opacity));
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  color: #ffffff;
  font-size: 12px;
  line-height: 12px;
}
.mutistep-wrapper [class*=hs-form-] legend.hs-field-desc{
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --tw-text-opacity: 1;
  color: rgb(0 25 51 / var(--tw-text-opacity));
  font-size: 11px;
}
.mutistep-wrapper [class*=hs-form-] .hs-form-field label:not(.hs-error-msg){
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --tw-text-opacity: 1;
  color: rgb(0 25 51 / var(--tw-text-opacity));
  font-size: 14px;
}
.mutistep-wrapper [class*=hs-form-] .legal-consent-container .hs-richtext,
.mutistep-wrapper [class*=hs-form-] .legal-consent-container label:not(.hs-error-msg){
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --tw-text-opacity: 1;
  color: rgb(0 25 51 / var(--tw-text-opacity));
  font-size: 14px;
}
.mutistep-wrapper [class*=hs-form-] .hs-main-font-element{
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mutistep-wrapper .submitted-message.hs-main-font-element{
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.mutistep-wrapper .submitted-message::before {
  content: "";
  display: block;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--hs-success-color) / var(--tw-bg-opacity));
  width: 3rem;
  height: 3rem;
  margin: 1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='.9em' fill='%23fff' viewBox='0 0 448 512'%3E%3Cpath d='M441 103c9.4 9.4 9.4 24.6 0 33.9L177 401c-9.4 9.4-24.6 9.4-33.9 0L7 265c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l119 119L407 103c9.4-9.4 24.6-9.4 33.9 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}
.mutistep-wrapper [class*=hs-form-].submitted-message {
  font-size: 16px;
  --tw-text-opacity: 1;
  color: rgb(0 25 51 / var(--tw-text-opacity));
}
.mutistep-wrapper [class*=hs-form-] a:link, .mutistep-wrapper [class*=hs-form-] a:hover, .mutistep-wrapper [class*=hs-form-] a:focus, .mutistep-wrapper [class*=hs-form-] a:active{
  --tw-text-opacity: 1;
  color: rgb(var(--hs-primary-color) / var(--tw-text-opacity));
}
.mutistep-wrapper .fn-date-picker.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
  *zoom: 1;
}
.mutistep-wrapper .fn-date-picker.pika-single.is-hidden {
  display: none;
}
.mutistep-wrapper .fn-date-picker.pika-single.is-bound {
  position: absolute;
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.mutistep-wrapper .fn-date-picker.pika-single:after, .mutistep-wrapper .fn-date-picker.pika-single:before {
  content: " ";
  display: table;
}
.mutistep-wrapper .fn-date-picker.pika-single:after {
  clear: both;
}
.mutistep-wrapper .fn-date-picker .pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}
.mutistep-wrapper .fn-date-picker .pika-title {
  position: relative;
  text-align: center;
}
.mutistep-wrapper .fn-date-picker .pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  filter: alpha(opacity=0);
  opacity: 0;
}
.mutistep-wrapper .fn-date-picker .pika-label {
  display: inline-block;
  *display: inline;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.mutistep-wrapper .fn-date-picker .pika-next,
.mutistep-wrapper .fn-date-picker .pika-prev {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 0.5;
  *position: absolute;
  *top: 0;
}
.mutistep-wrapper .fn-date-picker .pika-next:hover,
.mutistep-wrapper .fn-date-picker .pika-prev:hover {
  opacity: 1;
}
.mutistep-wrapper .fn-date-picker .pika-next.is-disabled,
.mutistep-wrapper .fn-date-picker .pika-prev.is-disabled {
  cursor: default;
  opacity: 0.2;
}
.mutistep-wrapper .fn-date-picker .is-rtl .pika-next,
.mutistep-wrapper .fn-date-picker .pika-prev {
  float: left;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
  *left: 0;
}
.mutistep-wrapper .fn-date-picker .is-rtl .pika-prev,
.mutistep-wrapper .fn-date-picker .pika-next {
  float: right;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
  *right: 0;
}
.mutistep-wrapper .fn-date-picker .pika-select {
  display: inline-block;
  *display: inline;
}
.mutistep-wrapper .fn-date-picker .pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}
.mutistep-wrapper .fn-date-picker .pika-table td {
  width: 14.2857142857%;
  padding: 0;
}
.mutistep-wrapper .fn-date-picker .pika-table th {
  width: 14.2857142857%;
  padding: 0;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  font-size: 12px;
  line-height: 25px;
  font-weight: 700;
  text-align: center;
}
.mutistep-wrapper .fn-date-picker .pika-table abbr {
  border-bottom: none;
  cursor: help;
}
.mutistep-wrapper .fn-date-picker .pika-button {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  --tw-bg-opacity: 1;
  background-color: rgb(239 239 239 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
  font-size: 12px;
  line-height: 15px;
  text-align: right;
}
.mutistep-wrapper .fn-date-picker .pika-button:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(var(--hs-primary-color) / var(--tw-bg-opacity)) !important;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
  box-shadow: none !important;
  border-radius: 3px !important;
}
.mutistep-wrapper .fn-date-picker .is-today .pika-button{
  --tw-text-opacity: 1;
  color: rgb(var(--hs-primary-color) / var(--tw-text-opacity));
  font-weight: 700;
}
.mutistep-wrapper .fn-date-picker .is-selected .pika-button {
  font-weight: 700;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--hs-primary-color) / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  --tw-shadow: var(--hs-box-shadow);
  --tw-shadow-colored: var(--hs-box-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-shadow-color: rgb(var(--hs-primary-color) / 1);
  --tw-shadow: var(--tw-shadow-colored);
  border-radius: 3px;
}
.mutistep-wrapper .fn-date-picker .is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  opacity: 0.3;
}
.mutistep-wrapper .fn-date-picker .pika-week {
  font-size: 11px;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.mutistep-wrapper [class*=hs-form-] .inputs-list.inline-list li {
  vertical-align: top;
  display: inline-block;
  word-wrap: break-word;
  padding-right: 16px;
}
.mutistep-wrapper [class*=hs-form-] .inputs-list.inline-list li:after {
  clear: both;
}
.mutistep-wrapper [class*=hs-form-] .inputs-list.inline-list li input {
  float: left;
}
.mutistep-wrapper [class*=hs-form-] .inputs-list.inline-list.inline-list-2 li {
  width: 50%;
}
.mutistep-wrapper [class*=hs-form-] .inputs-list.inline-list.inline-list-2 li:nth-child(2n) {
  padding-right: 0;
}
.mutistep-wrapper [class*=hs-form-] .inputs-list.inline-list.inline-list-3 li {
  width: 33%;
}
.mutistep-wrapper [class*=hs-form-] .inputs-list.inline-list.inline-list-3 li:nth-child(3n) {
  width: 34%;
  padding-right: 0;
}
.mutistep-wrapper .hs-fieldtype-intl-phone.hs-input {
  padding: 0;
  background: none;
  border: none;
  height: auto;
}
.mutistep-wrapper .hs-fieldtype-intl-phone.hs-input:after {
  clear: both;
  content: " ";
  display: table;
}
.mutistep-wrapper .hs-fieldtype-intl-phone.hs-input .hs-input {
  margin-bottom: 0;
}
.mutistep-wrapper .hs-fieldtype-intl-phone.hs-input input {
  width: 68% !important;
  float: right;
}
.mutistep-wrapper .hs-fieldtype-intl-phone.hs-input select {
  float: left;
  width: 30% !important;
}
@media (max-device-width: 480px) and (min-device-width: 320px), (max-width: 400px) {
  .mutistep-wrapper [class*=hs-form-] > .hs-phone > .input > .hs-fieldtype-intl-phone.hs-input > input.hs-input {
    width: 68% !important;
  }
  .mutistep-wrapper [class*=hs-form-] > .hs-phone > .input > .hs-fieldtype-intl-phone.hs-input > select.hs-input {
    width: 30% !important;
  }
}
.mutistep-wrapper .hs-fieldtype-textarea.hs-input {
  resize: vertical;
}
.mutistep-wrapper form[class*=hs-form-] .hs-button {
  white-space: pre-wrap;
}
.mutistep-wrapper form[class*=hs-form-] .hs-richtext {
  word-break: break-word;
}
.mutistep-wrapper form[class*=hs-form-] fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  max-width: none;
}
.mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-1 .hs-form-field, .mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-2 .hs-form-field, .mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-3 .hs-form-field {
  width: 100%;
  float: none;
}
.mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-1 .input, .mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-2 .input, .mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-3 .input {
  margin-right: 0px;
}
.mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-1 .input[type=checkbox], .mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-1 .input[type=radio], .mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-2 .input[type=checkbox], .mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-2 .input[type=radio], .mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-3 .input[type=checkbox], .mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-3 .input[type=radio] {
  width: auto;
}
.mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-1, .mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-2, .mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-3 {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-1, .mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-2, .mutistep-wrapper form[class*=hs-form-] fieldset.form-columns-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
.mutistep-wrapper form[class*=hs-form-] label.hs-hidden {
  visibility: hidden;
}
.mutistep-wrapper form[class*=hs-form-] .hs-field-desc {
  width: 100%;
}
@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
  .mutistep-wrapper .hs-custom-style .hs-input:not([type=checkbox]):not([type=radio]),
  .mutistep-wrapper .hs-custom-style fieldset {
    margin-right: 0 !important;
    width: 100% !important;
  }
  .mutistep-wrapper form[class*=hs-form-]:not(.hs-video-form) .form-columns-2 .hs-form-field,
  .mutistep-wrapper form[class*=hs-form-]:not(.hs-video-form) .form-columns-3 .hs-form-field {
    float: none;
    width: 100%;
  }
  .mutistep-wrapper form[class*=hs-form-]:not(.hs-video-form) .form-columns-2 .hs-form-field .hs-input,
  .mutistep-wrapper form[class*=hs-form-]:not(.hs-video-form) .form-columns-3 .hs-form-field .hs-input {
    width: 100%;
  }
  .mutistep-wrapper form[class*=hs-form-]:not(.hs-video-form) .form-columns-2 .hs-form-field input[type=checkbox], .mutistep-wrapper form[class*=hs-form-]:not(.hs-video-form) .form-columns-2 .hs-form-field input[type=radio] {
    width: auto;
  }
  .mutistep-wrapper form[class*=hs-form-]:not(.hs-video-form) .form-columns-3 .hs-form-field input[type=checkbox], .mutistep-wrapper form[class*=hs-form-]:not(.hs-video-form) .form-columns-3 .hs-form-field input[type=radio] {
    width: auto;
  }
}
.mutistep-wrapper .legal-consent-container .field.hs-form-field {
  margin-bottom: 8px;
}
.mutistep-wrapper .legal-consent-container .hs-field-desc.checkbox-desc {
  margin: -12px 0 0 21px;
}
.mutistep-wrapper .legal-consent-container .hs-form-booleancheckbox-display input {
  float: left;
}
.mutistep-wrapper .legal-consent-container .hs-form-booleancheckbox-display > span {
  display: block;
  margin-left: 20px;
}
.mutistep-wrapper .legal-consent-container .hs-form-booleancheckbox-display p {
  margin: 0;
  display: inline;
}
.mutistep-wrapper .legal-consent-container .hs-error-msgs label{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}
.mutistep-wrapper .legal-consent-container ~ .hs_recaptcha {
  margin-top: 18px;
}
.mutistep-wrapper .cookie-reset-container {
  font-size: 14px;
  margin-bottom: 10px;
  text-align: right;
}
.mutistep-wrapper #hs-outer-captcha-target {
  display: none;
  height: 0;
  width: 0;
}
.mutistep-wrapper #hs-outer-captcha-target * {
  display: none;
  height: 0;
  width: 0;
}
.mutistep-wrapper .hubspot-link__container {
  font-size: 14px;
  padding-bottom: 40px;
  position: relative;
  font-family: var(--hs-body-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.mutistep-wrapper .hubspot-link-text{
  --tw-text-opacity: 1;
  color: rgb(0 25 51 / var(--tw-text-opacity));
  font-weight: 400;
}
.mutistep-wrapper .hubspot-link__container.sproket{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.mutistep-wrapper .hubspot-link{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
  text-decoration: none;
}
.mutistep-wrapper .hubspot-link:hover {
  text-decoration: none;
}
.mutistep-wrapper .hubspot-link:hover .hubspot-link-text {
  text-decoration: underline;
}
.mutistep-wrapper .hubspot-link__icon {
  margin-bottom: -1px;
  margin-right: 5px;
}
.mutistep-wrapper .hubspot-link__container.sproket .hubspot-link__icon {
  width: 30px;
  margin-right: 0;
  float: left;
  margin-top: -9px;
  margin-left: -5px;
}

li label > input + span:after{
  position: absolute;
  inset: 0px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  border-width: 2px;
  border-radius: 5px;
  border-style: solid;
  display: block;
  content: "";
}

li label > input:focus + span:after{
  --tw-border-opacity: 1;
  border-color: rgb(var(--hs-success-color) / var(--tw-border-opacity));
}

li label {
  position: relative !important;
  padding: 1rem !important;
}

.inputs-list.multi-container li label > input:checked + span:before{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--hs-success-color) / var(--tw-bg-opacity));
}

.inputs-list.multi-container li label > input:checked + span:after{
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(var(--hs-success-color) / var(--tw-border-opacity));
}

.hs_cos_wrapper .mutistep-wrapper input:focus {
  box-shadow: none;
}

.hs_cos_wrapper .mutistep-wrapper [type=checkbox]:checked {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E") !important;
  box-shadow: none;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgb(var(--hs-success-color) / var(--tw-bg-opacity));
}

.mutistep-wrapper input[type=file] {
  margin-top: 0.5rem;
}

div#footer{
  font-size: 0.85rem;
}
div#footer h5,
div#footer li.hs-menu-depth-1 > a{
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(var(--hs-primary-color) / var(--tw-text-opacity));
}
div#footer li.hs-menu-depth-1 > a{
  margin-bottom: 1.25rem;
  display: flex;
}
div#footer .hs_cos_wrapper{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
div#footer #hs_cos_wrapper_button{
  margin-top: 2rem;
  margin-bottom: 2rem;
}
div#footer #hs_cos_wrapper_button .hs-button{
  display: inline-block;
  border-width: 2px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-family: var(--hs-button-font-family), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  text-transform: uppercase;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 250ms;
}
div#footer #hs_cos_wrapper_button .hs-button:hover{
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
          transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-border-opacity: 1;
  border-color: rgb(var(--hs-primary-color) / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(var(--hs-primary-color) / var(--tw-text-opacity));
}
div#footer .footer-bottom-copyright a:hover{
  --tw-text-opacity: 1;
  color: rgb(var(--hs-primary-color) / var(--tw-text-opacity));
}
div#footer .hs_cos_wrapper_type_rich_text a{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

body div#app .slider-nav{
  opacity: 0.25;
  -webkit-filter: none;
          filter: none;
}
body div#app .slider-nav:hover{
  opacity: 0.75;
}
body div#app .slider-indicators-round .slider-indicators li:not(.active), body div#app .slider-indicators-square .slider-indicators li:not(.active){
  height: 0.375rem;
  width: 0.375rem;
}
body div#app .slider-indicators .active{
  --tw-bg-opacity: 1;
  background-color: rgb(var(--hs-primary-color) / var(--tw-bg-opacity));
  -webkit-filter: none;
          filter: none;
}
body div#app .slider-nav {
  left: -0.75rem;
}
body div#app .slider-nav-next {
  right: -0.75rem;
  left: unset;
}
body div#app .lowArrows .slider-nav {
  left: 32%;
  top: calc(100% - 0.65rem) !important;
  z-index: 10;
}
body div#app .lowArrows .slider-nav.slider-nav-next {
  right: 32%;
  left: auto;
}
body div#app .swiffy-slider .slider-container li{
  display: flex;
  justify-content: center;
  padding: 0.25rem;
}
body div#app .swiffy-slider .slider-container li > a{
  display: block;
  height: 100%;
}
body div#app .swiffy-slider.slider-indicators-outside:not(.lowArrows) .slider-nav{
  margin-bottom: 0px;
}

#hs-eu-cookie-confirmation-inner:before {
  content: "Cookie-Einstellungen";
  padding-left: 230px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 122.88 122.25' style='enable-background:new 0 0 122.88 122.25' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M101.77,49.38c2.09,3.1,4.37,5.11,6.86,5.78c2.45,0.66,5.32,0.06,8.7-2.01c1.36-0.84,3.14-0.41,3.97,0.95 c0.28,0.46,0.42,0.96,0.43,1.47c0.13,1.4,0.21,2.82,0.24,4.26c0.03,1.46,0.02,2.91-0.05,4.35h0v0c0,0.13-0.01,0.26-0.03,0.38 c-0.91,16.72-8.47,31.51-20,41.93c-11.55,10.44-27.06,16.49-43.82,15.69v0.01h0c-0.13,0-0.26-0.01-0.38-0.03 c-16.72-0.91-31.51-8.47-41.93-20C5.31,90.61-0.73,75.1,0.07,58.34H0.07v0c0-0.13,0.01-0.26,0.03-0.38 C1,41.22,8.81,26.35,20.57,15.87C32.34,5.37,48.09-0.73,64.85,0.07V0.07h0c1.6,0,2.89,1.29,2.89,2.89c0,0.4-0.08,0.78-0.23,1.12 c-1.17,3.81-1.25,7.34-0.27,10.14c0.89,2.54,2.7,4.51,5.41,5.52c1.44,0.54,2.2,2.1,1.74,3.55l0.01,0 c-1.83,5.89-1.87,11.08-0.52,15.26c0.82,2.53,2.14,4.69,3.88,6.4c1.74,1.72,3.9,3,6.39,3.78c4.04,1.26,8.94,1.18,14.31-0.55 C99.73,47.78,101.08,48.3,101.77,49.38L101.77,49.38z M59.28,57.86c2.77,0,5.01,2.24,5.01,5.01c0,2.77-2.24,5.01-5.01,5.01 c-2.77,0-5.01-2.24-5.01-5.01C54.27,60.1,56.52,57.86,59.28,57.86L59.28,57.86z M37.56,78.49c3.37,0,6.11,2.73,6.11,6.11 s-2.73,6.11-6.11,6.11s-6.11-2.73-6.11-6.11S34.18,78.49,37.56,78.49L37.56,78.49z M50.72,31.75c2.65,0,4.79,2.14,4.79,4.79 c0,2.65-2.14,4.79-4.79,4.79c-2.65,0-4.79-2.14-4.79-4.79C45.93,33.89,48.08,31.75,50.72,31.75L50.72,31.75z M119.3,32.4 c1.98,0,3.58,1.6,3.58,3.58c0,1.98-1.6,3.58-3.58,3.58s-3.58-1.6-3.58-3.58C115.71,34.01,117.32,32.4,119.3,32.4L119.3,32.4z M93.62,22.91c2.98,0,5.39,2.41,5.39,5.39c0,2.98-2.41,5.39-5.39,5.39c-2.98,0-5.39-2.41-5.39-5.39 C88.23,25.33,90.64,22.91,93.62,22.91L93.62,22.91z M97.79,0.59c3.19,0,5.78,2.59,5.78,5.78c0,3.19-2.59,5.78-5.78,5.78 c-3.19,0-5.78-2.59-5.78-5.78C92.02,3.17,94.6,0.59,97.79,0.59L97.79,0.59z M76.73,80.63c4.43,0,8.03,3.59,8.03,8.03 c0,4.43-3.59,8.03-8.03,8.03s-8.03-3.59-8.03-8.03C68.7,84.22,72.29,80.63,76.73,80.63L76.73,80.63z M31.91,46.78 c4.8,0,8.69,3.89,8.69,8.69c0,4.8-3.89,8.69-8.69,8.69s-8.69-3.89-8.69-8.69C23.22,50.68,27.11,46.78,31.91,46.78L31.91,46.78z M107.13,60.74c-3.39-0.91-6.35-3.14-8.95-6.48c-5.78,1.52-11.16,1.41-15.76-0.02c-3.37-1.05-6.32-2.81-8.71-5.18 c-2.39-2.37-4.21-5.32-5.32-8.75c-1.51-4.66-1.69-10.2-0.18-16.32c-3.1-1.8-5.25-4.53-6.42-7.88c-1.06-3.05-1.28-6.59-0.61-10.35 C47.27,5.95,34.3,11.36,24.41,20.18C13.74,29.69,6.66,43.15,5.84,58.29l0,0.05v0h0l-0.01,0.13v0C5.07,73.72,10.55,87.82,20.02,98.3 c9.44,10.44,22.84,17.29,38,18.1l0.05,0h0v0l0.13,0.01h0c15.24,0.77,29.35-4.71,39.83-14.19c10.44-9.44,17.29-22.84,18.1-38l0-0.05 v0h0l0.01-0.13v0c0.07-1.34,0.09-2.64,0.06-3.91C112.98,61.34,109.96,61.51,107.13,60.74L107.13,60.74z M116.15,64.04L116.15,64.04 L116.15,64.04L116.15,64.04z M58.21,116.42L58.21,116.42L58.21,116.42L58.21,116.42z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 36px;
  background-position: left center;
  background-repeat: no-repeat;
  font-size: 24px;
  width: 100%;
  display: block;
  padding: 10px 0 10px 50px;
  margin-bottom: 15px;
}

#hs-banner-parent div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-modal-accept-all,
#hs-banner-parent div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-eu-confirmation-button,
#hs-banner-parent #hs-modal #hs-modal-content #hs-modal-footer #hs-modal-footer-container button#hs-modal-accept-all,
#hs-banner-parent #hs-modal #hs-modal-content #hs-modal-footer #hs-modal-footer-container button#hs-eu-confirmation-button{
  height: auto !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  border-radius: 0px !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(var(--hs-primary-color) / var(--tw-bg-opacity)) !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
  transition-property: all !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 250ms !important;
}

#hs-banner-parent div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-modal-accept-all:hover,
#hs-banner-parent div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-eu-confirmation-button:hover,
#hs-banner-parent #hs-modal #hs-modal-content #hs-modal-footer #hs-modal-footer-container button#hs-modal-accept-all:hover,
#hs-banner-parent #hs-modal #hs-modal-content #hs-modal-footer #hs-modal-footer-container button#hs-eu-confirmation-button:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(var(--hs-primary-color) / var(--tw-bg-opacity)) !important;
}
#hs-banner-parent div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-eu-cookie-settings-button,
#hs-banner-parent #hs-modal #hs-modal-content #hs-modal-footer #hs-modal-footer-container button#hs-eu-cookie-settings-button{
  height: auto !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  border-radius: 0px !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  --tw-text-opacity: 1 !important;
  color: rgb(var(--hs-primary-color) / var(--tw-text-opacity)) !important;
  transition-property: all !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 250ms !important;
}
#hs-banner-parent div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-eu-cookie-settings-button:hover,
#hs-banner-parent #hs-modal #hs-modal-content #hs-modal-footer #hs-modal-footer-container button#hs-eu-cookie-settings-button:hover{
  --tw-text-opacity: 1 !important;
  color: rgb(var(--hs-primary-color) / var(--tw-text-opacity)) !important;
  text-decoration-line: none !important;
}
#hs-banner-parent div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-modal-save-settings,
#hs-banner-parent div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-eu-decline-button,
#hs-banner-parent #hs-modal #hs-modal-content #hs-modal-footer #hs-modal-footer-container button#hs-modal-save-settings,
#hs-banner-parent #hs-modal #hs-modal-content #hs-modal-footer #hs-modal-footer-container button#hs-eu-decline-button{
  height: auto !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  border-radius: 0px !important;
  --tw-border-opacity: 1 !important;
  border-color: rgb(var(--hs-primary-color) / var(--tw-border-opacity)) !important;
  background-color: transparent !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  --tw-text-opacity: 1 !important;
  color: rgb(var(--hs-primary-color) / var(--tw-text-opacity)) !important;
  transition-property: all !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 250ms !important;
}
#hs-banner-parent div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-modal-save-settings:hover,
#hs-banner-parent div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-eu-decline-button:hover,
#hs-banner-parent #hs-modal #hs-modal-content #hs-modal-footer #hs-modal-footer-container button#hs-modal-save-settings:hover,
#hs-banner-parent #hs-modal #hs-modal-content #hs-modal-footer #hs-modal-footer-container button#hs-eu-decline-button:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(var(--hs-primary-color) / var(--tw-bg-opacity)) !important;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
#hs-banner-parent #hs-modal #hs-modal-content{
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  max-height: calc(100vh - 30px) !important;
}
#hs-banner-parent #hs-modal #hs-modal-content #hs-modal-footer #hs-modal-footer-container{
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.read-more-trigger::before {
  content: "... \aweiterlesen";
  white-space: pre;
}

.read-more-state:checked ~ .read-more {
  max-height: 999rem;
}
.read-more-state:checked ~ .read-more-dots{
  display: none;
}
.read-more-state:checked ~ .read-more-trigger::before {
  content: "weniger lesen";
}

.hs-search-field .hs-search-field__suggestions li > a {
  display: block;
  background-color: transparent !important;
  color: #ddd;
}

.hs-search-field .hs-search-field__suggestions li > a:hover {
  color: #ff6c00;
}

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

div[class*=full-width-section] > .row-fluid{
  max-width: 100% !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.row-mobile-stack-reversed > .row-fluid{
  display: flex !important;
  flex-direction: column-reverse !important;
}

@media (min-width: 768px){
  .row-mobile-stack-reversed > .row-fluid{
    display: flex !important;
    flex-direction: row !important;
  }
}

.row-stack-tablet-reversed > .row-fluid{
  display: flex !important;
  flex-direction: column-reverse !important;
}

@media (min-width: 992px){
  .row-stack-tablet-reversed > .row-fluid{
    display: flex !important;
    flex-direction: row !important;
  }
}
@media (min-width: 768px) and (max-width: 991px){
  .row-stack-tablet-reversed > .row-fluid > .widget-span{
    margin-left: 0px !important;
    width: 100% !important;
  }
}

@media (min-width: 768px){
  .row-stack-tablet > .row-fluid{
    display: flex !important;
    flex-direction: column !important;
  }
}

@media (min-width: 992px){
  .row-stack-tablet > .row-fluid{
    display: flex !important;
    flex-direction: row !important;
  }
}
@media (min-width: 768px) and (max-width: 991px){
  .row-stack-tablet > .row-fluid > .widget-span{
    margin-left: 0px !important;
    width: 100% !important;
  }
}

/* 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 */
  -webkit-text-decoration: underline dotted;
          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: "📅";
  position: absolute;
  right: 10%;
  top: 50%;
  -webkit-transform: translateY(-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+) !important;
  background-position: center right 15px !important;
  background-repeat: no-repeat !important;
  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 */
.new-add .header__language-switcher {
  cursor: pointer;
  padding-right: 0;
  width: 100px;
  margin-right: 16px;
}

.price-tag {
  top: 0 !important;
}

a.contact-link {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}

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

.new-add .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;
  opacity: 0;
}

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

.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: 14px;
  padding: 0.4rem 0.8rem;
}

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

.new-add .header__language-switcher--label {
  display: flex;
  position: relative;
  align-items: center;
}

.new-add .header__language-switcher--label-current {
  color: var(--theme_menu_color_rs);
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.new-add .header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--theme_menu_color_rs);
  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--toggle {
    position: relative;
  }
  .header__navigation--toggle:before {
    content: "\f0c9";
    position: absolute;
    top: 0px;
    left: 0px;
    /* height: 20px; */
    /* width: 20px; */
    /* font-size: 28px !important; */
    color: var(--theme_menu_color_rs);
    font: normal normal normal 28px/1 FontAwesome;
  }
  .header__close--toggle.show {
    position: relative;
  }
  .header__close--toggle.show:after {
    position: absolute;
    top: 0px;
    left: 0px;
    content: "\f00d";
    font: normal normal normal 31px/1 FontAwesome;
    color: var(--theme_menu_color_rs);
    line-height: 21px;
  }
  .new-add .menu__link {
    line-height: 40px !important;
  }
  /*   .new-add .menu__submenu .menu__item .menu__link {
      line-height: 40px !important;
    } */
  .no-button, .no-button:active, .no-button:focus, .no-button:hover {
    height: 52px;
    background: transparent;
  }
  .menu__submenu .menu__item .menu__link {
    line-height: 30px !important;
    height: 50px !important;
  }
  .new-add .hs-search-field {
    width: 100% !important;
  }
  .new-add .row-fluid {
    flex-wrap: nowrap;
    align-items: center;
  }
  .new-add {
    display: block !important;
  }
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }
  .new-add .header__navigation.open,
  .new-add .header__search.open,
  .new-add .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    /*     min-height: calc(100vh - 115px); */
    position: absolute;
    right: 0;
    top: 85px;
    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,
  .new-add .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none !important;
    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;
  }
  .new-add .header__navigation--toggle {
    /*     background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==); */
    background-size: cover;
    height: 25px;
    width: 25px;
    margin: auto;
  }
  .header__navigation--toggle.hide.open {
    display: none;
  }
  .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:none;
    height: 25px;
    width: 25px;
    cursor: pointer;
    position: relative;
    }
    .header__search--toggle:before {
      content: "";
      font: normal normal normal 14px/1 FontAwesome;
      font-size: 21px;
      height: 25px;
    width: 25px;
      position:absolute;
    } */
  .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;
  }
  .new-add .header__close--toggle.show {
    display: block;
    margin: auto;
  }
  .new-add .header--toggle.header__search--toggle.hide.open {
    display: none;
  }
  .new-add .header__language-switcher {
    display: block;
    border: none;
    padding: 0px;
  }
  .new-add .header__language-switcher--toggle {
    display: none;
  }
  .new-add .header__language-switcher .lang_list_class {
    min-width: 120px;
  }
  .new-add .hs-search-field .hs-search-field__input {
    border: none !important;
  }
}
.header__search--toggle {
  position: relative;
}

.header__search--toggle:before {
  color: var(--theme_menu_color_rs);
  content: "\f002";
  font: normal normal normal 14px/1 FontAwesome;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 9;
  font-size: 24px;
  line-height: 0px;
  cursor: pointer;
}

.header__search {
  display: none;
  position: absolute;
  right: 0px;
  top: 96px;
  z-index: 5;
}

.header--toggle.header__search--toggle.hide.open {
  display: block;
}

.header__search.header--element.open {
  display: block;
  padding: 0px;
}

.new-add {
  display: flex;
  justify-content: center;
}

.hs-search-field__input {
  border: none;
}

.new-add .hs-search-field {
  background: #000000;
  padding: 0;
  width: 310px;
}

.new-add .hs-search-field .hs-search-field__input {
  background: var(--theme_menu_color_rs);
  width: 100%;
  outline: none;
  border: 1px solid #000;
}

.new-add .hs-search-field label {
  display: none;
}

.new-add .globe_class {
  position: relative;
}

.new-add .globe_class:before {
  position: absolute !important;
  color: var(--theme_menu_color_rs) !important;
  font: normal normal normal 14px/1 FontAwesome !important;
  content: "\f0ac" !important;
  font-size: 24px !important;
}

.new-add .lang_list_class li {
  background-color: var(--theme_l_translator_color_rs) !important;
}

.new-add-footer .hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  gap: 20px;
}

.new-add-footer li a {
  color: var(--theme_f_menu_color_rs);
}

.new-add-footer .social-links__icon {
  background-color: transparent;
}

.new-add-footer .social-links__icon:hover {
  background-color: transparent;
}

.new-add-footer .social-links__icon svg {
  fill: var(--theme_f_menu_color_rs);
}

@media (max-width: 767px) {
  .new-add-footer .social-links {
    justify-content: center !important;
    margin-top: 30px;
  }
}
/* form css */
.submitted-message {
  text-align: center;
  font-size: 26px;
  color: #005e10;
}

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