/* 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.
*/

/* reset styles 2022 */

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}
/*
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

body {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-display: swap;

  line-height: 1.4;
  overflow-wrap: break-word;
}
html {
    scroll-behavior: smooth;
}


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

/* all text elements */
p,
span,
h1,h2,h3,h4,h5,h6 {
  font-family: 'Manrope', sans-serif;
  font-style: normal;

  color: #1B2127;
}


/* Paragraphs */

p {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1 {
  font-weight: 800;
  font-size: 60px;
  line-height: 71px;
}

h2 {
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
}

h3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 37px;
}

h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 31px;
}

.richtext p {

}

/* Lists */

ul,
ol {
  margin: 0;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
.button-wrapper {
  display: inline-block;
}

.button {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  width: fit-content;
  height: fit-content;

  padding: 19.5px 40px;

  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-decoration: none;

  border-radius: 5px;
  color: #FFFFFF;
  background: #3A7BE0;

  transition: color .2s ease-in-out, background-color .2s ease-in-out;
}

.button svg {
  margin-left: 9px;
  fill: #FFFFFF;
}

.button[disabled] {
  pointer-events: none;
  color: #99A5B8;
  background: #DAE1EC;
}
.button[disabled] svg {
  fill: #99A5B8;
}

.button--blue {
  background: #3A7BE0;
  color: #FFFFFF;
}

.button--blur {
  background: rgba(233, 205, 205, 0.16);
  backdrop-filter: blur(17px);
  color: #FFFFFF;
}

/* hover active states */
.button:hover {
  background: #fff;
  color: #0f4599;
}
.button:active {
  background: #fff;
  color: #225fbf;
}


.button--blue:hover {
  background: #498CF5;
  color: #FFFFFF;
}
.button--blue:active {
  background: #2365CD;
  color: #FFFFFF;
}


.button--blur:hover {
  background: rgba(233, 205, 205, 0.16);
  color: #FFFFFF;
}
.button--blur:active {
  background: rgba(233, 205, 205, 0.16);
  color: #FFFFFF;
}


.button.button--dark {
  color: #181B21;
  background: #FFFFFF;
}

.button.button--dark:hover {
  color: #448DFF;
}
.button.button--dark:active {
  color: #2365CD;
}

.button.button--dark svg {
  fill: #181B21;
}

.button.button--dark:hover svg {
  fill: #448DFF;
}
.button.button--dark:active svg {
  fill: #2365CD;
}

.button.button--dark[disabled] {
  pointer-events: none;
  background: #4f5256;
  color: #87898c;
}

.button.button--dark[disabled] svg {
  fill: #87898c;
}

.button.button--dark[disabled]::before {
  background: rgba(255, 255, 255, 0.24);
}

.button.button-secondary {
  background-color: transparent;
  border: 1px solid #3A7BE0;
  color: #3A7BE0;

  transition: all .2s ease-in-out;
}
.button.button-secondary:hover {
  background-color: #498CF5;
  color: #FFF;
  border-color: #498CF5;
  box-shadow: 0 9px 15px -32px rgba(44, 113, 218, 0.15); 
}
.button.button-secondary:active {
  background-color: #2365CD;
  border-color: #2365CD;
  color: #FFF;
}

.button--l_size {
  padding: 14px 28px;
}
.button--xl_size {
  padding: 19px 40px;

  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
}
/*.button--l_size svg {*/
/*  width: 20px;*/
/*  height: 20px;*/
/*}*/

/*.button--l_size path {*/
/*  width: 16.25px;*/
/*  height: 12.5px;*/
/*}*/

.button--m_size {
  padding: 14px 28px;
  /*font-size: 14px;*/
  /*line-height: 16px;*/
}

/*.button--m_size svg {*/
/*  width: 16px;*/
/*  height: 16px;*/
/*}*/

/*.button--m_size path {*/
/*  width: 14px;*/
/*  height: 10px;*/
/*}*/


/*.button--s_size {*/
/*  padding: 13px 20px;*/
/*  font-size: 12px;*/
/*  line-height: 14px;*/
/*}*/

/*.button--s_size svg {*/
/*  width: 16px;*/
/*  height: 16px;*/
/*}*/

/*.button--s_size path {*/
/*  width: 14px;*/
/*  height: 10px;*/
/*}*/

/* dark hover */
/*.button.button--dark:hover {*/
/*  color: #225FBF;*/
/*  background: #fff;*/
/*}*/
/*.button.button--dark:active {*/
/*  color: #0F4599;*/
/*  background: #F1F4F9;*/
/*}*/


/*.button.button--dark:hover svg {*/
/*  fill: #225FBF;*/
/*}*/

/*.button.button--dark:active svg {*/
/*  fill: #0F4599;*/
/*}*/


/*.button--arrow-down svg {*/
/*  transform: rotate(90deg);*/
/*}*/

/*!* Button without bg *!*/

/*.button--without-bg {*/
/*  padding: 16px 0;*/

/*  color: #225FBF;*/
/*  background: none;*/

/*  !* font-size: 16px; *!*/
/*  !* line-height: 20px; *!*/
/*}*/

/*.button--without-bg svg {*/
/*  fill: #225FBF;*/
/*}*/


/*.button--without-bg:hover {*/
/*  background: none;*/
/*  color: #3A7BE0;*/
/*}*/
/*.button--without-bg:hover svg {*/
/*  fill: #3A7BE0;*/
/*}*/

/*.button--without-bg:active {*/
/*  background: none;*/
/*  color: #1852AD;*/
/*}*/
/*.button--without-bg:active svg {*/
/*  fill: #1852AD;*/
/*}*/

/*.button--without-bg[disabled] {*/
/*  background: none;*/
/*  color: #BDC7D6;*/
/*}*/
/*.button--without-bg[disabled] svg{*/
/*  fill: #BDC7D6;*/
/*}*/

/*!* dark without bg *!*/

/*.button.button--dark.button--without-bg {*/
/*  color: #fff;*/
/*}*/

/*.button.button--dark.button--without-bg svg {*/
/*  fill: #fff;*/
/*}*/

/*.button.button--dark.button--without-bg:hover {*/
/*  background: none;*/
/*  color: rgba(255, 255, 255, 0.72);*/
/*}*/
/*.button.button--dark.button--without-bg:hover svg {*/
/*  fill: rgba(255, 255, 255, 0.72);*/
/*}*/

/*.button.button--dark.button--without-bg:active {*/
/*  background: none;*/
/*  color: rgba(255, 255, 255, 0.56)*/
/*}*/
/*.button.button--dark.button--without-bg:active svg {*/
/*  fill: rgba(255, 255, 255, 0.56)*/
/*}*/

/*.button.button--dark.button--without-bg[disabled] {*/
/*  background: none;*/
/*  color: rgba(255, 255, 255, 0.24)*/
/*}*/
/*.button.button--dark.button--without-bg[disabled] svg{*/
/*  fill: rgba(255, 255, 255, 0.24)*/
/*}*/

/*.button--arrow-down svg {*/
/*  transform: rotate(90deg);*/
/*}*/

@media (max-width: 1199.5px) {
  .button--m_size {
    padding: 12px 24px;

    font-size: 13px;
    line-height: 17px;
  }
}

@media (max-width: 767.5px) {
  .button--m_size {
    padding: 7px 20px;
  }
}
/*.form {

}
/*input*/
.form .input {
  margin: 0!important;
}
/*title before inputs inside span*/
.form .form-title {
  font-weight: bold;
  font-size: 36px;
  line-height: 36px;

  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #181B21;

  margin-top: 0;
  margin-bottom: 16px;
}
/*subtitle before inputs inside span*/
.form .form-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 20px;

  color: #181B21;

  margin-top: 0;
  margin-bottom: 48px;
}
/*input inside*/
.form .hs-input {
  width: 100%!important;

  padding: 14px 24px;

  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  /* or 26px */

  color: #181B21;
  background: #F1F4F9;
  border: 1px solid #E6ECF4;
  border-radius: 6px;
}
.form select.hs-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23505966' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center; /* arrow position */
  background-size: 14px 9px;
}
.form select.hs-input:hover {
  cursor: pointer;
}
.form textarea.hs-input {
  resize: none;
}
.form textarea.hs-input::-webkit-resizer {
  background-color: #f1f4f9;
}

