/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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

/* CSS variables */

:root {
  --gap: 2.127659574%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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: 18px;
  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_i_need_help_with {
  margin-top: 70px;
  margin-bottom: 70px;
}

@media (max-width: 1280px) {
  .hs_i_need_help_with {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}

.hs_here_is_more_info_about_my_project {
  margin-bottom: 70px;
}

@media (max-width: 1280px) {
  .hs_here_is_more_info_about_my_project {
    margin-bottom: 48px;
  }
}

li.hs-form-checkbox {
  margin-bottom: 36px;
}

.hs_zxccxzcczx.hs-zxccxzcczx.hs-fieldtype-checkbox.field.hs-form-field {
  margin-bottom: 20px;
}

#my-details-id {
  font-size: 20px;
}

ul.inputs-list.multi-container {
  margin-top: 32px;
}

textarea.hs-input:focus {
  background-color: 1px solid #231f20 !important;
  outline: none !important;
}

textarea.hs-input {
  font-size: 16px;
}

.hs_phone.hs-phone.hs-fieldtype-phonenumber.field.hs-form-field {
  margin-bottom: 22px;
}

@media (min-width: 1280px) {
  #my-details-id {
    font-size: 24px;
  }

  textarea.hs-input {
    font-size: 18px;
  }

  .hs_zxccxzcczx.hs-zxccxzcczx.hs-fieldtype-checkbox.field.hs-form-field {
    margin-bottom: 38px;
  }

  li.hs-form-checkbox {
    margin-bottom: 42px;
  }
}

.hs-form-field:first-child {
  /*   margin-bottom: 48px; */
}

@media (min-width: 1280px) {
  .hs-form-field:first-child {
    /*   margin-bottom: 70px; */
  }
}

.hs-form-field:nth-child(2) {
  /*   margin-bottom: 48px; */
}

@media (min-width: 1280px) {
  .hs-form-field:nth-child(2) {
    /*   margin-bottom: 70px; */
  }
}

/* Labels */

form label {
  display: block;
  font-size: 16px;
}

form label:first-child {
}