.form textarea.hs-input:focus::-webkit-resizer {
  background-color: #fff;
}

/*input inside if error and symbol **/
.form .hs-input.invalid.error,
.form .hs-form-required {
  border-color: #ef6b51;
}
/* symbol * */
.form .hs-form-required {
  display: none;
}
/* message under error input */
.form .hs-error-msg {
  color: #ef6b51;
  margin-top: 0.35rem;
}
.inputs-list .hs-error-msg {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;

  color: #E43E3E;

  margin: 0;
}


/* input field */
.form .hs-form-field {
  margin-bottom: 16px;
}
/* input field */
.form .hs-form-field:not(.hs_file_upload) {
  position: relative;
}
/* input label */
.form .hs-form-field:not(.hs-fieldtype-booleancheckbox) label:not(.hs-error-msg) {
  display: none;
  position: absolute;
  left: 30px;
  top: 0;

  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;

  background: white;
  color: #225FBF;

  padding: 0 2px;
  transform: translateY(-50%);
}
/* input label active */
.form .hs-form-field:not(.hs_file_upload).active label:not(.hs-error-msg) {
  display: block !important;
  z-index: 1;
}

/* phone input */
.form .hs_phone .input {
  display: flex;

  border-radius: 6px;
  border: 1px solid #F1F4F9;
}
/* flags before phone input */
.form .hs_phone .hs_phone-prefix {
  background: #DAE1EC;
  border-radius: 6px 0 0 6px;
  border-right: 1px solid transparent;

  cursor: pointer;
}
/* inside flags before phone input */
.form .hs_phone .hs_phone-prefix__content {
  display: flex;
  align-items: center;

  height: 100%;

  padding: 12px 16px 12px 24px;

  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;

  color: #181B21;
}
/* img flag */
.form .hs_phone .hs_phone-prefix__content img {
  width: 20px;
  height: 16px;

  margin-right: 8px;

  border-radius: 2px;
}
/* img arrow inside flags */
.form .hs_phone .hs_phone-prefix__content .hs_phone-prefix__content_arrow {
  height: 7px;
  width: 14px;

  margin: 0 0 0 5px;

  transition: transform 0.1s;
}
/* list of flags */
.form .hs_phone__option-list {
  display: none;
  position: absolute;
  top: 54px;

  width: 298px;
  height: 240px;

  padding: 0;

  overflow: auto;

  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid transparent;

  list-style: none;
}
/* flag with country from list of flags */
.form .hs_phone__option-list li {
  position: relative;
  display: flex;
  align-items: center;

  width: 100%;

  padding: 13px;

  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;

  color: #181B21;
  border-radius: 6px;
}
/* img flag from list of flags */
.form .hs_phone__option-list .hs_phone__option-flag {
  display: inline-block;

  width: 20px;
  height: 16px;

  border-radius: 2px;
}
/* first digits of phone number from list of flags */
.form .hs_phone__option-list .hs_phone__option-prefix {
  display: inline-block;

  width: 45px;

  margin: 0 8px;
}
/* mark after choose flag*/
.form .hs_phone__option-checkmark {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;

  width: 16px;
  height: 16px;

  z-index: 1;
}
/* phone input next to flags*/
.form .hs_phone input {
  flex: 1;

  border: 0 !important;
  border-left: 1px solid transparent;
  border-radius: 0 6px 6px 0;
}
/* end phone input */



/* file upload */
/* upload input */
.form .hs-file_upload .input {
  position: relative;
}
/* upload inside input */
.form .hs-file_upload .hs-input {
  position: relative;
  height: 92px;

  opacity: 0;
  z-index: 1;

  cursor: pointer;
}
/* link to open File Explorer */
.form .add-file__a {
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: 0;

  width: 100%;
  height: 92px;

  padding: 22px;

  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;

  color: #A9B5C7;
  background: transparent;
  border: 1px dashed #CED7E4;
  box-sizing: border-box;
  border-radius: 6px;

  transition: all 0.2s;
}

/* text in link to open File Explorer */
.form .add-file__text {
  display: inline-block;

  padding-left: 22px;

  background-size: 16px;
  background-position: left top;
  background-repeat: no-repeat;
}
/* hyperlink in link to open File Explorer */
.form .add-file__hyperlink {
  display: inline-block;

  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;

  color: #181B21;
  border-bottom: solid 2px rgba(24, 27, 33, 0.12);

  transition: .2s;
}
/* text in link to open File Explorer */
.form .add-file__text-drag,
.form .add-file__text-drop {
  display: none;
  position: absolute;
  bottom: -20px;

  width: calc(100% - 34px);

  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;

  color: #225FBF;

  transition: bottom 0s;
}
/* notes under input to upload */
.form .add-file__legend {
  margin-top: 8px;
  margin-bottom: 0;

  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;

  color: #99A5B8;
}
/* file which added ul */
.form .hs_file_upload__file-list {
  margin: 0;
  padding: 0;

  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;

  list-style: none;
  color: #505966;

  cursor: pointer;
}
/* file which added li */
.form .hs_file_upload__file-name {
  position: relative;
  overflow: hidden;

  margin-top: 10px;
  padding: 8px 40px 8px 12px;

  background-color: #F1F4F9;
  border-radius: 6px;
}
/* svg image to delete file */
.form .hs_file_upload__file-name_bin {
  position: absolute;
  right: 0;
  top: 0;
}
/* end file upload */