@media (min-width: 1280px) {
  form label {
    display: block;
    font-size: 18px;
  }

  form label:first-child {
  }
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

.hs-form-checkbox-display > span {
  border: #cdcdcd solid 1px;
  padding: 10px 14px 10px 14px;
  width: 100%;
  height: 100%;
  border-radius: 46px;
  cursor: pointer;
  margin-right: 16px;
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
  -ms-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

.hs-form-checkbox-display > input {
  display: none;
  outline: none;
}

.hs_i_need_help_with > label {
  font-size: 20px;
  font-weight: bold;
}

.hs_zxccxzcczx > label {
  font-size: 20px;
  font-weight: bold;
}

.hs_here_is_more_info_about_my_project.hs-here_is_more_info_about_my_project.hs-fieldtype-textarea.field.hs-form-field
  > label {
  font-size: 20px;
  font-weight: bold;
}

@media (min-width: 1280px) {
  .hs_here_is_more_info_about_my_project.hs-here_is_more_info_about_my_project.hs-fieldtype-textarea.field.hs-form-field
    > label {
    font-size: 24px;
    font-weight: bold;
  }

  .hs_i_need_help_with > label {
    font-size: 24px;
    font-weight: bold;
  }

  .hs_zxccxzcczx > label {
    font-size: 24px;
    font-weight: bold;
  }
}

.inputs-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 10px;
}

.hs_submit > .actions > input {
  margin-bottom: 70px;
  padding: 10px 22px 10px 22px;
  border-radius: 76px;
  font-size: 18px;
}

@media (min-width: 1280px) {
  .hs_submit > .actions > input {
    padding: 16px 32px 16px 32px;
    border-radius: 76px;
    font-size: 20px;
  }
}

textarea.hs-input {
  border: #cdcdcd solid 1px;
  border-radius: 0px;
  resize: none;
  width: 100%;
  height: 155px;
  padding: 10px;
  margin-top: 22px;
}

input[type="text"] {
  border: #cdcdcd solid 1px !important;
  border-radius: 0px !important;
  resize: none;
  width: 100%;
  height: 47px;
  padding: 10px;
  outline: none;
  font-size: 16px;
}

input[type="tel"] {
  border: #cdcdcd solid 1px !important;
  border-radius: 0px !important;
  resize: none;
  width: 100%;
  height: 47px;
  padding: 10px;
  outline: none;
  font-size: 16px;
}

input[type="email"] {
  border: #cdcdcd solid 1px !important;
  border-radius: 0px !important;
  resize: none;
  width: 100%;
  height: 47px;
  padding: 10px;
  outline: none;
  font-size: 16px;
}

.hs_full_name.hs-full_name.hs-fieldtype-text.field.hs-form-field > label {
  font-size: 12px;
  margin-bottom: 6px;
  margin-top: 24px;
  color: #231f20;
}

.hs_email.hs-email.hs-fieldtype-text.field.hs-form-field > label {
  font-size: 12px;
  margin-bottom: 6px;
  margin-top: 31px;
  color: #231f20;
}

.hs_company.hs-company.hs-fieldtype-text.field.hs-form-field > label {
  font-size: 12px;
  margin-bottom: 6px;
  margin-top: 31px;
  color: #231f20;
}

.hs_phone.hs-phone.hs-fieldtype-phonenumber.field.hs-form-field > label {
  font-size: 12px;
  margin-bottom: 6px;
  margin-top: 31px;
  color: #231f20;
}

.hs_error_rollup {
  margin-top: 0.35rem;
}

input[type="checkbox"] {
  accent-color: #231f20;
}

label.hs-main-font-element {
  font-size: var(--font-size-error);
  color: red;
}

.hs-error-msg {
  font-size: var(--font-size-error);
}

@media (min-width: 1280px) {
  .hs_full_name.hs-full_name.hs-fieldtype-text.field.hs-form-field > label {
    font-size: 14px;
    margin-bottom: 4px;
    margin-top: 22px;
  }

  .hs_email.hs-email.hs-fieldtype-text.field.hs-form-field > label {
    font-size: 14px;
    margin-bottom: 4px;
    margin-top: 37px;
  }

  .hs_company.hs-company.hs-fieldtype-text.field.hs-form-field > label {
    font-size: 14px;
    margin-bottom: 4px;
    margin-top: 37px;
  }

  .hs_phone.hs-phone.hs-fieldtype-phonenumber.field.hs-form-field > label {
    font-size: 14px;
    margin-bottom: 4px;
    margin-top: 37px;
  }

  /* .inputs-list {
    display: flex;
    flex-wrap: wrap;
    width: 936px;
    margin-top: 10px;
  } */

  textarea.hs-input {
    border: #cdcdcd solid 1px;
    border-radius: 0px;
    resize: none;
    width: 936px;
    height: 155px;
    padding: 10px;
    margin-top: 22px;
  }

  input[type="text"] {
    border: #cdcdcd solid 1px !important;
    border-radius: 0px !important;
    resize: none;
    width: 480px;
    height: 55px;
    outline: none;
    padding: 12px;
    font-size: 18px;
  }

  input[type="text"]:focus {
    outline: none !important;
    border: 1px solid #231f20 !important;
  }

  input[type="tel"] {
    border: #cdcdcd solid 1px !important;
    border-radius: 0px !important;
    resize: none;
    width: 480px;
    height: 55px;
    outline: none;
    padding: 12px;
    font-size: 18px;
  }

  input[type="tel"]:focus {
    outline: none !important;
    border: 1px solid #231f20 !important;
  }

  input[type="email"] {
    border: #cdcdcd solid 1px !important;
    border-radius: 0px !important;
    resize: none;
    width: 480px;
    height: 55px;
    outline: none;
    padding: 12px;
    font-size: 18px;
  }

  input[type="email"]:focus {
    outline: none !important;
    border: 1px solid #231f20 !important;
  }

  .hs-input:focus {
    outline: none !important;
    border: 1px solid #231f20 !important;
  }
}

input[type="file"]::file-selector-button {
  display: none;
}

.hs_file > div > input {
  border: none !important;
  width: 100%;
}

form > .hs_file > label {
  margin-top: 0px !important;
  text-align: center;
}

.hs_file.hs-file.hs-fieldtype-file.field.hs-form-field {
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: row;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 48px;
}

@media (min-width: 1280px) {
  .hs_file.hs-file.hs-fieldtype-file.field.hs-form-field {
    margin-top: 22px;
    margin-bottom: 70px;
  }
}

.hs_file.hs-file.hs-fieldtype-file.field.hs-form-field
  > .input
  > .hs-input:focus {
  border: none !important;
  outline: none !important;
}

.hs_file > label {
  font-size: 18px;
  border: #231f20 solid 1px;
  padding: 12px 20px 12px 20px;
  border-radius: 76px;
  width: 150px;
  cursor: pointer;
}

.hs_zxccxzcczx {
  /*     margin-bottom: 48px; */
}

label.hs-form-booleancheckbox-display {
  margin-top: 16px;
}

.hs_submit.hs-submit {
  margin-top: 36px;
}

label.hs-form-booleancheckbox-display {
  font-size: 12px;
}

@media (min-width: 1280px) {
  .hs_zxccxzcczx {
    /*     margin-bottom: 70px; */
  }

  label.hs-form-booleancheckbox-display {
    font-size: 14px;
  }

  .hs_submit.hs-submit {
    margin-top: 62.5px;
  }

  .hs_file > label {
    font-size: 20px;
    border: #231f20 solid 1px;
    padding: 16px 32px 16px 32px;
    border-radius: 76px;
    width: 184px;
    cursor: pointer;
  }

  .hs-form-checkbox-display input:hover ~ span {
    border: #757474 solid 1px;
  }
}

.hs-form-checkbox-display input:checked ~ span {
  border: #231f20 solid 2px;
  box-sizing: border-box;
  padding: 9px 13px 9px 13px;
}

.hs-form-checkbox-display input:checked:hover ~ span {
  border: #231f20 solid 2px;
  box-sizing: border-box;
  padding: 9px 13px 9px 13px;
}

.hs-fieldtype-text > input {
  border: #757474 solid 1px;
  border-radius: 0px;
  resize: none;
  width: 936px;
  height: 155px;
  padding: 10px;
}

/* 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%;
  background-color: red;
  border: pink solid 1px; */
}

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

form .hs-richtext 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 {
  display: none;
}

.hs-input.invalid.error {
  border-color: #f31c2a !important;
}