/* private policy */
/*container private policy*/
/*.form .legal-consent-container * {*/
/*    margin: 0 !important;*/
/*}*/
/*checkbox*/

.form .hs-form-booleancheckbox {
  margin: 0;
}

.form .hs-form-booleancheckbox .hs-input {
  width: 15px !important;
  height: 15px;

  margin-left: 3px;
  margin-top: 4px;
}
/*text private policy*/
/*.form .legal-consent-container .hs-form-booleancheckbox-display > span {*/
/*    display: block;*/

/*    margin-left: 20px;*/
/*}*/
/*text private policy*/
.form .legal-consent-container .hs-form-booleancheckbox-display > span,
.form .legal-consent-container .hs-form-booleancheckbox-display > span p {
  display: block;

  margin-left: 1rem !important;
}

.form .legal-consent-container .hs-field-desc.checkbox-desc {
  margin: -12px 0 0 21px;
}
/* end private policy */


/* reCaptcha */
/*field recaptcha*/
.form .legal-consent-container ~ .hs_recaptcha {
  margin-top: 18px;
}
/*inside field recaptcha*/
.form .grecaptcha-badge {
  margin: 0 auto;
}
/* end reCaptcha */
/*button submit*/
.form input[type="submit"] {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 14px 28px;

  color: #FFFFFF;
  background: #3A7BE0;

  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;

  text-decoration: none;
  border-radius: 5px;
  border: none;
  cursor: pointer;

  transition: background-color .2s ease-in-out;
}

.form-contact-us input[type="submit"]:hover,
.form input[type="submit"]:hover {
  background-color: #498CF5;
}
.form-contact-us input[type="submit"]:active,
.form input[type="submit"]:active {
  background-color: #2365CD;
}




.form select {
  -moz-appearance:none; /* Firefox */
  -webkit-appearance:none; /* Safari and Chrome */
  appearance:none;

  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: 95%;
}


/* .form .hs-input {
    width: 100%!important;
    padding: 12px 16px;

    color: #181B21;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 24px;

    background-color: #F1F4F9;
    border-radius: 8px;
    border: 1px solid #F1F4F9;
} */
/*placeholder in input*/
.form .hs-input::placeholder  {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;

  color: #717C8C;
}
/*input focus*/
.form .hs-input:focus {
  background-color: #FFFFFF;
  border: 1px solid #3A7BE0;
  border-radius: 6px;
  outline: none;
}
/*text p in private policy*/
.form .legal-consent-container p {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;

  color: #505966;
}
/*link in private policy*/
.form .legal-consent-container a {
  /*margin: 2px 0 50px;*/

  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;

  white-space: nowrap;
  color: #3A7BE0 !important;

  text-decoration: revert;
  border: none;

  transition: all .2s ease-in-out;
}
.form .legal-consent-container a:hover {
  color: #448DFF !important;
}
.form .legal-consent-container a:active {
  color: #2365CD !important;
}
/*button submit*/
.form .hs_submit {
  margin-top: 32px;
}


@media (max-width:  1199.5px) {

}

@media (max-width: 1023.5px) {

}

@media (max-width: 767.5px) {

}

/* upload */
/*field to upload file drag*/
.form .hs-file_upload.drag .add-file__a {
  background: rgba(34, 95, 191, 0.06);

  border: 1px dashed #225FBF;

  transition: all 0.2s;
}
/*field to upload file drop*/
.form .hs-file_upload.drop .add-file__a {
  background: rgba(34, 95, 191, 0.12);

  border: 1px dashed #225FBF;

  transition: all 0.2s;
}
/*text in field to upload file*/
.form .hs-file_upload.drag .add-file__text, .form .hs-file_upload.drop .add-file__text {
  display: none;
}
/*text in field to upload file*/
.form .hs-file_upload.drop .add-file__text-drag, .form .hs-file_upload.drag .add-file__text-drop {
  display: none;
}
/* hyperlink in link to open File Explorer */
.form .hs-file_upload .input:hover .add-file__hyperlink {
  color: #225FBF;
  border-bottom: solid 2px #3A7BE0;
}
/*text in field to upload file*/
.form .hs-file_upload.drag .add-file__text-drag,
.form .hs-file_upload.drop .add-file__text-drop {
  display: block;
  width: max-content;
  bottom: inherit;
}
/*input to upload*/
.form .hs-file_upload .hs-input:focus {
  background: rgba(34, 95, 191, 0.06);

  border: 1px dashed #225FBF;
}
/*phone field*/
.form .hs_phone .hs_phone-prefix.active {
  border-right: 1px solid #225FBF;
}
/*arrow in phone input*/
.form .hs_phone .hs_phone-prefix.active .hs_phone-prefix__content_arrow {
  transform: rotate(180deg);
}
/* list of flags */
.form .hs_phone .hs_phone-prefix.active .hs_phone__option-list {
  z-index: 2;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(39, 43, 51, 0.06), 0 8px 12px rgba(39, 43, 51, 0.04);
  border-radius: 6px;
  position: absolute;
  top: 54px;
  display: block;
  padding: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid transparent;
  list-style: none;
  width: 298px;
  height: 240px;
  overflow: auto;
}
/* list of flags scrollbar-thumb*/
.form .hs_phone .hs_phone-prefix.active .hs_phone__option-list::-webkit-scrollbar-thumb {
  background-color: #E6ECF4;
  border: 5px solid #fff;
  border-radius: 11px;
  background-clip: padding-box;
}
/* list of flags webkit-scrollbar*/
.form .hs_phone .hs_phone-prefix.active .hs_phone__option-list::-webkit-scrollbar {
  width: 16px;
}

.form .hs_phone .label--active {
  left: 108px !important;
}
/* phone input */
.form .hs_phone .input.active {
  border: 1px solid #225FBF;
}
/* phone input */
.form .hs_phone .input:hover {
  border: 1px solid #225FBF;
}

.form .hs_phone .input:hover input {
  border: 0;
  border-left: 1px solid #225FBF;
}

.hs_phone__option-list li:hover {
  background-color: #F1F4F9;
}

.hs_phone__option-list li:active {
  background-color: #DAE1EC;
}

.hs_phone__option-list li.active .hs_phone__option-checkmark {
  display: block;
}

.hs_file_upload__file-name:hover {
  background-color: #E6ECF4;
}

.hs_file_upload__file-name:active {
  background-color: #DAE1EC;
}

.hs_file_upload__file-name.error {
  color: #E43E3E;
}

.hs_file_upload__file-name:hover .hs_file_upload__file-name_bin rect {
  fill: #DAE1EC;
}