.hs-error-msg {
  color: #f31c2a !important;
  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
*/


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

/* Axabee variables */

:root {
  --color-black: #231F20;
  --color-gray: #757474;
  --color-red: #F31C2A;
  --color-white: #FFFFFF;

  --color-gray-2: #CDCDCD;
  --color-gray-3: #d7d7d7;
  --color-gray-4: #F8F8F8;
  --color-gray-5: #757474;

  --color-primary: #231F20; /* #231F20 */
  --color-primary-inverted: #F8F8F8; /* #FFFFFF */
  --color-secondary: #FFFFFF; /* #F5F5F5 */
  --color-gray-600: #757474; /* #757474 */
  --color-gray-400: #CDCDCD; /* #CDCDCD */
  --color-gray-100: #EBEAEA; /* #EBEAEA */
  --color-gray-50: #F8F8F8; /* #F8F8F8 */
}
:root {
  --space-vertical-xxxs: 15px;
  --space-vertical-xxs: 20px;
  --space-vertical-xs: 40px;
  --space-vertical-s: 70px;
  --space-vertical-m: 100px;
  --space-vertical-l: 120px;
  --space-vertical-x: 160px;

  --space-vertical-tablet-xs: 32px;
  --space-vertical-tablet-m: 100px;
  --space-vertical-tablet-l: 140px;

  --space-vertical-mobile-xxxs: 10px;
  --space-vertical-mobile-xxs: 20px;
  --space-vertical-mobile-xs: 23px;
  --space-vertical-mobile-s: 36px;
  --space-vertical-mobile-m: 41px;
  --space-vertical-mobile-l: 46px;
  --space-vertical-mobile-x: 50px;
  --space-vertical-mobile-xl: 68px;
  --space-vertical-mobile-xll: 82px;

  /* sprawdzić czy potrzebne */
  --space-horizontal-s: 26px;
  --space-horizontal-sm: 32px;
  --space-horizontal-m: 48px;
  --space-horizontal-l: 72px;
  --space-horizontal-x: 96px;

  --space-horizontal-mobile: 26px;
  --space-horizontal-tablet: 32px;
  --space-horizontal-desktop: 80px;

  /* moduł Reason to chose ma elipstyczne kola */
  --elispe-padding-horizontal: 20px;

   /* Spacing top/bottom */
   --space-desktop-s: 100px;
   --space-desktop-m: 146px;
   --space-desktop-l: 160px;
   --space-desktop-xl: 200px;
 
   --space-tablet-s: 70px;
   --space-tablet-m: 86px;
   --space-tablet-l: 100px;
   --space-tablet-xl: 112px;
  
   --space-mobile-s: 41px;
   --space-mobile-m: 72px;
   --space-mobile-l: 68px;
   --space-mobile-xl: 72px; 
   
  /* Nowy sposób definicji spacingów dla klas padding-160-100. padding-100-160 itd.... */

  --d40: 40px;
  --d52: 52px;
  --d60: 60px;
  --d68: 68px;
  --d72: 72px;
  --d80: 80px;
  --d100: 100px;
  --d112: 112px;
  --d120: 120px;
  --d160: 160px;
  --d200: 200px;
}
:root {
  /* Font families */
  --font-family-primary: "Poppins", sans-serif;
  --font-family-secondary: "Poppins", sans-serif;

  /* Font weights */
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  /* Line heights */
  --line-height-100: 1em;
  --line-height-110: 1.1em;
  --line-height-120: 1.2em;
  --line-height-140: 1.4em;
  --line-height-130: 1.3em;
  --line-height-140: 1.4em;
  --line-height-150: 1.5em;
  --line-height-160: 1.6em;
  --line-height-170: 1.7em;



  /* Headlines - Desktop */
  --font-size-h1: 78px;
  --font-size-h2: 64px;
  --font-size-h3: 46px;
  --font-size-h4: 32px;
  --font-size-h5: 24px;
  --font-size-h6: 20px;

  /* Headlines - Tablet */
  --font-size-h1-tablet: 50px;
  --font-size-h2-tablet: 46px;
  --font-size-h3-tablet: 32px;
  --font-size-h4-tablet: 24px;
  --font-size-h5-tablet: 20px;
  --font-size-h6-tablet: 18px;

  /* Headlines - Mobile */
  --font-size-h1-mobile: 44px;
  --font-size-h2-mobile: 32px;
  --font-size-h3-mobile: 30px;
  --font-size-h4-mobile: 22px;
  --font-size-h5-mobile: 20px;
  --font-size-h6-mobile: 18px;

  /* Body, Labels - Desktop */
  --font-size-body-1: 24px;
  --font-size-body-2: 22px;
  --font-size-body-3: 18px;
  --font-size-description: 14px;
  --font-size-error: 14px;
  --font-size-label: 20px;
  --font-size-number: 18px;

  /* Body, Labels - Tablet */
  --font-size-body-1-tablet: 20px;
  --font-size-body-2-tablet: 18px;
  --font-size-body-3-tablet: 16px;
  --font-size-description-tablet: 12px;
  --font-size-error-tablet: 14px;
  --font-size-label-tablet: 18px;
  --font-size-number-tablet: 16px;

  /* Body, Labels - moobile */
  --font-size-body-1-mobile: 20px;
  --font-size-body-2-mobile: 18px;
  --font-size-body-3-mobile: 16px;
  --font-size-description-mobile: 12px;
  --font-size-error-mobile: 14px;
  --font-size-label-mobile: 18px;
  --font-size-number-mobile: 16px;

  /* Buttons */
  --button-small-font-size: 16px;
  --button-small-line-height: 1.5em;

  --font-size-button-link-desktop: 20px;
  --font-size-button-link-tablet: 18px;
  --font-size-button-link-mobile: 16px;
  --line-height-button-link: 1.3em;

  /* ButtonLink */
  --font-size-button-link: 20px;
  --line-height-button-link: 1.3em;

  /* ButtonUnderline */
  --font-size-button-underline: 20px;
  --font-size-button-underline-tablet: 18px;
  --font-size-button-underline-mobile: 14px;
  --line-height-button-underline: 1.4em;




  --font-size-h1-desktop: 78px; /* 78px */
  --font-weight-h1-desktop: 700;
  --font-size-h1-tablet: 50px; /* 50px */
  --font-weight-h1-tablet: 700;
  --font-size-h1-mobile: 44px; /* 44px */
  --font-weight-h1-mobile: 700;

  --font-size-h2-desktop: 56px; /* 56px */
  --font-weight-h2-desktop: 700;
  --font-size-h2-tablet: 42px; /* 42px */
  --font-weight-h2-tablet: 700;
  --font-size-h2-mobile: 32px; /* 32px */
  --font-weight-h2-mobile: 700;

  --font-size-h3-desktop: 46px; /* 46px */
  --font-weight-h3-desktop: 700;
  --font-size-h3-tablet: 32px; /* 32px */
  --font-weight-h3-tablet: 700;
  --font-size-h3-mobile: 30px; /* 30px */
  --font-weight-h3-mobile: 700;

  --font-size-h4-desktop: 32px; /* 32px */
  --font-weight-h4-desktop: 700;
  --font-size-h4-tablet: 24px; /* 24px */
  --font-weight-h4-tablet: 700;
  --font-size-h4-mobile: 22px; /* 22px */
  --font-weight-h4-mobile: 700;

  --font-size-h5-desktop: 24px; /* 24px */
  --font-weight-h5-desktop: 700;
  --font-size-h5-tablet: 20px; /* 20px */
  --font-weight-h5-tablet: 700;
  --font-size-h5-mobile: 20px; /* 20px */
  --font-weight-h5-mobile: 700;

  --font-size-h6-desktop: 22px; /* 22px */
  --font-weight-h6-desktop: 700;
  --font-size-h6-tablet: 18px; /* 18px */
  --font-weight-h6-tablet: 700;
  --font-size-h6-mobile: 18px; /* 18px */
  --font-weight-h6-mobile: 700;


  --font-size-body1-desktop: 24px; /* 24px */
  --font-weight-body1-desktop: 400;
  --font-size-body1-tablet: 20px; /* 20px */
  --font-weight-body1-tablet: 400;
  --font-size-body1-mobile: 20px; /* 20px */
  --font-weight-body1-mobile: 400;

  --font-size-body2-desktop: 22px; /* 22px */
  --font-weight-body2-desktop: 400;
  --font-size-body2-tablet: 18px; /* 18px */
  --font-weight-body2-tablet: 400;
  --font-size-body2-mobile: 18px; /* 18px */
  --font-weight-body2-mobile: 400;

  --font-size-body3-desktop: 18px; /* 18px */
  --font-weight-body3-desktop: 400;
  --font-size-body3-tablet: 16px; /* 16px */
  --font-weight-body3-tablet: 400;
  --font-size-body3-mobile: 16px; /* 16px */
  --font-weight-body3-mobile: 400;

  --font-size-description-desktop-large: 32px; /* 32px */
  --font-weight-description-desktop-large: 400;
  --font-size-description-desktop-medium: 18px; /* 18px */
  --font-weight-description-desktop-medium: 400;
  --font-size-description-desktop-small: 18px; /* 18px */
  --font-weight-description-desktop-small: 400;

  --font-size-description-tablet-large: 22px; /* 22px */
  --font-weight-description-tablet-large: 400;
  --font-size-description-tablet-medium: 16px; /* 16px */
  --font-weight-description-tablet-medium: 400;
  --font-size-description-tablet-small: 12px; /* 12px */
  --font-weight-description-tablet-small: 400;

  --font-size-description-mobile-large: 20px; /* 20px */
  --font-weight-description-mobile-large: 400;
  --font-size-description-mobile-medium: 16px; /* 16px */
  --font-weight-description-mobile-medium: 400;
  --font-size-description-mobile-small: 12px; /* 12px */
  --font-weight-description-mobile-small: 400;

  --font-size-label-desktop: 20px; /* 20px */
  --font-weight-label-desktop: 400;
  --font-size-label-tablet: 18px; /* 18px */
  --font-weight-label-tablet: 400;
  --font-size-label-mobile: 18px; /* 18px */
  --font-weight-label-mobile: 400;

}
:root {
    --breakpoint-desktop-large: 1440px;
    --breakpoint-desktop-small: 1280px;
    --breakpoint-tablet: 990px;
    --breakpoint-mobile: 768px;
}
:root {
    --button-border-radius: 76px;
    --button-padding-vertical: 16px;
    --button-small-padding-vertical: 12px;
    --button-padding-vertical-mobile: 16px;
    --button-small-padding-horizontal: 30px;
    --button-padding-horizontal: 32px;
    --button-line-height: 23px;
    --button-line-height-mobile: 27px;
    --elipse-padding-horizontal: 12px
}
.section {
  overflow-x: hidden;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .section {
    padding-left: var(--space-horizontal-s);
    padding-right: var(--space-horizontal-s);
  }
}

@media (min-width: 1280px) {
  .section.header-bar {
    max-width: 100%;
    margin: 0 80px;
    padding: 0px !important;
  }
}
@media (max-width: 1440px) {
  .section {
    padding-left: var(--space-horizontal-tablet) !important;
    padding-right: var(--space-horizontal-tablet) !important;
  }
}
@media (max-width: 767px) {
  .section {
    padding-left: var(--space-horizontal-mobile) !important;
    padding-right: var(--space-horizontal-mobile) !important;
  }
}
.padding-100-160 {
  padding-top: var(--d100) !important;
  padding-bottom: var(--d160) !important;
}

.padding-160-100 {
  padding-top: var(--d160) !important;
  padding-bottom: var(--d100) !important;
}

.padding-160-160 {
  padding-top: var(--d160) !important;
  padding-bottom: var(--d160) !important;
}

.padding-200-100 {
  padding-top: var(--d200) !important;
  padding-bottom: var(--d100) !important;
}

@media (max-width: 989px) {
  .padding-100-160 {
    padding-top: var(--d68) !important;
    padding-bottom: var(--d100) !important;
  }
  .padding-160-100 {
    padding-top: var(--d100) !important;
    padding-bottom: var(--d72) !important;
  }
  .padding-160-160 {
    padding-top: var(--d100) !important;
    padding-bottom: var(--d100) !important;
  }
  .padding-200-100 {
    padding-top: var(--d112) !important;
    padding-bottom: var(--d72) !important;
  }
}
@media (max-width: 767px) {
  .padding-100-160 {
    padding-top: var(--d68) !important;
    padding-bottom: var(--d68) !important;
  }
  .padding-160-100 {
    padding-top: var(--d68) !important;
    padding-bottom: var(--d68) !important;
  }
  .padding-160-160 {
    padding-top: var(--d68) !important;
    padding-bottom: var(--d68) !important;
  }
  .padding-200-100 {
    padding-top: var(--d72) !important;
    padding-bottom: var(--d68) !important;
  }
}
/* FAQ */
.padding-120-120 {
  padding-top: var(--d120) !important;
  padding-bottom: var(--d120) !important;
}

.padding-100-100 {
  padding-top: var(--d100) !important;
  padding-bottom: var(--d100) !important;
}

/* Services IOS Android  We have solutions for various...*/
.padding-100-40 {
  padding-top: var(--d100) !important;
  padding-bottom: var(--d40) !important;
}

@media (max-width: 989px) {
  .padding-100-40 {
    padding-top: var(--d72) !important;
  }
}
@media (max-width: 767px) {
  .padding-100-40 {
    padding-top: var(--d68) !important;
  }
}
.padding-160-40 {
  padding-top: var(--d160) !important;
  padding-bottom: var(--d40) !important;
}

@media (max-width: 989px) {
  .padding-160-40 {
    padding-top: var(--d100) !important;
  }
}
@media (max-width: 767px) {
  .padding-160-40 {
    padding-top: var(--d68) !important;
  }
}
.padding-40-160 {
  padding-top: var(--d40) !important;
  padding-bottom: var(--d160) !important;
}

@media (max-width: 989px) {
  .padding-40-160 {
    padding-bottom: var(--d100) !important;
  }
}
@media (max-width: 767px) {
  .padding-40-160 {
    padding-bottom: var(--d68) !important;
  }
}
.padding-40-100 {
  padding-top: var(--d40) !important;
  padding-bottom: var(--d100) !important;
}

@media (max-width: 989px) {
  .padding-40-100 {
    padding-bottom: var(--d72) !important;
  }
}
@media (max-width: 767px) {
  .padding-40-100 {
    padding-bottom: var(--d68) !important;
  }
}
.module-wrapper {
  overflow-x: hidden;
  margin: 0 auto;
}

@media (max-width: 1440px) {
  .module-wrapper {
    padding-left: var(--space-horizontal-tablet) !important;
    padding-right: var(--space-horizontal-tablet) !important;
  }
}
@media (max-width: 768px) {
  .module-wrapper {
    padding-left: var(--space-horizontal-mobile) !important;
    padding-right: var(--space-horizontal-mobile) !important;
  }
}
.spacing-top-s {
  padding-top: var(--space-tablet-s);
}
.spacing-top-m {
  padding-top: var(--space-tablet-m);
}
.spacing-top-l {
  padding-top: var(--space-tablet-l);
}
.spacing-top-xl {
  padding-top: var(--space-tablet-xl);
}
@media (max-width: 768px) {
  .spacing-top-s {
    padding-top: var(--space-mobile-s);
  }
  .spacing-top-m {
    padding-top: var(--space-mobile-m);
  }
  .spacing-top-l {
    padding-top: var(--space-mobile-l);
  }
  .spacing-top-xl {
    padding-top: var(--space-mobile-xl);
  }
}
@media (min-width: 1280px) {
  .spacing-top-s {
    padding-top: var(--space-desktop-s);
  }
  .spacing-top-m {
    padding-top: var(--space-desktop-m);
  }
  .spacing-top-l {
    padding-top: var(--space-desktop-l);
  }
  .spacing-top-xl {
    padding-top: var(--space-desktop-xl);
  }
}

.spacing-bottom-s {
  padding-bottom: var(--space-tablet-s);
}
.spacing-bottom-m {
  padding-bottom: var(--space-tablet-m);
}
.spacing-bottom-l {
  padding-bottom: var(--space-tablet-l);
}
.spacing-bottom-xl {
  padding-bottom: var(--space-tablet-xl);
}
@media (max-width: 768px) {
  .spacing-bottom-s {
    padding-bottom: var(--space-mobile-s);
  }
  .spacing-bottom-m {
    padding-bottom: var(--space-mobile-m);
  }
  .spacing-bottom-l {
    padding-bottom: var(--space-mobile-l);
  }
  .spacing-bottom-xl {
    padding-bottom: var(--space-mobile-xl);
  }
}
@media (min-width: 1280px) {
  .spacing-bottom-s {
    padding-bottom: var(--space-desktop-s);
  }
  .spacing-bottom-m {
    padding-bottom: var(--space-desktop-m);
  }
  .spacing-bottom-l {
    padding-bottom: var(--space-desktop-l);
  }
  .spacing-bottom-xl {
    padding-bottom: var(--space-desktop-xl);
  }
}
@media (max-width: 1350px) {
  form {
    padding-left: var(--space-horizontal-s) !important;
    padding-right: var(--space-horizontal-s) !important;
  }
}
form ul.inputs-list.multi-container {
  display: flex;
  margin-top: 24px;
  gap: 14px 12px;
}
@media (min-width: 1280px) {
  form ul.inputs-list.multi-container {
    margin-top: var(--space-vertical-xxs);
    gap: 20px 16px;
  }
}
@media (min-width: 1280px) {
  form ul.inputs-list.multi-container {
    margin-top: 22px;
    gap: 22px 16px;
  }
}
form .hs-form-booleancheckbox a {
  color: var(--color-black);
  font-weight: bold;
}
form .hs-form-checkbox-display > span {
  display: block;
  line-height: 30px;
  margin-right: 0;
  width: auto;
}
form li.hs-form-checkbox {
  margin-bottom: 0;
}
form form .inputs-list > li {
  margin-right: 16px;
}
form .hs_zxccxzcczx,
form .hs-form-field:first-child {
  margin-bottom: 48px !important;
}
@media (min-width: 768px) {
  form .hs_zxccxzcczx,
  form .hs-form-field:first-child {
    margin-bottom: 60px !important;
  }
}
@media (min-width: 1280px) {
  form .hs_zxccxzcczx,
  form .hs-form-field:first-child {
    margin-bottom: 60px !important;
  }
}
form .hs-input.hs-fieldtype-intl-phone {
  display: flex;
}
form .hs-fieldtype-intl-phone.hs-input select {
  float: initial;
  border: #cdcdcd solid 1px !important;
  border-radius: 0px !important;
  resize: none;
  width: 100%;
  padding: 10px;
  outline: none;
  font-size: 16px;
  margin-right: 16px;
}
form input[type=email],
form input[type=tel],
form input[type=text] {
  width: 100%;
}
@media (min-width: 768px) {
  form input[type=email],
  form input[type=tel],
  form input[type=text] {
    width: 480px !important;
  }
}
form .hs-fieldtype-intl-phone.hs-input input {
  width: 100%;
}
@media (min-width: 768px) {
  form .hs-fieldtype-intl-phone.hs-input input {
    width: 480px !important;
  }
}
form .hs-fieldtype-intl-phone.hs-input select {
  width: 100%;
}
@media (min-width: 768px) {
  form .hs-fieldtype-intl-phone.hs-input select {
    width: 240px !important;
  }
}
form .hs_file.hs-file.hs-fieldtype-file.field.hs-form-field {
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: row;
  gap: var(--space-vertical-xxs);
  margin-bottom: 60px;
}
@media (max-width: 1280px) {
  form .hs_file.hs-file.hs-fieldtype-file.field.hs-form-field {
    margin-bottom: 48px !important;
  }
}
form .hs_file.hs-file.hs-fieldtype-file.field.hs-form-field > .input > .hs-input:focus {
  border: none !important;
  outline: none !important;
}
form .hs_file > label {
  width: auto;
  display: inline-block;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 16px;
  line-height: 21px;
  padding: 10px 22px;
  border: 0;
}
@media (min-width: 1280px) {
  form .hs_file > label {
    line-height: 24px;
    padding: 14px 32px;
  }
}
@media (min-width: 1280px) {
  form textarea.hs-input {
    display: block;
  }
}
form .hs-fieldtype-phonenumber.field.hs-form-field > label,
form .hs-fieldtype-text.field.hs-form-field > label {
  font-size: 18px !important;
  line-height: 30px;
  color: #757474 !important;
  margin-top: 31px !important;
}
@media (min-width: 768px) {
  form .hs-fieldtype-phonenumber.field.hs-form-field > label,
  form .hs-fieldtype-text.field.hs-form-field > label {
    margin-top: 24px !important;
  }
}
@media (min-width: 1280px) {
  form .hs-fieldtype-phonenumber.field.hs-form-field > label,
  form .hs-fieldtype-text.field.hs-form-field > label {
    margin-top: 24px !important;
  }
}
form .hs_submit > .actions > input {
  border: 0;
  font-size: 20px;
  line-height: 27px;
  padding: 10px 22px;
  font-weight: 400;
}
@media (min-width: 1280px) {
  form .hs_submit > .actions > input {
    padding: 14px 32px;
    font-size: 18px;
    line-height: 27px;
  }
}
form input[type=checkbox] {
  width: 24px;
  height: 24px;
  margin-right: 11px;
}
.footer {
  margin: 0 80px;
  max-width: 100%;
  padding-bottom: var(--space-vertical-xs);
}
@media (max-width: 1440px) {
  .footer {
    margin-left: var(--space-horizontal-sm);
    margin-right: var(--space-horizontal-sm);
  }
}
@media (max-width: 767px) {
  .footer {
    margin-left: var(--space-horizontal-s);
    margin-right: var(--space-horizontal-s);
  }
}
.footer.--no-border .footer__columns {
  border-top: none;
}
.footer__columns {
  border-top: 1px solid var(--color-gray-2);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__columns {
    flex-direction: column;
  }
}
.footer__column {
  padding-top: 24px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .footer__column {
    margin-bottom: 36px;
  }
}
@media (min-width: 768px) {
  .footer__column.--middle {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .footer__column.--middle {
    order: -2;
    border-bottom: 1px solid var(--color-gray-2);
    padding-top: 16px;
    padding-bottom: 36px;
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .footer__column.--second {
    border-top: 1px solid var(--color-gray-2);
  }
}
.footer__list {
  display: flex;
  padding: 0;
  gap: 0 25px;
  margin: 14px 0 0 0;
  width: 40px;
  height: 40px;
}
.footer__list li {
  list-style-type: none;
}
.footer__list li a {
  display: block;
}
.footer__list li a img {
  display: block;
  width: 40px;
  height: 40px;
}
@media (max-width: 989px) {
  .footer__list li a img {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 767px) {
  .footer__list li a img {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 989px) {
  .footer__list__list {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 767px) {
  .footer__list__list {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 989px) {
  .footer__list__list {
    margin: 10px 0 0 0;
  }
}
.footer__label {
  display: block;
  font-size: var(--font-size-number);
  line-height: var(--line-height-140);
  text-transform: uppercase;
}
@media (max-width: 989px) {
  .footer__label {
    font-size: var(--font-size-number-tablet);
  }
}
@media (max-width: 767px) {
  .footer__label {
    font-size: var(--font-size-number-mobile);
  }
}
@media (max-width: 767px) {
  .footer_logo {
    height: 30px;
  }
}
.footer__email {
  font-size: var(--font-size-body-1);
  line-height: var(--line-height-160);
  font-size: var(--font-size-body-3);
  line-height: var(--line-height-170);
  line-height: var(--line-height-140);
  color: var(--color-black);
  display: inline-block;
  margin-top: var(--space-vertical-xxs);
}
@media (max-width: 768px) {
  .footer__email {
    font-size: var(--font-size-body-1-tablet);
  }
}
@media (max-width: 768px) {
  .footer__email {
    font-size: var(--font-size-body-1-mobile);
  }
}
@media (max-width: 990px) {
  .footer__email .footer__email {
    font-size: var(--font-size-body-3-tablet);
  }
}
@media (max-width: 768px) {
  .footer__email .footer__email {
    margin-top: var(--space-vertical-mobile-xxxs);
  }
}
.footer__copyrights {
  border-top: 1px solid var(--color-gray-2);
  color: var(--color-gray);
  font-size: var(--font-size-description);
  line-height: var(--line-height-160);
  padding-top: var(--space-vertical-xxs);
  display: flex;
  justify-content: space-between;
}
.footer__copyrights__pipe {
 color: var(--color-gray) !important;
}

@media (max-width: 768px) {
  .footer__copyrights {
   justify-content: center;
   align-items: center;
   flex-direction: column;
  }
  .footer__copyrights__pipe {
    display: none;
  }
  .footer__copyrights__elements {
   display:flex;
   justify-content: center;
   align-items: center;
   flex-direction: column; 
  }
}

.footer__copyrights a {
    text-wrap: nowrap;
}
@keyframes ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes moveDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0px);
  }
}
.btn {
  background: var(--color-black);
  border-radius: var(--button-border-radius);
  border: 1px solid var(--color-black);
  line-height: var(--button-line-height);
  color: var(--color-white);
  text-transform: uppercase;
  font-size: var(--font-size-label);
  padding: var(--button-padding-vertical) var(--button-padding-horizontal);
  transition: 0.4s;
}
@media (max-width: 767px) {
  .btn {
    padding: var(--button-padding-vertical-mobile) var(--button-padding-horizontal);
    font-size: var(--font-size-label-mobile);
    line-height: var(--button-line-height-mobile);
  }
}
.btn.--disabled {
  background: var(--color-gray);
  border-color: var(--color-gray);
  color: var(--color-white);
}
.btn.--disabled:hover {
  background: var(--color-gray);
  border-color: var(--color-gray);
  color: var(--color-white);
}
.btn.--small {
  font-size: var(--button-small-font-size);
  line-height: var(--button-small-line-height);
  padding: var(--button-small-padding-vertical) var(--button-small-padding-horizontal);
}
.btn.--inverse-border {
  border: 1px solid var(--color-white);
}
.btn.--inverse-border:hover {
  border: 1px solid var(--color-black);
}
.btn:hover {
  background: var(--color-white);
  color: var(--color-black);
}
.btn.--inverse {
  background: var(--color-white);
  border: 1px solid var(--color-white);
  color: var(--color-black);
}
.btn.--inverse.--disabled {
  background: var(--color-gray);
  border-color: var(--color-gray);
  color: var(--color-white);
}
.btn.--inverse.--disabled:hover {
  background: var(--color-gray);
  border-color: var(--color-gray);
  color: var(--color-white);
}
.btn.--inverse:hover {
  background: var(--color-black);
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn-ripple {
  background: var(--color-black);
  border-radius: var(--button-border-radius);
  border: 1px solid var(--color-black);
  line-height: var(--button-line-height);
  color: var(--color-white);
  text-transform: uppercase;
  font-size: var(--font-size-label);
  padding: var(--button-padding-vertical) var(--button-padding-horizontal);
  transition: 0.4s;
}
@media (max-width: 767px) {
  .btn-ripple {
    padding: var(--button-padding-vertical-mobile) var(--button-padding-horizontal);
    font-size: var(--font-size-label-mobile);
    line-height: var(--button-line-height-mobile);
  }
}
.btn-ripple.--disabled {
  background: var(--color-gray);
  border-color: var(--color-gray);
  color: var(--color-white);
}
.btn-ripple.--disabled:hover {
  background: var(--color-gray);
  border-color: var(--color-gray);
  color: var(--color-white);
}
.btn-ripple.--small {
  font-size: var(--button-small-font-size);
  line-height: var(--button-small-line-height);
  padding: var(--button-small-padding-vertical) var(--button-small-padding-horizontal);
}
.btn-ripple.--inverse-border {
  border: 1px solid var(--color-white);
}
.btn-ripple.--inverse-border:hover {
  border: 1px solid var(--color-black);
}
.btn-ripple:hover {
  background: var(--color-white);
  color: var(--color-black);
}
.btn-ripple .ripple {
  border-radius: 50%;
  background-color: rgba(255, 0, 0, 0.7);
  position: absolute;
  transform: scale(0);
  animation: ripple 0.6s linear;
}

.btn-link {
  align-items: center;
  color: var(--color-white);
  display: inline-flex;
  padding: 6px 24px 6px 0;
  font-size: var(--font-size-button-link);
  line-height: var(--line-height-button-link);
  position: relative;
}
.btn-link:after {
  content: "";
  width: 26px;
  height: 100%;
  background-image: url("https://26078261.fs1.hubspotusercontent-eu1.net/hubfs/26078261/Frame%202310%20%283%29.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
}
.btn-link:hover:after {
  animation: moveDown 800ms infinite;
}
.btn-link.--underline {
  text-transform: uppercase;
  font-size: var(--font-size-button-underline);
  line-height: var(--line-height-button-underline);
}
@media (max-width: 989px) {
  .btn-link.--underline {
    font-size: var(--font-size-button-underline-tablet);
  }
}
@media (max-width: 767px) {
  .btn-link.--underline {
    font-size: var(--font-size-button-underline-mobile);
  }
}
.btn-link.--underline.--small {
  font-size: var(--button-small-font-size);
}
.btn-link.--underline.--small:before {
  height: 1px;
}
.btn-link.--underline.--small:after {
  background-position: 5px 5px;
}
.btn-link.--underline:before {
  content: "";
  bottom: 0;
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transition: all 0.25s ease;
  width: 100%;
  background: var(--color-black);
}
@media (max-width: 767px) {
  .btn-link.--underline:before {
    height: 1px;
  }
}
.btn-link.--underline:before.--inverse {
  background: var(--color-white);
}
.btn-link.--underline:hover:before {
  width: 0;
}
.btn-link.--underline:after {
  animation: none;
}
.btn-link.--inverse {
  color: var(--color-black);
}
.btn-link.--inverse:before {
  color: var(--color-black);
}
@media (max-width: 989px) {
  .btn-link.--inverse {
    font-size: var(--font-size-button-underline-tablet);
  }
}
@media (max-width: 767px) {
  .btn-link.--inverse {
    font-size: var(--font-size-button-underline-mobile);
  }
}

.btn-link-underline {
  align-items: center;
  color: var(--color-white);
  display: inline-flex;
  padding: 6px 24px 6px 0;
  font-size: var(--font-size-button-link);
  line-height: var(--line-height-button-link);
  position: relative;
}
.btn-link-underline:after {
  content: "";
  width: 26px;
  height: 100%;
  background-image: url("https://26078261.fs1.hubspotusercontent-eu1.net/hubfs/26078261/Frame%202310%20%283%29.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
}
.btn-link-underline:hover:after {
  animation: moveDown 800ms infinite;
}
.btn-link-underline.--underline {
  text-transform: uppercase;
  font-size: var(--font-size-button-underline);
  line-height: var(--line-height-button-underline);
}
@media (max-width: 989px) {
  .btn-link-underline.--underline {
    font-size: var(--font-size-button-underline-tablet);
  }
}
@media (max-width: 767px) {
  .btn-link-underline.--underline {
    font-size: var(--font-size-button-underline-mobile);
  }
}
.btn-link-underline.--underline.--small {
  font-size: var(--button-small-font-size);
}
.btn-link-underline.--underline.--small:before {
  height: 1px;
}
.btn-link-underline.--underline.--small:after {
  background-position: 5px 5px;
}
.btn-link-underline.--underline:before {
  content: "";
  bottom: 0;
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transition: all 0.25s ease;
  width: 100%;
  background: var(--color-black);
}
@media (max-width: 767px) {
  .btn-link-underline.--underline:before {
    height: 1px;
  }
}
.btn-link-underline.--underline:before.--inverse {
  background: var(--color-white);
}
.btn-link-underline.--underline:hover:before {
  width: 0;
}
.btn-link-underline.--underline:after {
  animation: none;
}
.btn-link-underline:before {
  background: var(--color-white);
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transition: all 0.25s ease;
  width: 100%;
}
.btn-link-underline:hover:before {
  width: 0;
}
.btn-link-underline.--inverse {
  color: var(--color-black);
}
.btn-link-underline.--inverse:hover {
  color: var(--color-white);
}
.btn-link-underline.--inverse:hover:after {
  animation: moveDown 800ms infinite;
}
.btn-link-underline.--inverse:after {
  background-image: url("https://26078261.fs1.hubspotusercontent-eu1.net/hubfs/26078261/Frame%202310.svg");
  background-position: center;
}
.btn-link-underline.--inverse:before {
  background: var(--color-black);
}
.btn-link-underline.--inverse:after {
  content: "";
  background-position: 50%;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  height: 100%;
  width: 26px;
  background-image: url(https://26078261fs1.hubspotusercontent-eu1.net/hubfs/26078261/Frame%202310.svg);
}
@media (max-width: 767px) {
  .btn-link-underline.--inverse:after {
    background-size: 18px;
  }
}
.btn-link-underline.--inverse:before {
  content: "";
  bottom: 0;
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transition: all 0.25s ease;
  width: 100%;
  background: var(--color-white);
}
@media (max-width: 767px) {
  .btn-link-underline.--inverse:before {
    height: 1px;
  }
}
.btn-link-underline.--inverse:hover:before {
  width: 0;
}
.btn-link-underline.--simple {
  padding: 0;
  position: relative;
  text-transform: uppercase;
  font-size: var(--font-size-button-underline);
  line-height: var(--line-height-button-underline);
}
@media (max-width: 989px) {
  .btn-link-underline.--simple {
    font-size: var(--font-size-button-underline-tablet);
  }
}
@media (max-width: 767px) {
  .btn-link-underline.--simple {
    font-size: var(--font-size-button-underline-mobile);
  }
}
.btn-link-underline.--simple:before {
  content: "";
  bottom: 0;
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transition: all 0.25s ease;
  width: 0;
  background: var(--color-white);
}
.btn-link-underline.--simple:hover :before {
  width: 100%;
}

#hs-eu-confirmation-button {
background-color: #231F20 !important;
}

/* Dodane Krzysiek  */

a {
  text-decoration: none;
  color: white;  
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  word-break: break-word;
}