.hs_file_upload__file-name:active .hs_file_upload__file-name_bin rect {
  fill: #CED7E4;
}

.form .hs_phone.active label:not(.hs-error-msg) {
  left: 118px;
}

.form .hs_recaptcha {
  width: max-content;
}

.form .form-form-footer {
  margin-top: -20px;
  padding: 48px 96px 64px 96px;
  border-radius: 0 0 6px 6px;
  background-color: #225FBF;
  transform: translate(-96px, 48px);
  width: calc(100% + 192px);
}

.form .form-form-footer .hs-form-required {
  display: none;
}

.submitted-message img {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;

  border-radius: 100%;
}
.submitted-message .message-title {
  font-size: 38px;
  line-height: 118%;
  font-weight: 800;
  text-align: center;
  margin-bottom: 44px;
}
.submitted-message .message-image {
  margin-bottom: 0;
}
.submitted-message .message-desc {
  text-align: center;
  font-weight: 500;
  line-height: 22.4px;
  margin-bottom: 40px;
}
.submitted-message .message-link {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 130%;
  border-bottom: none;
  font-weight: 700;
}
.submitted-message .message-link-wrap {
  background-color: #3a7be0;
  border-bottom: none;
  border-radius: 5px;
  padding: 14px 28px;
  text-align: center;
}

.submitted-message strong {
  display: block;
  margin-bottom:  0;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;

  text-transform: none;

  color: #181B21;
}

.submitted-message p {
  margin: 0;

  font-family: 'Manrope', sans-serif;

  font-size: 14px;
  line-height: 20px;

  color: #181B21;
}

.submitted-message a {
  color: inherit;
  border-bottom: 2px solid rgba(24,27,33,0.12);
  transition: color .2s ease-in-out, border-bottom-color .2s ease-in-out;
}

.form-section .legal-consent-container {
  width: 260px;
}

@media(max-width: 1199.5px) {
  .form-section .form__form {
    padding: 96px 88px 0;
  }
  .form .form-form-footer {
    padding: 48px 88px 64px 88px;
    transform: translate(-88px, 48px);
    width: calc(100% + 176px);
  }
}

@media(max-width: 1023.5px) {
  .form-section .form__form {
    padding: 88px 80px 0;
  }

  .form__form-subtitle {
    margin-bottom: 32px;
  }

  .form .form-form-footer {
    padding: 48px 80px 56px 80px;
    transform: translate(-80px, 48px);
    width: calc(100% + 160px);
  }
}


@media(max-width: 767.5px) {
  .form-section .form__form {
    width: calc(100% - 32px);
    padding: 48px 32px 25px;
  }
  .submitted-message .message-title {
    font-size: 32px;
  }

  .form__form-title {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 28px;
  }

  .form__form-subtitle {
    margin-bottom: 24px;
  }

  .form .form-form-footer {
    padding: 24px 32px 56px 32px;
    transform: translate(-32px, 24px);
    width: calc(100% + 64px);
  }

  .form .hs-form-field {
    margin-bottom: 16px;
  }

  .form .hs-input {
    /*font-size: 14px;*/
    /*line-height: 22px;*/
  }
  .form .hs-input::placeholder  {
    font-size: 14px;
    line-height: 22px;
  }
}*/


/* 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%;
}
.hidden {
  display: none;
  visibility: hidden;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 0.7rem;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
.body-container-wrapper {
  position: relative;
}

.container {
  max-width: 1432px;
  margin: 0 auto;
  padding: 0 16px;
}

.editor-only {
  display: none;
}
.hs-inline-edit .editor-only {
  position: relative;
  display: block;
}
.hs-inline-edit .editor-only:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(255, 0, 0, 0.1);
  z-index: 3;
}

.dnd-section .dnd-column {
  padding: 0;
}
.row-fluid [class*='span'] {
  min-height: 0!important;
}

/* PAGINATION
  ****start****
*/
.pagination {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;

  transform: translateX(-50%);
}
.pagination-item {
  min-width: 10px;
  height: 10px;

  margin-right: 10px;

  background-color: #8490a2;
  border-radius: 16px;
  cursor: pointer;

  transition: min-width .2s ease-in-out,background-color .2s ease-in-out;
}

.pagination-item.active {
  background-color: #3a7be0;
  min-width: 63px;
}

/* PAGINATION
  ****END****
*/


@media (max-width:  1599.5px) and (min-width: 1400px) {
  .container {
    max-width: 1220px;
  }
}

@media (max-width:  1399.5px) and (min-width: 1199.5px) {
  .container {
    max-width: 1152px;
  }
}

@media (max-width:  1199.5px) and (min-width: 1024px) {
  .container {
    max-width: 1010px;
  }
}

@media (max-width: 1023.5px) and (min-width: 768px) {
  .container {
    max-width: 704px;
  }
}
@media (max-width: 767.5px) {
  .container {
    max-width: 100%;
  }
}



/*!* 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%;*/
/*}*/
/*body div#hs-eu-cookie-confirmation  {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    width: 680px !important;*/
/*    left: 24px !important;*/
/*    transform: none !important;*/
/*}*/
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-eu-decline-button {
    display: none !important;
}
button#hs-modal-accept-all,
button#hs-modal-save-settings {
    cursor: pointer;
}
/*body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p {*/
/*    color: #505966!important;*/
/*    font-family: 'Manrope', sans-serif !important;*/
/*    font-size: 16px!important;*/
/*    font-weight: 500!important;*/
/*    line-height: 26px!important;*/
/*}*/
/*body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a {*/
/*    font-family: 'Manrope', sans-serif !important;*/
/*    font-size: 16px!important;*/
/*    font-weight: 500!important;*/
/*    color: #3A7BE0!important;*/
/*    text-decoration: none!important;*/
/*    line-height: 26px!important;*/
/*}*/
/*body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p > strong {*/
/*    color: #181B21!important;*/
/*    font-family: 'Manrope', sans-serif !important;*/
/*    font-size: 22px!important;*/
/*    font-weight: 600!important;*/
/*    line-height: 31px!important;*/
/*}*/

/*body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-eu-cookie-settings-button {*/
/*    font-family: 'Manrope', sans-serif !important;*/
/*    font-size: 16px!important;*/
/*    font-weight: 700!important;*/
/*    order: 1 !important;*/
/*    line-height: 21px!important;*/
/*    border: 1px #3A7BE0 solid !important;*/
/*    margin: 0!important;*/
/*    text-decoration: none!important;*/
/*    background: #FFFFFF!important;*/
/*    padding: 14px 28px !important;*/
/*    border-radius: 5px !important;*/
/*    color: #3A7BE0!important;*/
/*}*/

/*body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner::before {*!*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 62px;*/
/*    left: 15px;*/

/*    width: 177px;*/
/*    height: 171px;*/
/*    background-size: cover;*/
/*    margin: auto 0;*/
/*    background-image: url('//39975897.fs1.hubspotusercontent-na1.net/hubfs/39975897/raw_assets/public/datalark-theme/images/cookie.png');*/

/*}*/
/*body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner {*/
/*    padding-left: 228px;*/
/*}*/
/*body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-eu-policy-wording {*/
/*    margin-right: 0;*/
/*}*/
/*body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-eu-cookie-confirmation-buttons-area {*/
/*    margin-right: 0;*/
/*    margin-top: 30px;*/
/*    justify-content: flex-start;*/
/*}*/
/*body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-eu-confirmation-button {*/
/*    margin: 0 !important;*/
/*    height: auto !important;*/
/*    margin-right: 16px !important;*/
/*    font-family: 'Manrope', sans-serif !important;*/
/*    font-size: 16px!important;*/
/*    font-weight: 700!important;*/
/*    line-height: 21px!important;*/
/*    background: #3A7BE0!important;*/
/*    padding: 14px 50px !important;*/
/*    border-radius: 5px !important;*/
/*    color: #FFFFFF!important;*/
/*    text-decoration: none!important;*/
/*}*/
/* 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;
  }
}

.lazybg {
    background-image: none!important;
}