/* Theme base styles */

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

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

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

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

/* CSS variables */

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

/* Mobile layout */

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

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

/* Desktop layout */

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

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

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

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

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

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

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

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

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

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

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

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}

fieldset.form-columns-3 .hs-form-field {
  width: 33.3% !important;
}


.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

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

button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

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

/* Labels */

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

form .inputs-list > li[role="radio"] {
  height: 2rem;
}

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

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

/* Header container */

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

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

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

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

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

  .header__column {
    position: relative;
  }

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

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

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

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

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

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

/* Search bar */

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

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

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

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

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

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

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

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

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

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

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

/* Language switcher */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

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

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

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

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

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

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

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

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

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

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

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

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

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

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* ChiliDigital css
 * All custom CSS for ChiliDigial site
*/

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/*#region {fonts}*/


.bold {
	font-family: Montserrat-Bold; !important;
}
.semi-bold {
	font-family: Montserrat-SemiBold; !important;
}
.black {
	font-family: Montserrat-Black; !important;
}

body {
	font-family: Montserrat-Regular;
	color: var(--black);
	background-color: var(--white);
	width: 100%;
	height: 100%;
	-webkit-overflow-scrolling: touch;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	overflow-x: hidden;
}

.regular {
	font-family: Montserrat-Regular !important;
}
.semi-bold {
	font-family: Montserrat-SemiBold !important;
}
.black {
	font-family: Montserrat-Black !important;
}

h1, .h1 {
	font: 100px/105px Montserrat-Black;
	display: inline-block;
}
h2, .h2 {
	font: 65px/75px Montserrat-Black;
	display: inline-block;
}
.blog-header h2,
.blog-header .h2 {
	color: var(--white);
}
h3, .h3 {
	font: 45px/55px Montserrat-Black;
	display: inline-block;
}
.banner h3,
.banner .h3 {
	color: var(--white);
}
h4, .h4 {
	font: 30px/38px Montserrat-Black;
}
.card-slider-module h5,
.card-slider-module .h5 {
	font: 22px/28px Montserrat-Regular;
	margin-bottom: 20px;
	display: inline-block;
}
.blog-detail .blog-right .post-body h5, h5, .h5 {
	font: 22px/28px Montserrat-SemiBold;
	margin-bottom: 20px;
	display: inline-block;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	scroll-margin-top: 130px;
}

/* Blog headers text editor overwrite */
.blog-detail .blog-right .post-body strong {
	font-family: Montserrat-Black !important;
}
.blog-detail .blog-right .post-body h1, .blog-right .post-body h1 span {
	font: 100px/105px Montserrat-Black !important;
	display: inline-block;
}
.blog-detail .blog-right .post-body h2, .blog-detail .blog-right .post-body h2 span, .blog-header h1.blog-title {
	font: 65px/75px Montserrat-Black !important;
	display: inline-block;
}
.blog-detail .blog-right .post-body h3, .blog-detail .blog-right .post-body h3 span {
	font: 45px/55px Montserrat-Black !important;
	display: inline-block;
}
.blog-detail .blog-right .post-body h4, .blog-detail .blog-right .post-body h4 span {
	font: 30px/38px Montserrat-Black !important;
}
.blog-detail .blog-right .post-body h5, .blog-detail .blog-right .post-body h5 span {
	font: 22px/28px Montserrat-SemiBold !important;
	margin-bottom: 20px;
}

@media(min-width: 1200px) {
	.blog-detail .blog-right .post-body h1, .blog-right .post-body h1 span, .blog-detail .blog-right .post-body h2, .blog-detail .blog-right .post-body h2 span, .blog-detail .blog-right .post-body h3, .blog-detail .blog-right .post-body h3 span, .blog-detail .blog-right .post-body h4, .blog-detail .blog-right .post-body h4 span, .blog-detail .blog-right .post-body h5, .blog-detail .blog-right .post-body h5 span {
		max-width: 70%;
	}
}
@media(min-width: 768px) {
	.blog-detail .blog-right .post-body h1, .blog-right .post-body h1 span, .blog-detail .blog-right .post-body h2, .blog-detail .blog-right .post-body h2 span, .blog-detail .blog-right .post-body h3, .blog-detail .blog-right .post-body h3 span, .blog-detail .blog-right .post-body h4, .blog-detail .blog-right .post-body h4 span, .blog-detail .blog-right .post-body h5, .blog-detail .blog-right .post-body h5 span {
		max-width: 80%;
	}
}

p {
	font: 18px/30px Montserrat-Regular;
}
p.subtitle {
	font: 22px/34px Montserrat-Regular;
}
.hs_cos_wrapper_type_inline_text {
	font: inherit;
}
.text-22px-extrabold {
	font: 22px/28px Montserrat-Black;
}
.page-intro-text {
	font: 40px/55px Montserrat-Regular;
}

ul:not(.sub-nav-list) {
	font: 18px/30px Montserrat-Regular;
}

a.none{
	text-decoration: inherit;
	color: inherit;
}

a.none:hover{
	text-decoration: inherit;
	color: inherit;
}

a {
	color: var(--black);
	/*text-decoration: underline;
	text-decoration-color: var(--red);
	text-underline-offset: 3px;*/
}

@media(min-width: 576px) {
	a:hover {
		color: var(--red);
	}
}

@media (max-width: 1650px) {

	.hero-banner-home{
		padding-top: 20vh !important;
	}
	h1, .h1, .blog-detail .blog-right .post-body h1, .blog-detail .blog-right .post-body h1 span {
		font: 92px/94px Montserrat-Regular !important;
	}
	h1.hero-banner,
	h1.hero-banner-home,
	h1.hero-banner h1, 
	h1.hero-banner-home h1 {
		font: 92px/94px Montserrat-Regular !important;
	}
}

@media (max-width: 1400px) {
	.text-large {
		font: 30px/35px Montserrat-Regular !important;
	}
	h1, .h1, .blog-detail .blog-right .post-body h1, .blog-detail .blog-right .post-body h1 span {
		font: 82px/86px Montserrat-Regular !important;
	}
	h1.hero-banner,
	h1.hero-banner-home,
	h1.hero-banner h1, 
	h1.hero-banner-home h1 {
		font: 72px/78px Montserrat-Regular !important;
	}
	.hero-banner-home {
		padding-top: 17vh !important;
	}
	.page-intro-text {
		font: 30px/40px Montserrat-Regular;
	}
	h4, .h3, .blog-detail .blog-right .post-body h4, .blog-detail .blog-right .post-body h4 span, .blog-detail .blog-right .post-body h4 > a {
		font: 24px/28px Montserrat-Black !important;
	}
	h2, .h2, .blog-detail .blog-right .post-body h2, .blog-detail .blog-right .post-body h2 span, .blog-header h1.blog-title {
		font: 52px/60px Montserrat-Black !important;
	}
}

@media (max-width: 1200px) {
	h1, .h1, .blog-detail .blog-right .post-body h1, .blog-detail .blog-right .post-body h1 span {
		font: 72px/78px Montserrat-Regular !important;
	}
	h1.hero-banner,
	h1.hero-banner-home,
	h1.hero-banner h1, 
	h1.hero-banner-home h1 {
		font: 72px/78px Montserrat-Regular !important;
	}
	h2, .h2, .blog-detail .blog-right .post-body h2, .blog-detail .blog-right .post-body h2 span, .blog-header h1.blog-title {
		font: 44px/50px Montserrat-Black !important;
	}
	h3, .h3, .blog-detail .blog-right .post-body h3, .blog-detail .blog-right .post-body h3 span {
		font: 36px/42px Montserrat-Black !important;
	}
}

@media (max-width: 1024px){
	h1, .h1, .blog-detail .blog-right .post-body h1{
		font: 62px/66px Montserrat-Regular !important;
	}
	h1.hero-banner,
	h1.hero-banner-home,
	h1.hero-banner h1, 
	h1.hero-banner-home h1 {
		font: 62px/66px Montserrat-Regular !important;
	}
}

@media (max-width: 768px) {
	h1, .h1, .blog-detail .blog-right .post-body h1, .blog-detail .blog-right .post-body h1 span {
		font: 52px/58px Montserrat-Black !important;
	}
	h1.hero-banner,
	h1.hero-banner-home,
	h1.hero-banner h1, 
	h1.hero-banner-home h1e {
		font: 52px/58px Montserrat-Regular !important;
	}
	h2, .h2, .blog-detail .blog-right .post-body h2, .blog-detail .blog-right .post-body h2 span, .blog-header h1.blog-title {
		font: 32px/40px Montserrat-Black !important;
		margin-bottom: 30px;
	}
	h3, .h3, .blog-detail .blog-right .post-body h3, .blog-detail .blog-right .post-body h3, .blog-detail .blog-right .post-body h3 span {
		font: 26px/34px Montserrat-Black !important;
	}
	.page-intro-text {
		font: 22px/28px Montserrat-Regular !important;
	}
	h4, .h4, .blog-detail .blog-right .post-body h4, .blog-detail .blog-right .post-body  h4 span, .blog-detail .blog-right .post-body h4 > a {
		font: 22px/28px Montserrat-Black !important;
		margin-bottom: 20px !important;
	}
	p, ul {
		font: 16px/24px Montserrat-Regular !important;
	}
	@media (max-width: 768px) {
		.hero-banner-home {
			padding-top: 15vh !important;
		}
	}
}

@media (max-width: 576px) {
	h1, .h1, .blog-detail .blog-right .post-body h1, .blog-detail .blog-right .post-body h1 span {
		font: 42px/48px Montserrat-Black !important;
	}
	h1, .blog-detail .blog-right .post-body h1 {
		font: 42px/48px Montserrat-Black !important;
	}
	h1.hero-banner,
	h1.hero-banner-home,
	h1.hero-banner h1, 
	h1.hero-banner-home h1 {
		font: 42px/48px Montserrat-Regular !important;
	}

	.card-slider-module h5 {
		font: 18px/24px Montserrat-Regular;
		margin-bottom: 20px;
	}
	.blog-detail .blog-right .post-body h4, .blog-detail .blog-right .post-body  h4 span, .blog-detail .blog-right .post-body h4 > a, .blog-detail .blog-right .post-body h3, .blog-detail .blog-right .post-body h3, .blog-detail .blog-right .post-body h3 span {
		font: 20px/26px Montserrat-Black !important;
		margin-bottom: 20px !important;
	}
	h5, .h5 {
		font: 18px/24px Montserrat-SemiBold !important;
		margin-bottom: 20px !important;
	}
	.blog-detail .blog-right .post-body h5, .blog-detail .blog-right .post-body h5 span {
		font: 18px/24px Montserrat-SemiBold !important;
		margin-bottom: 20px !important;
	}

}



/*h1 {
font-size: 100px;
line-height: 105px;
font-weight: 900;
display: inline-block;
}

h2 {
font-size: 65px;
line-height: 75px;
font-weight: 900;
display: inline-block;
}
.blog-header h2 {
color: var(--white);
}
h3 {
font-size: 40px;
line-height: 55px;
font-weight: 300;
display: inline-block;
}
.banner h3 {
color: var(--white);
}
h4 {
font-size: 30px;
line-height: 38px;
font-weight: 300;
display: inline-block;
}
h5 {
font-size: 22px;
line-height: 28px;
font-weight: 600;
display: inline-block;
margin-bottom: 20px;
}
p {
font-size: 18px;
line-height: 30px;
}
p.subtitle {
font-size: 22px;
line-height: 34px;
}
.text-22px-extrabold {
font-size: 22px;
line-height: 28px;
font-weight: 900;
}

.page-intro-text {
font: 40px/55px Montserrat-Regular;
}
@media (max-width: 1400px) {
h1 {
font-size: 72px !important;
line-height: 76px !important;
font-weight: 900;
}
h2 {
font-size: 30px !important;
line-height: 38px !important;
font-weight: 900;
}
}

@media (max-width: 768px) {
.hero-banner,
.hero-banner-home {
font-size: 30px !important;
line-height: 38px !important;
font-weight: 300 !important;
font: 48px/53px Montserrat-Regular !important;
}
h1 {
font-size: 30px !important;
line-height: 38px !important;
font-weight: 300 !important;
font: 48px/53px Montserrat-ExtraBold !important;
}
h3 {
font-size: 30px !important;
line-height: 38px !important;
font-weight: 300 !important;
font: 32px/38px Montserrat-Regular !important;
}
h4 {
font-weight: 300 !important;
font-size: 22px !important;
}
}*/

/*#endregion {fonts}*/
/***********************************************/

/*****************************************/
/* Start your style declarations here    */


/*#region {general}*/

:root {
	--black: #21313d;
	--white: #ffffff;
	--red: #c22a40;
	--beige: #f5f6f7;
	--pink: #FF526C;
	--purple: #C123CF;
	--greyblue: #4A6E8A;
	--green: #7FF51D;
	--darkpurple: #24264A;
	--grey: #74808A;
	--darkgrey: #21313D;
}

html {
	height: -webkit-fill-available;
}

main {
	margin-top: 67px;
	transition: all 0.2s ease-in;
}

@media (max-height: 1000px) {
  main {
    margin-top: 150px;
  }
}

.hs-blog-post main {
	margin-top: 97px;
}

.page-center, .container {
	max-width: 1220px !important;
	margin: 0 auto;
}

.container-fluid.landing-page {
	padding: 0;
}

.landing-page-body.container .container, .landing-page-body.container .container-fluid {
  padding: 0;
}

@media (min-width: 1650px) {
	.page-center, .container {
		max-width: 1480px !important;
		margin: 0 auto;
	}
	.content-right .container {
		max-width: 740px !important;
		margin-left: 0;
		margin-right: auto;
	}
	.content-left .container {
		max-width: 740px !important;
		margin-left: auto;
		margin-right: 0;
	}
}

@media (max-width: 1650px){
	.content-right .container {
		max-width: 610px !important;
		margin-right: auto;
		margin-left: 0;
	}
}

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

.dnd-section > .row-fluid{
	max-width: 100% !important;
}

.content-wrapper--vertical-spacing, .dnd-section {
	padding: 0 !important;
}

.body-container.container-fluid{
	padding: 0 !important;
}

/*#endregion {general}*/

/*#region {nav}*/

/* main-nav */

nav {
	background-color: var(--white);
	position: fixed;
	top: 0;
	width: 100%;
	height: 127px;
	backdrop-filter: blur(4px);
	transition: all 0.2s ease-in;
	z-index: 1000;
}

@media (max-width: 1200px){
	body header nav {
		height: 97px;
	}
}

nav .container,
nav .container .row,
nav .container .row .col-12,
nav .container .row .col-12 .main-nav-wrapper {
	height: 100%;
}

.main-nav-wrapper {
	display: -webkit-flexbox;
	display: flex;
	width: 100%;
	align-items: end;
}

nav .link {
	color: inherit;
}

nav.active .main-nav-list .link {
	text-underline-offset: 10px;
	text-decoration: underline;
	text-underline-color: white;
}

.header > .container-fluid {
	padding: 0 !important; 
}

#logo {
}

.link {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

@media (max-width: 576px) {
	a:hover {
		color: inherit !important;
	}
}

.main-nav-list {
	margin-bottom: -5px;
}

.main-nav-list.scrolled {
	transition: all 0.2s;
	margin-bottom: 0px;
}

.desktop-row,
.desktop-meta-nav-container,
.container-xl,
.container-xl .row,
.container-xl .desktop-column.col-12 {
	height: inherit;
}

.desktop-column {
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-nav-list,
.meta-nav-list {
	list-style: none;
	padding-left: 0;
	text-align: right;
	min-height: 0;
	flex-wrap: wrap;
	overflow-y: auto;
}

.meta-nav-list li a:hover, .meta-nav-list li a.active {
	color: var(--red) !important;
}

.main-nav-list li {
	display: inline-block;
	margin-left: 45px;
	font-family: Montserrat-SemiBold;
	font-size: 16px;
	transition: all 0.2s ease-in;
}

.main-nav-list li:hover {
	cursor: pointer;
}

@media (min-width: 1200px) {
	.login-link {
		padding-left: 30px !important;
	}
	.meta-nav-list {
		top: -15px;
		right: 0;
		position: absolute;
	}
	nav .main-nav-list .link::after {
		content: "";
		margin-top: -3px;
		display: block;
		width: 0;
		height: 3px;
		background: var(--red);
		transition: width 0.3s;
	}
	nav .main-nav-list .link:hover::after {
		width: 100%;
	}
	nav .main-nav-list .link.active::after {
		width: 100%;
	}
	nav.active .main-nav-list .link:hover::after {
		width: 10;
	}
  .desktop-navbar {
    min-height: 43px;
  }
  #logo-wrapper #logo:not(.scrolled) {
    width: 220px;
  }
}

@media (max-width: 1200px) {
	nav .desktop-navbar,
	nav .desktop-navbar .logo {
		display: none;
	}

	.overlay-nav-item {
		display: none;
	}

	.desktop-row {
		display: none;
	}

	.desktop-container {
		background-color: var(--black);
	}

	nav.active .desktop-navbar {
		display: block;
		width: 100%;
	}

	nav.active .nav-container {
		overflow-y: auto;
		height: calc(100vh - 100px);
	}

	nav.active .meta-nav-list {
		display: flex;
		flex-direction: column;
	}

	nav.active .main-nav-list {
		display: flex;
		flex-direction: column !important;
		margin: 0 !important;
		padding: 40px 26px 40px 26px;
	}

	nav.active .main-nav-list > li {
		padding: 10px 13px;
	}
	nav.active .main-nav-list li a {
		/* border-bottom: 1px solid white; */
	}
	nav.active .nav-item {
		margin: 0;
		position: relative !important;
	}
	nav.active .nav-item a {
		margin: 0 !important;
	}

	.meta-nav-list,
	.main-nav-list {
		text-align: left;
	}
	.main-nav-list {
		background-color: var(--black);
		color: white;
		margin: 0;
	}

	nav.active.scroll {
		height: 100vh !important;
		overflow-y: scroll !important;
		overflow-x: hidden;
	}

	.nav-item .main-nav-font {
		font-size: 22px;
	}

	.desktop-row .container {
		max-width: 100% !important;
		padding: 0;
	}

	.meta-nav-list {
		background-color: white;
		margin: 0;
	}
	.main-nav-list .nav-item .link {
		margin: 10px 0px;
	}

	nav .desktop-column.col-12 {
		padding: 0 !important;
		margin: 0 !important;
	}

	.desktop-column.col-12,
	.desktop-row {
		display: block;
		height: auto !important;
	}

	.main-nav-list li {
		display: block !important;
	}

	.nav-item-header {
		position: relative;
		width: 100%;
	}

	#logo-wrapper {
		margin: 0 !important;
	}
}

.meta-nav-list {
	margin-bottom: 10px;
}

.meta-nav-list li {
	display: inline;
	font-family: Montserrat-Regular;
	font-size: 14px;
	transition: all 0.3s ease-in;
	padding-left: 18px;
}

nav .main-nav-list .link {
	display: inline-block;
}

.overlay-nav-item {
	position: absolute;
	width: 100%;
	height: 50px;
	bottom: 0;
	z-index: 10;
}

#logo-wrapper {
	z-index: 20;
}

.support-link {
	z-index: 20;
}

.nav-item {
	position: relative;
	height: auto;
	z-index: 20;
}

.desktop-row {
	position: relative:
}

.desktop-navbar {
	margin-bottom: -20px;
	position: relative;
	width: 100%;
	display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: flex-end;
	transition: all 0.3s ease;
}

.desktop-navbar .nav-container .main-nav-list {
	transition: all 0.3s ease;
}

@media (min-width: 1200px) {
	.desktop-navbar.scrolled {
		margin-bottom: 0;
		position: relative;
		width: 100%;
		display: flex;
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		justify-content: space-between;
		align-items: center;
	}

	.desktop-navbar.scrolled .nav-container .main-nav-list {
		margin-bottom: 0;
	}

}

nav.active .support-links li {
	padding: 5px 0;
}

nav.active .support-links {
	display: -webkit-flexbox;
	display: flex;
	flex-direction: column;
	background-color: white;
	padding: 30px;
}

.support-links {
	display: inline;
}

nav.active .login-link {
	background-color: var(--beige);
	padding: 30px;
	display: block;
}

/* mobile-nav */

.mobile-nav {
	display: none;
	position: relative;
	margin-left: auto;
	margin: 0;
}

.mobile-nav,
.mobile-nav-non-active {
	cursor: pointer;
	margin-left: auto !important;
}

#logo-mobile {
	width: 160px;
	transition: all 0.2s ease-in;
}

.mobile-navbar {
	display: none;
}

.mobile-column.col-12,
.mobile-row {
	display: none;
	width: 100%;
}

.mobile-row {
	backdrop-filter: blur(4px);
	transition: all 0.2s ease-in;
}

.mobile-container {
	display: none;
}

.item-arrow {
	display: none;
}

.nav-item-header {
	display: inline-block;
}

.mobile-nav-non-active {
	display: none;
}

@media (max-width: 1200px) {
	.mobile-navbar {
		display: -webkit-flexbox;
		display: flex;
		width: 100%;
		align-items: center;
		height: 100%;
	}
	.mobile-nav {
		display: block;
	}

	.mobile-container {
		display: block;
	}

	nav.active .mobile-nav-non-active {
		display: block;
	}

	nav.active .mobile-nav {
		display: none;
	}

	.mobile-row {
		display: block;
		height: 97px;
	}

	.mobile-column.col-12 {
		display: block;
	}

	.item-arrow {
		display: inline-block !important;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
}

/* sub-nav */

@media (min-width: 1200px) {
	.sub-nav .link::after {
		content: "";
		display: block;
		width: 0;
		height: 3px;
		background: white;
		transition: width 0.3s;
	}

	.sub-nav .link:hover::after {
		width: 100%;
	}

	.sub-nav .link.active::after {
		width: 100%;
	}
}

@media (max-width: 1200px) {
	.sub-nav-wrapper {
		padding: 0 !important;
	}

	.sub-nav-wrapper {
		justify-content: start !important;
	}

	.list-section {
		padding: 20px 0 0 30px !important;
	}

	.sub-nav-list .list-item a {
		display: block;
		margin: 0 !important;
	}

	.sub-nav-list .list-item {
		padding-top: 15px;
	}

	.sub-nav .header {
		font-size: 22px;
		padding-top: 20px;
		padding-bottom: 0 !important;
	}
}

.sub-nav {
	padding: 0;
	background-color: var(--black);
	color: var(--white);
	font-family: Montserrat-SemiBold;
	display: none;
	list-style: none;
}

nav div.sub-nav.active {
	display: block !important;
	background: rgba(33, 49, 61, 1) !important;
}

.sub-nav-list {
	display: inline-block;
	list-style: none;
}

.sub-nav .content > .header {
	font-size: 22px;
	padding: 0 0 20px 0 !important;
}

.sub-nav .list-section > .header {
	font-size: 22px;
	padding: 5px 0 !important;
}

@media (max-width: 1200px) {
	.sub-nav .list-section > .header {
		padding-bottom: 15px !important;
		line-height: 2rem;
	}
	.sub-nav .list-section .list-item, .sub-nav .list-section .header {
		line-height: 2rem;
	}
}

.sub-nav .list-section .link {
	display: inline-block;
}

.sub-nav .list-section .header .link {
	display: inline-block;
}

.sub-nav .content {
	font-size: 16px;
}

.sub-nav .list-section {
	display: inline-block;
	padding-left: 50px;
	max-width: auto;
}

.sub-nav .list-item {
	padding-bottom: 10px;
	margin-left: 10px;
}

.sub-nav-wrapper {
	position: relative;
	display: -webkit-flexbox;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 100px 0;
}

.sub-nav .link {
	display: inline-block;
}

/*#endregion {nav}*/

/*#region {main]*/

/* module container */

.module-container {
	padding-top: 200px;
	padding-bottom: 200px;
	position: relative;
}


.blog-meta.module-container {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.blog-content.module-container {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.module-container .container-fluid {
	position: relative;
}

.module-container.banner {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

@media (max-width: 1200px) {
	.module-container {
		padding-top: 100px !important;
		padding-bottom: 100px !important;
	}

}

@media (max-width: 768px) {
	.module-container {
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}

}

/* module container */

/* hero banner */


.width-adjust {
	width: 60%;
}

@media (max-width: 992px) {
	.width-adjust {
		width: 100% !important;
	}
}

.header-main-home {
	position: relative;
	height: 100vh;
	padding-top: 0 !important;
}

.overlay-header-main-home {
	width: 100%;
	height: 100%;
	pointer-events: none;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	position: fixed;
	z-index: -100;
}

h1.hero-banner-home {
	font: 100px/105px Montserrat-Regular;
	color: #ffffff;
	word-wrap: break-word;
	padding-top: 23vh;
	position: relative;
	z-index: 3000;
	max-width: 1310px !important;
}

h1.hero-banner-home strong{
	font-family: Montserrat-Black;
}

/* hero banner */

/* home page */

.teaser {
	background-color: white !important;
}

.background-beige {
	width: 100%;
	background-color: var(--beige);
	padding-bottom: 200px;
}

.slider-control-left {
	padding-right: 30px;
}

.slider-control-right {
	padding-left: 30px;
}

.news-image .dark-overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	opacity: 1;
	left: 0;
	top: 0;
	max-width: 100%;
	width: 100%;
	z-index: 10;
	background-image: linear-gradient(rgba(33, 49, 61, 0.6), rgba(33, 49, 61, 0.6));
}

.image-template-home {
	max-width: 56%;
}

.image-responsive img {
	display: inline-block;
	object-fit: cover;
	object-position: center;
	max-height: 100%;
	height: auto;
	width: 100%;
}

@media (max-width: 1650px) {
	.container-overlap {
		top: 100px !important;
	}
}

@media (max-width: 1200px) {
	.container-overlap {
		top: 50px !important;
	}
}

.container.container-overlap {
	position: absolute;
	top: 150px;
	left: 0;
	right: 0;
}



@media (max-width: 768px) {
	.image-template-home {
		max-width: 100%;
	}
	.container-overlap {
		position: static !important;
	}
}

/* news carousel */

.news-and-insights .content .container {
	max-width: 740px !important;
	margin-right: auto;
	margin-left: 0;
}

.news-and-insights h2 {
	margin-bottom: 0;
}

@media (max-width: 1650px) {
	.news-and-insights .content .container {
		max-width: 610px !important;
		margin-right: auto;
		margin-left: 0;
	}
	.content-left .container {
		max-width: 610px !important;
		margin-right: 0;
		margin-left: 0;
	}
}

@media (min-width: 1650px) {
	.news-and-insights .content .container {
		padding-left: 250px;
	}
}

@media (max-width: 1400px) {
	.news-and-insights .hashtags {
		padding-left: 30px !important;
	}
}

@media (min-width: 1400px) {
	.news-and-insights .hashtags {
		padding-left: 50px !important;
	}
}

@media (max-width: 1200px) {
	.content .container {
		max-width: 100% !important;
	}
	.news-and-insights .news-teaser-header .container {
		padding: 0;
	}
	.news-and-insights .hashtags {
		padding-left: 0 !important;
	}
}

@media (min-width: 1200px) {
	.news-and-insights .content .container {
		padding: 0;
	}
	.news-and-insights .content .container {
		margin-left: 0;
	}

	.news-and-insights .content .container {
		padding-left: 200px;
	}
	.content-left .container {
		margin-left: auto !important;
	}
}

.news .arrow-img {
	width: 26px !important;
	height: 10px !important;
}

.news .arrow-img.active {
	/*to make img black*/
	filter: invert(24%) sepia(63%) saturate(2642%) hue-rotate(331deg)
		brightness(86%) contrast(93%) !important;
}

.news .arrow-img.active-2 {
	filter: invert(13%) sepia(80%) saturate(306%) hue-rotate(162deg)
		brightness(88%) contrast(87%) !important;
}



.news-and-insights .slider-controls {
	width: auto !important;
	height: auto !important;
	margin-top: 60px;
}

@media (max-width: 1200px) {
	.news-and-insights .slider-controls {
		margin-top: 10px;
		margin-bottom: 30px;

	}

	.news-and-insights h2 {
		margin-bottom: 30px;

	}
}

.news-and-insights .news-image  {
	position: relative;
	padding-bottom: 84.6%;
}

.news-and-insights .news-image img {
	height: 100% !important;
	left: 0;
	object-fit: cover;
	position: absolute;
}

/*
@media (max-width: 1200px) {
.news-and-insights .image-responsive .news-image img {
height: 400px !important;
}
}

@media (min-width: 1200px) {
.news-and-insights .image-responsive .news-image img {
height: 293px !important;
}
}

@media (min-width: 1400px) {
.news-and-insights .image-responsive .news-image img {
height: 345px !important;
}
}

@media (min-width: 1650px) {
.news-and-insights .image-responsive .news-image img {
height: 438px !important;
}
}

@media (min-width: 2200px) {
.news-and-insights .image-responsive .news-image img {
height: 538px !important;
}
}*/

.news-and-insights {
	background-color: white;
}

.news-and-insights .container-fluid {
	position: relative;
}

.news-and-insights .container-fluid .container.set-top {
	position: absolute;
	top: 0;
	margin-left: 211.5px;
}

.news .image-responsive {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.news-image-header {
	font: 38px/45px Montserrat-Black;
	margin-bottom: 1rem;
}

.news-image-header.active {
	color: var(--red);
}

.news-image-header-2 {
	font: 38px/45px Montserrat-Black;
}

.news-image-header-2.active {
	color: var(--black);
}

.news-image-text {
	font: 38px/45px Montserrat-Regular;
	display: none;
}

.image-template-home-news-text-overlay .arrow-img {
	padding-left: 0 !important;
	filter: invert(100%) sepia(0%) saturate(7499%) hue-rotate(289deg)
		brightness(103%) contrast(102%);
}

.image-template-home-news-text-overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 15;
	padding: 50px 50px 50px 50px;
	z-index: 60;
	color: white;
	word-wrap: break-word;
}

.image-template-home-news-bar-1-fheight {
	position: absolute;
	z-index: 50;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: var(--black);
	display: none;
}

.image-template-home-news-bar-2-fheight {
	position: absolute;
	z-index: 50;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: var(--red);
	display: none;
}

.image-template-home-news-bar-1 {
	position: absolute;
	z-index: 50;
	top: 0;
	width: 100%;
	height: 15px;
	background-color: var(--black);
}

.image-template-home-news-bar-1.active {
	height: 100% !important;
}

.image-template-home-news-bar-2 {
	position: absolute;
	z-index: 50;
	top: 0;
	width: 100%;
	height: 15px;
	background-color: var(--red);
	display: block;
}

.overlay-image-template-home-news {
	position: absolute;
	z-index: 10;
	left: 0;
	top: 0;
}

.slider-control-left,
.slider-control-right {
	position: relative;
	z-index: 50;
	cursor: pointer;
}

.slider-control-left[aria-disabled="true"],
.slider-control-right[aria-disabled="true"] {
	opacity: 0.5;
	pointer-events: none;
}

@media (max-width: 768px) {
	.slider-control-left.slider-controls,
	.slider-control-right.slider-controls {
		height: 20px !important;
	}
}

@media (max-width: 1800px) {
	.news-image-header {
		font: 32px/36px Montserrat-Black !important;
	}
	.news-image-header-2 {
		font: 32px/36px Montserrat-Black !important;
	}

}

@media (max-width: 1650px) {
	.news-image-header {
		font: 26px/34px Montserrat-Black !important;
	}
	.news-image-header-2 {
		font: 26px/34px Montserrat-Black !important;
	}
	.news-image-text {
		font: 30px/36px Montserrat-Regular !important;
		display: none;
	}
}

@media (max-width: 1400px) {
	.news-image-header {
		font: 20px/26px Montserrat-Black !important;
	}
	.news-image-header-2 {
		font: 20px/26px Montserrat-Black !important;
	}

}

@media (max-width: 1200px) {
	.news-image-header {
		font: 26px/34px Montserrat-Black !important;
	}
	.news-image-header-2 {
		font: 26px/34px Montserrat-Black !important;
	}

}

@media (max-width: 576px) {
	.news-image-header {
		font: 24px/26px Montserrat-Black !important;
	}
	.news-image-header-2 {
		font: 24px/26px Montserrat-Black !important;
	}
}

/* news carousel */

/* employee introduction */

.image-template-home-employee {
	position: relative;
}

.image-template-home-employee .play-img {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}

.employee-introduction .hashtags {
	padding-left: 0 !important;
}

.employee-introduction .content h2, .employee-introduction .content-side.swapped h2 {
	margin-bottom: 15px;
}

.employee-introduction {
	background-color: var(--beige);
}

/* content-right button */

.employee-introduction .image .content-right .container {
	max-width: 740px !important;
	margin-right: auto;
	margin-left: 0;
}

@media (max-width: 1650px) {
	.employee-introduction .image .content-right .container {
		max-width: 610px !important;
		margin-right: auto;
		margin-left: 0;
	}
}

@media (max-width: 1200px) {
	.employee-introduction .image .content-right .container {
		max-width: 100% !important;
	}
	.employee-introduction .content h2, .employee-introduction .content-side.swapped h2  {
		margin-bottom: 0px !important;
		margin-top: 0 !important;
	}
}

/* content employee introduction */

.employee-introduction .content .container {
	max-width: 740px !important;
	margin-left: auto;
	margin-right: 0;
}

@media (max-width: 1650px) {
	.employee-introduction .content .container {
		max-width: 610px !important;
		margin-left: auto;
		margin-right: 0;
	}
}

@media (max-width: 1200px) {
	.employee-introduction .content .container {
		max-width: 100% !important;
	}
}

@media (min-width: 1200px) {
	.employee-introduction .content .container {
		margin-right: 0;
	}

	.employee-introduction .content .container {
		padding-right: 200px;
	}
}

@media (min-width: 1650px) {
	.employee-introduction .content .container {
		padding-right: 165px;
	}
}

/* employee introduction */

/* home page */

/* hubspot forms */

form.hs-form .hs-input:not([type="checkbox"]) {
	background-color: var(--beige);
	height: 62px;
	box-shadow: none;
	border: 0;
	font-family: inherit;
}

form.hs-form textarea.hs-input {
	height: 180px;
	width: 100% !important;
}

form.hs-form input.hs-input:not([type="checkbox"]) {
	width: 100% !important;
}

form.hs-form input.hs-input[type="radio"] {
	width: initial !important;
  height: 20px;
}

form.hs-form select.hs-input {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background-image: url('https://www.chili.ch/hubfs/Website%202023/arrow_down.svg');
	background-position: calc(100% - 20px)!important;
	background-repeat: no-repeat!important;
	background-size: 15px!important;
}

form.hs-form select.hs-input:after {
	content: "\9660";
	height: 100%;
	background: black;
	padding: 12px 8px;
	pointer-events: none;
	position: absolute;
	right: 10px;
	text-align: center;
	top: 0;
	font-size: 12px;
	width: 10%;
	font-weight: normal;
	line-height: 40px;
	/* font-family: Arial, Helvetica, sans-serif; */
	z-index: 100;
	-webkit-font-smoothing: antialiased;
	color: black;
	font-family: sans-serif;
}

.animated-btn {
	display: inline-block;
	width: auto;
	padding: 16px 40px;
	font-family: Montserrat-Regular;
	text-decoration: none;
	background-color: var(--black);
	color: var(--white);
	font-size: 18px;
	border: none;
	transition: all 0.2s ease-in;
	border: 1px solid var(--black);
	line-height: 1.5;
}

form.hs-form input.hs-button {
	width: auto;
	height: auto;
	padding: 16px 68px;
	background-color: var(--black);
	color: white;
	font-family: Montserrat-Regular;
	font-size: 18px;
	border: 1px solid var(--black);
	transition: all 0.2s ease-in;
	line-height: 1.5;
}

form.hs-form input.hs-button:hover {
	color: var(--black);
	background-color: white;
	border: 1px solid var(--black);
}

.ebook-lp-module form.hs-form input.hs-button {
	width: auto;
	height: auto;
	padding: 16px 40px;
	text-decoration: none;
	background-color: var(--black);
	color: white;
	font-family: Montserrat-Regular;
	font-size: 18px;
	border: 1px solid var(--black);
	transition: all 0.2s ease-in;
	line-height: 1.5;
}

.ebook-lp-module form.hs-form input.hs-button:hover {
	color: var(--black);
	background-color: white;
	border: 1px solid var(--black);
}

.form-module .form-title {
	display: none;
}

@media (max-width: 768px){
	form.hs-form .hs-richtext {
		margin-bottom: 0px;
	}
}

@media (max-width: 576px){
	form.hs-form select.hs-input {
		width: 100% !important;
	}
}

@media (max-width: 426px){
  .ebook-lp-module .image-wrapper img[alt="Finger crossed Glücksfoto"]{
    width: 280px;
  }
}

@media (max-width: 426px) {
  .ebook-lp-module .image-wrapper:has(img[alt="Finger crossed Glücksfoto"]) {
    text-align: left;
  }
}



/* hubspot forms */

/* services */

.module-container.services {
	min-height: 600px;
	background-color: var(--beige);
}

.hubspot-bubble,
.application-bubble,
.marketing-bubble {
	background-repeat: no-repeat;
	width: 100%;
	position: relative;
}

.hubspot-bubble {
	margin-top: -330px;
}

.hubspot-bubble img,
.application-bubble img,
.marketing-bubble img {
	max-width: 100%;
}

.application-bubble {
	margin-top: -200px;
}

.marketing-bubble {
}

.bubble-content {
	position: absolute;
	bottom: 180px;
}

.bubble-content a {
	text-decoration: none;
	color: var(--black);
}

.services .red-rectangle {
	position: absolute;
	height: auto !important;
	padding: 5px 0;
	width: 750px;
	left: 50px;
	top: calc(100% - 170px);
	max-width: 100%;
}

.services .red-rectangle .link {
	position: relative;
	z-index: 100;
}

/*
.red-rectangle .link{
max-width: calc(100% - 90px);
}*/

@media (max-width: 576px){
	.red-rectangle .link {
		padding: 10px 10px;
		padding-left: 15px !important;
	}
	.white-rectangle > * {
		padding: 8px 8px !important;
	}
}

@media (min-width: 1200px){
	.services .red-rectangle .link {
		position: relative;
		z-index: 100;
	}
}

@media (max-width: 1650px) {
	.services .red-rectangle {
		width: 600px !important;
	}
	.services .red-rectangle .link, .white-rectangle > * {
		font: 32px/40px Montserrat-Regular;
	}
	.hubspot-bubble {
		margin-top: -260px !important;
	}
}



@media (max-width: 768px) {
	.application-bubble,
	.marketing-bubble {
		background-size: contain;
	}
	.bubble-content .arrow-text {
		/* font: 16px Montserrat-SemiBold; */
	}
}

@media (max-width: 576px) {
	.bubble-content {
		position: static !important;
		margin: 10px 0;
	}
	.bubble-content .arrow-text {
		position: static !important;
	}
	.services .red-rectangle {
		position: static !important;
	}
	.services picture {
		display: flex;
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		justify-content: center;
	}
	.services picture img {
		height: 150px;
		width: 150px;
	}
	.hubspot-bubble,
	.application-bubble,
	.marketing-bubble {
		position: static !important;
	}
}

@media (max-width: 1200px) {
	.services .red-rectangle {
		left: 0 !important;
		max-width: 100%;
	}
	.services .row.last-bubble {
		height: auto !important;
	}
	.hubspot-bubble,
	.application-bubble,
	.marketing-bubble {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 60px;
		margin-top: 10px;
		top: 0 !important;
	}
	.marketing-bubble {
		margin-bottom: 10px;
	}
	.hubspot-bubble {
		margin-top: 0px !important;
	}
}
/* services */

/* application development page*/

.module-container.application-development {
	background-color: white;
	min-height: 600px;
}

.application-development-item a {
	text-decoration: none;
	color: var(--black);
}

.application-development-item > a {
	height: 100%;
	display: inline-block;
}

.application-development-item-wrapper {
	height: 100%;
}

.application-development-cards-content {
	padding: 38px 30px;
	height: 100%;
}

.application-development-cards-content-overlay-background, .card-background {
	height: 0;
	overflow: hidden;
	transition: all .4s ease-in-out;
	position: absolute;
	background-color: var(--black) !important;
	top: 0;
	left: 0;
	right: 0;
}

.rec-links-wrapper > .rec-link {
	position: relative;
}

.rec-links-wrapper:hover > .rec-link > a.none > *, .rec-links-wrapper:hover > .rec-link .arrow-text {
	position: relative;
	z-index: 10;
}

.rec-links-wrapper.no-arrow-text:hover > a:after {
	z-index: 10;
}

@media(min-width: 576px) {
	.application-development-item-wrapper:hover .application-development-cards-content-overlay-background, .rec-links-wrapper:hover .card-background {
		height: 100%;
	}

	.application-development-item-wrapper:hover .application-development-cards-content-overlay > *, .application-development-item-wrapper:hover .application-development-cards-content-overlay a, .no-arrow-text.rec-links-wrapper:hover > .rec-link > *:not(.card-background), .no-arrow-text.rec-links-wrapper:hover > .rec-link > a > * {
		color: white !important;
		transition: color .2s ease-in-out;
	}


	.application-development-item-wrapper:hover .arrow-img {
		filter: invert(100%) sepia(0%) saturate(7499%) hue-rotate(289deg)
			brightness(103%) contrast(102%) !important;
	}
}

.application-development-cards-content-overlay {
	position: relative;
	z-index: 60;
}

.application-development-cards-content {
	background-color: white;
	position: relative;
}

.application-development-cards-content:not(.no-link):hover {
	cursor: pointer;
}

.application-development-cards-top-hr {
	margin: 0;
	border-top: 1px solid var(--black);
	opacity: 1;
}

.image-template-application-development {
	max-width: 70%;
}

@media (min-width: 3840px) {
	.image-template-application-development {
		max-width: 60%;
	}
}

@media (min-width: 1920px) {
	.image-template-application-development {
		max-width: 65%;
	}
}

@media (min-width: 1920px) {
	.image-template-application-development {
		max-width: 65%;
	}
}

@media (max-width: 768px) {
	.image-template-application-development {
		max-width: 100%;
	}
}

/* application development page*/

/* digital process */

.module-container.digital-process {
	min-height: 600px;
	background-color: var(--beige);
}

.module-container.digital-process .steps .row {
	margin-bottom: 40px;
}

.steps-image img {
	max-width: 200px;
}

@media (max-width: 1200px) {
	.digital-process .steps .row {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.digital-process .steps .row:first-child {
		margin-top: 30px;
	}
	.digital-process .steps .row:last-child {
		margin-bottom: 0px;
	}
	.steps-image {
		margin-bottom: 30px;
	}
	.steps picture img {
		height: 150px;
		width: 150px;
	}
	.steps picture {
		display: flex;
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		justify-content: center;
	}
}

/* digital process */

/* success stories page */

.success-stories-wrapper.module-container {
	background-color: white;
}

.success-story-detail, .success-story-detail .success-story-post-body {
	background-color: white;
}

.success-story-detail .rich-text-formatted.module-container {

}

.success-story-detail .success-story-post-body-inner h1, .success-story-detail .success-story-post-body-inner h2, .success-story-detail .success-story-post-body-inner h3 {
	margin-bottom: 60px !important;
}

.success-story-detail .success-story-post-body-inner h4 {
	margin-bottom: 30px; 
}

@media (max-width: 1200px) {
	.success-story-detail .success-story-post-body-inner h1, .success-story-detail .success-story-post-body-inner h2 {
		margin-bottom: 30px !important;
	}
	.success-story-detail .success-story-post-body-inner h4 {
		margin-bottom: 10px !important; 
	}
	.success-story-detail .success-story-post-body-inner h3 {
		margin-bottom: 30px !important;
	}
}

@media (max-width: 768px) {
	.success-story-detail .success-story-post-body-inner p {
		margin-bottom: 12px;
	}
	.success-story-detail .success-story-post-body-inner h3 {
		margin-bottom: 10px !important; 
	}
}


.success-story-detail .success-story-post-body-inner {

}

.success-stories-wrapper .button-group{
	margin-bottom: 100px;
}

.success-stories-wrapper .mobile-success-story-filter{
	display: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url('https://www.chili.ch/hubfs/Website%202023/arrow_down.svg');
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: center right 40px;
	margin-bottom: 50px;
	width: 100%;
	height: 60px;
	background-color: white;
	color: var(--black);
	font-family: Montserrat-Regular;
	font-size: 16px;
	border: 1px solid var(--black);
	transition: all 0.2s ease-in;
	padding: 0 30px;
}

@media (max-width: 1200px) {
	.success-stories-filter {
		display: none;
	}
	.success-stories-wrapper .button-group {
		margin-bottom: 50px;
	}
}

@media (max-width: 1200px) {
	.success-stories-wrapper .mobile-success-story-filter{
		display: block;
	}
}

.customer-info.module-container{
	background-color: var(--beige);
}

.customer-info h2{
	margin-bottom: 90px;
}

@media (max-width: 1200px) {
	.customer-info h2{
		margin-bottom: 50px !important;
	}

}

@media (max-width: 768px) {
	.customer-info h2{
		margin-bottom: 30px !important;
	}
	.customer-info .quote .arrow-text{
		margin-top: 30px !important;
		margin-bottom: 50px !important;
	}
}

.customer-info .quote {
	margin-top: 0;
	margin-bottom: 0;
}

.customer-info .arrow-text{
	margin-top: 60px;
	margin-bottom: 170px;
}

.customer-info .slide-item-logo{
	background: #fff 0% 0% no-repeat padding-box;
	border-radius: 3px;
	width: 220px;
	height: 220px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 1650px){
	.customer-info .row .slide-item-logo{
		width: 170px;
		height: 170px;
	}
}

@media (max-width: 768px){
	.customer-info .row .slide-item-logo{
		width: 165px;
		height: 165px;
	}
}

@media (max-width: 768px){
	.customer-info .row .slide-item-logo{
		width: 150px;
		height: 150px;
	}
}

/* success stories page */

/* industries */

.industry-overview {
	background-color: white;
}

.industry-nav-item {
	margin-bottom: 20px;
}

.industry-nav-item {
	position: relative;
	overflow: hidden;
}

.industry-nav-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}

.industry-nav-item img:hover {
	transform: scale(1.1);
}

.industry-nav-item h4 {
	color: white;
	position: absolute;
	left: 25px;
	bottom: 30px;
	font-family: Montserrat-Black;
}

@media (max-width: 576px) {
	.industry-nav-item h4 {
		bottom: 10px;
	}
}

/* industries */

/* jobs */

.module-container.jobs{
	background-color: var(--beige);
}

/* jobs */

/* call to action */

.call-to-action {
	background-color: white;
	padding-top: 0;
	padding-bottom: 120px;
}

.blog-detail .module-container.call-to-action{
	padding-top: 200px;
	padding-bottom: 0 !important;
}

.call-to-action-wrapper {
	display: flex;
	justify-content: space-between;
	position: relative !important;
}

.cta-on-bottom {
	padding-bottom: 200px;
}

.call-to-action-content {
	display: -webkit-flexbox;
	display: flex;
	align-items: end;
}

.call-to-action .ebook-images {
	margin-left: 150px;
}

.call-to-action .red-rectangle {
	width: 605px;
	max-width: 100%;
	position: absolute;
	bottom: -30px;
}

.call-to-action-right {
	position: relative;
	right: 0;
	z-index: 20;
	margin-left: 30px;
	width: 50%;
}

.call-to-action-left {
	position: relative;
	right: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	padding: 120px 0 50px 0;
}

.ebook-image img {
	height: 450px;
	width: 320px;
	max-width: 100%;
}

.ebook-images img {
	height: 450px;
	width: 320px;
	max-width: 100%;
	position: absolute;
	top: -100px;
}

@media (max-width: 1400px) {
	.ebook-images img {
		height: 400px;
		width: 285px;
	}
}

@media (max-width: 1200px) {
	.ebook-images img {
		position: static !important;
	}
	.call-to-action .red-rectangle {
		position: static !important;
	}
	.call-to-action-right {
		width: 100%;
	}
	.call-to-action-left {
		padding: 0;
	}
	.call-to-action {
		padding-top: 120px;
		padding-bottom: 120px;
	}

	.ebook-images img {
		height: 300px;
		width: 215px;
	}
	.blog-detail .module-container.call-to-action{
		padding-top: 100px;
		padding-bottom: 0 !important;
	}
}

@media (max-width: 992px) {
	.call-to-action-wrapper {
		flex-direction: column;
	}
	.call-to-action .ebook-images {
		display: flex;
	}
	.call-to-action .ebook-images img {
		margin: 0 auto;
	}
	.call-to-action-right {
		margin: 0;
	}
	.call-to-action-right .red-rectangle {
		margin: 20px auto;
	}
	.call-to-action .ebook-images {
		margin: 0;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.cta-on-bottom {
		padding-top: 0px !important;
	}
	.blog-detail .module-container.call-to-action{
		padding-top: 50px;
		padding-bottom: 0 !important;
	}
}

@media (max-width: 576px) {
	.ebook-images img {
		width: 50%;
		height: auto;
	}
}

/* call to action */

/* application development links/navigation */

.application-development-links {
	background-color: var(--beige);
}

.application-development-links .btn {
	width: 100%;
}

@media (max-width: 768px) {
	.application-development-links .animated-btn {
		float: left !important;
	}
}

.application-development-links .animated-btn {
	float: right;
}

/* application development links/navigation */

/* blog overview */

.blog .grid {
	background-color: var(--beige);
}

.grid-sizer {
	width: calc(25% - 15px);
}

.grid-item {
	margin-bottom: 30px;
	background-color: var(--white);
	max-width: 100%;
	word-break: break-word;
}

.grid-item:hover {
	cursor: pointer;
}

.grid-item.hidden{
	display: none;
	visibility:hidden;
	display: none;
	width:0px!important;
	height:0px!important;
	margin:0px!important;
	padding:0px!important;
}

.grid-item-small {
	width: calc(25% - 15px);
}

.grid-item-small .grid-image {
	position: relative;
	padding-bottom: 60%;
}

.grid-item-small .grid-image > img {
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
}

.grid-item--width2 {
	width: calc(50% - 15px);
}

.grid-item--width2 .grid-image {
	position: relative;
	padding-bottom: 60.3%;
}

.grid-item--width2 .grid-image > img {
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
}

.grid-item.two-col {
	width: calc(50% - 10px);
}

.success-stories-wrapper .grid-item{
	border: 1px solid #EDEDED;
}

.gutter-sizer {
	width: 20px;
}

.grid-content {
	padding: 40px 25px;
	background-color: var(--white);
	position: relative;
}

.grid a {
	text-decoration: none;
	color: var(--black);
}
@media(min-width: 576px) {
	.grid a:hover {
		text-decoration: none;
		color: var(--black);
	}
}
.grid-image {
	position: relative;
	overflow: hidden;
}


.grid-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
	/*aspect-ratio: 16 / 10;*/
}

.grid-image img.active {
	transform: scale(1.1);
}

.grid-date {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 92px;
	width: 92px;
	background-color: var(--black);
	color: var(--white);
}

.date-number {
	line-height: 1 !important;
	font-size: 37px;
	margin: 0;
}

.grid-date-small {
	height: 80px !important;
	width: 80px !important;
}

.month-and-year {
	font-size: 12px;
}

.grid-image h3 {
	margin: 0 !important;
}

.grid-content .hashtags {
	padding-top: 30px;
}

.grid-content h4 {
	margin-bottom: 25px;
}

@media (max-width: 992px) {
	.grid-item-small {
		width: calc(50% - 15px) !important;
	}
}

@media (max-width: 768px) {
	.grid-item-small, .grid-item--width2, .two-col.grid-item {
		width: 100% !important;
	}
}

@media (max-width: 768px) {
	.grid-date {
		width: 72px !important;
		height: 72px !important;
	}
}

.blog-navigation .btn {
	padding: 10px 20px 10px 15px;
}

.blog-navigation .btn {
	font: 16px Montserrat-Bold;
}

.blog-overview {
	background-color: var(--beige) !important;
	position: relative !important;
}

.blog-overview-root {
	margin-top: 60px;
}

.blog-overview-wrapper {
	background-color: var(--beige) !important;
	position: relative;
	padding-top: 0 !important;
}

.blog-overview .row > .animated-btn, .success-stories-wrapper .row > .animated-btn {
	margin: 100px auto 0 auto;
}

.blog-overview .row .button-group .animated-btn-beige {
	padding: 15px 40px;
	line-height: 1;
}

.blog-overview-wrapper .arrow-up {
	display: none;
}

.mobile-blog-filter {
	display: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url('https://www.chili.ch/hubfs/Website%202023/arrow_down.svg');
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: center right 40px;
	margin-top: 50px;
	padding: 0 30px;
	width: 100%;
	height: 60px;
	background-color: var(--beige);
	color: var(--black);
	font-family: Montserrat-Regular;
	font-size: 16px;
	border: 1px solid var(--black);
	transition: all 0.2s ease-in;
}

.mobile-blog-filter option {
	font-size: 16px;
}

.blog-filter .white-rectangle {
	margin-top: 240px;
	margin-bottom: 30px;
}

.button-group {
	list-style: none;
	padding: 0;
	margin: 0;
}

.button-group li {
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 10px;
}

.more-categories-toggle {
	cursor: pointer;
	display: inline-block;
	margin-top: 50px;
}

.more-categories-toggle h5{
	margin-bottom: 30px;
}

.more-categories-toggle img {
	padding-left: 15px;
}

.more-categories {
	display: none;
	margin-bottom: 20px;
}

@media (max-width: 1402px) {
	.blog-overview .blog-filter .white-rectangle {
		margin-top: 150px;
		margin-bottom: 30px;
	}
}

@media (max-width: 992px) {
	.top-10 {
		display: none;
	}
	.blog-filter {
		display: none;
	}
	.mobile-blog-filter {
		display: block;
	}
	.blog-overview-root {
		margin-top: 20px;
	}
}

/* blog overview */

/* blog detail */

.blog {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.blog-left {
	max-width: 30%;
}

.blog-right {
	max-width: 66.66666%;
}

a.cta_button {
	display: inline-block;
	width: calc(100% - 80px);
	padding: 16px 40px;
	margin: 60px 0;
	font-family: Montserrat-Regular;
	text-decoration: none !important;
	background-color: var(--black);
	color: var(--white) !important;
	font-size: 18px;
	border: none;
	transition: all 0.2s ease-in;
	border: 1px solid var(--black);
	line-height: 1.5;
	text-align: center;
	margin: 60px 0;

}

@media (min-width: 576px){
	a.cta_button:hover {
		text-decoration: none !important;
		color: var(--black) !important;
		background-color: var(--white);
		border: 1px solid var(--black);
	}
}

/*.blog-header::before {
filter: brightness(0.8);
}*/

.blog-header.container::before {
	background-color: rgba(33,49,61,.6);
	bottom: 0;
	content: "";
	left: 0;
	mix-blend-mode: multiply;
	position: absolute;
	right: 0;
	top: 0;
}

.blog-header {
	background-image: url("/_img/blog_detail_header_musterbild.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 70vh;
	max-height: 670px;
	position: relative;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.blog-content.module-container {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.blog-meta.module-container {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.blog-header img {
	height: 70vh;
}

.hs-embed-content-wrapper, .hs-video-wrapper {
	position: relative;
	overflow: hidden;
	max-width: 100%;
	padding-bottom: 56.3% !important;
	margin: 0px;
}

.hs-embed-content-wrapper iframe, .hs-video-wrapper iframe {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: none;
	clip-path: inset(1px 1px);
}

.blog-right .post-body .hs-video-widget, .blog-right .post-body .hs-embed-wrapper {
	max-width: none !important;
	margin: 100px 0 !important;
	width: 100% !important;
	height: auto !important
}

.blog-header h2, .blog-header h1 {
	color: var(--white);
	z-index: 20;
	position: relative;
}

.blog-right .post-body a {
	color: var(--black);
	text-decoration: underline;
	text-decoration-color: var(--red);
	text-underline-offset: 2px;
	text-decoration-thickness: 2px;
}
@media(min-width: 576px) {
	.blog-right .post-body a:hover {
		color: var(--red);
	}
}
.blog-right .post-body h4, .blog-right .post-body h3, .blog-right .post-body h2, .blog-right .post-body h1, .blog-right .post-body h5{
	margin-bottom: 60px;
}

.blog-right .post-body span#hs_cos_wrapper_post_body > h4:not(:first-child),
.blog-right .post-body span#hs_cos_wrapper_post_body div:not(.hs_cos_wrapper_type_module) :not(.hs_cos_wrapper_type_module) h4,
.blog-right .post-body span#hs_cos_wrapper_post_body > h3:not(:first-child),
.blog-right .post-body span#hs_cos_wrapper_post_body div:not(.hs_cos_wrapper_type_module) :not(.hs_cos_wrapper_type_module) h3,
.blog-right .post-body span#hs_cos_wrapper_post_body > h2:not(:first-child),
.blog-right .post-body span#hs_cos_wrapper_post_body div:not(.hs_cos_wrapper_type_module) :not(.hs_cos_wrapper_type_module) h2,
.blog-right .post-body span#hs_cos_wrapper_post_body > h1:not(:first-child),
.blog-right .post-body span#hs_cos_wrapper_post_body div:not(.hs_cos_wrapper_type_module) :not(.hs_cos_wrapper_type_module) h1,
.blog-right .post-body span#hs_cos_wrapper_post_body > h5:not(:first-child),
.blog-right .post-body span#hs_cos_wrapper_post_body div:not(.hs_cos_wrapper_type_module) :not(.hs_cos_wrapper_type_module) h5,
.blog-right .post-body span#hs_cos_wrapper_post_body > div > h4,
.blog-right .post-body span#hs_cos_wrapper_post_body > p > h4,
.blog-right .post-body span#hs_cos_wrapper_post_body > div > h3,
.blog-right .post-body span#hs_cos_wrapper_post_body > p > h3,
.blog-right .post-body span#hs_cos_wrapper_post_body > div > h2,
.blog-right .post-body span#hs_cos_wrapper_post_body > p > h2,
.blog-right .post-body span#hs_cos_wrapper_post_body > div > h1,
.blog-right .post-body span#hs_cos_wrapper_post_body > p > h1,
.blog-right .post-body span#hs_cos_wrapper_post_body > div > h5,
.blog-right .post-body span#hs_cos_wrapper_post_body > p > h5,
.blog-right .post-body span#hs_cos_wrapper_post_body :not(.hs_cos_wrapper_widget) :not(*) {
	margin-top: 60px;
}

.blog-right .post-body h4, .blog-right .post-body h3, .blog-right .post-body h2, .blog-right .post-body h1, .blog-right .post-body h5{
	margin-bottom: 60px;
}

@media (max-width: 1400px) {
	.blog .page-intro-text {
		padding-bottom: 100px !important;
	}
}

@media (max-width: 1400px) {
	.blog-header h2{
		font: 55px/62px Montserrat-Black!important;
	}
}

@media (max-width: 1200px) {
	.blog-header {
		height: 455px !important;
	}
	.blog-header h2{
		font: 45px/52px Montserrat-Black!important;
	}
	.blog .page-intro-text {
		padding-bottom: 50px !important;
	}
	.blog-right .post-body p span img, .blog-right .post-body p img/*, .blog-right .post-body .hs-embed-content-wrapper*/ {
		margin-top: 50px !important;
		margin-bottom: 50px !important;
	}

	.blog-right .post-body .hs-video-widget, .blog-right .post-body .hs-embed-wrapper {
		margin: 50px 0 !important;
	}
	a.cta_button {
		margin: 30px 0;
	}
}

@media (max-width: 768px) {
	.blog-header {
		height: 250px !important;
	}
	.blog-header h2 {
		max-width: 100% !important;
		font: 26px/32px Montserrat-Black!important;
	}
	.blog {
		flex-direction: column;
	}
	.blog-left,
	.blog-right {
		max-width: 100%;
	}

	.blog .page-intro-text {
		padding-bottom: 30px !important;
	}
	.blog-right .post-body {
		margin-top: 30px !important;
		margin-bottom: 50px !important;
	}
	.blog-right .post-body p span img, .blog-right .post-body p img/*, .blog-right .post-body .hs-embed-content-wrapper*/ {
		margin-top: 30px !important;
		margin-bottom: 30px !important;
	}
	.blog-right .post-body h4, .blog-right .post-body h3, .blog-right .post-body h2, .blog-right .post-body h1, .blog-right .post-body h5{
		margin-bottom: 30px !important;
	}
	.blog-right .post-body span#hs_cos_wrapper_post_body > h4:not(:first-child),
	.blog-right .post-body span#hs_cos_wrapper_post_body div:not(.hs_cos_wrapper_type_module) :not(.hs_cos_wrapper_type_module) h4,
	.blog-right .post-body span#hs_cos_wrapper_post_body > h3:not(:first-child),
	.blog-right .post-body span#hs_cos_wrapper_post_body div:not(.hs_cos_wrapper_type_module) :not(.hs_cos_wrapper_type_module) h3,
	.blog-right .post-body span#hs_cos_wrapper_post_body > h2:not(:first-child),
	.blog-right .post-body span#hs_cos_wrapper_post_body div:not(.hs_cos_wrapper_type_module) :not(.hs_cos_wrapper_type_module) h2,
	.blog-right .post-body span#hs_cos_wrapper_post_body > h1:not(:first-child),
	.blog-right .post-body span#hs_cos_wrapper_post_body div:not(.hs_cos_wrapper_type_module) :not(.hs_cos_wrapper_type_module) h1,
	.blog-right .post-body span#hs_cos_wrapper_post_body > h5:not(:first-child),
	.blog-right .post-body span#hs_cos_wrapper_post_body div:not(.hs_cos_wrapper_type_module) :not(.hs_cos_wrapper_type_module) h5,
	.blog-right .post-body span#hs_cos_wrapper_post_body > div > h4,
	.blog-right .post-body span#hs_cos_wrapper_post_body > p > h4,
	.blog-right .post-body span#hs_cos_wrapper_post_body > div > h3,
	.blog-right .post-body span#hs_cos_wrapper_post_body > p > h3,
	.blog-right .post-body span#hs_cos_wrapper_post_body > div > h2,
	.blog-right .post-body span#hs_cos_wrapper_post_body > p > h2,
	.blog-right .post-body span#hs_cos_wrapper_post_body > div > h1,
	.blog-right .post-body span#hs_cos_wrapper_post_body > p > h1,
	.blog-right .post-body span#hs_cos_wrapper_post_body > div > h5,
	.blog-right .post-body span#hs_cos_wrapper_post_body > p > h5,
	.blog-right .post-body span#hs_cos_wrapper_post_body :not(.hs_cos_wrapper_widget) :not(*) {
		margin-top: 30px;
	}
	.blog-right .post-body .hs-video-widget, .blog-right .post-body .hs-embed-wrapper {
		margin: 30px 0 !important;
	}
	a.cta_button {
		margin: 20px 0;
	}
}

.blog-right .post-body p span img, .blog-right .post-body p img/*, .blog-right .post-body .hs-embed-content-wrapper */{
	margin-top: 100px;
	margin-bottom: 100px;
}

.blog-header-title {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
}

.blog-header .image-responsive img {
	position: relative;
}

.blog .page-intro-text {
	padding-bottom: 150px;
}

.blog-media {
	padding: 100px 0 !important;
}

.blog-media .play-img {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	width: 10rem;
}


@media (min-width: 768px) {
	.blog-detail .blog-left .arrow-text {
		margin-bottom: 100px !important;
	}
}

@media (min-width: 1400px) {
	.blog-detail .blog-left .arrow-text {
		margin-bottom: 150px !important;
	}
}


.blog-author h5 {
	margin-bottom: 30px !important;
}
@media(min-width: 576px) {
	.blog-author h5 .link:hover {
		color: var(--red);
	}
}
.blog-author-image {
	width: 125px;
	height: 125px;
	margin: 10px 0;
}

.blog-author-image img {
	width: 100%;
	border-radius: 50%;
}

.blog-left .arrow-text {
	display: block !important;
}

/* .blog .call-to-action{
padding-bottom: 200px !important;
}
*/

.blog-two-images-container img {
	width: 100%;
}

.quote {
	margin: 150px 0 200px 0;
}

@media (min-width: 768px){
	.quote-header {
		margin-left: 20px;
	}
}

.quote-header {
	margin-bottom: 30px;
}

.quote-symbol {
	margin-right: 15px;
}

.quote-author {
	margin: 10px;
}

.related-posts img {
	max-width: 100%;
	transition: all 0.3s ease;
	aspect-ratio: 16 / 13;
}

.related-post-img {
	overflow: hidden;
}

.related-posts img:hover {
	transform: scale(1.1);
}

.related-posts .row h5 {
	font-family: Montserrat-Black !important;
}

@media (max-width: 1400px){
	.quote {
		margin: 100px 0;
	}
}

@media (max-width: 992px){
	.quote {
		margin: 50px 0;
	}
}

@media (max-width: 768px) {
	.blog-intro-text {
		padding: 50px 0 !important;
	}
	.blog-author {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.blog-media {
		padding: 30px 0 !important;
	}
	.blog-right .quote {
		margin: 50px 0;
	}
	.quote {
		margin: 30px 0;
	}
	.blog .blog-right #hs_cos_wrapper_post_body p, .blog .blog-right #hs_cos_wrapper_post_body > p span, .blog .blog-right #hs_cos_wrapper_post_body p a{
		font-size: 16px !important;
		line-height: 22px !important;
	}
	.quote-header {
		margin-bottom: 10px !important;
	}
}

/* blog detail */

/* rec links */

.tag-listing .rec-link {
	padding: 60px 40px;
	color: white;
	margin-bottom: 20px;
	height: 394px;
	position: relative;
	word-break: break-word;
}

@media(max-width: 576px){
	.tag-listing .rec-link {
		height: 350px;
	}
}

@media(max-width: 386px){
	.tag-listing .rec-link {
		height: 302px;
	}
}

.tag-listing .rec-link p {
	font-size: 12px !important;
}

.tag-listing .rec-link h4 {
	margin-bottom: 0 !important;
}

.tag-listing .rec-link a {
	text-decoration: none;
	color: inherit;
}

.tag-listing .rec-link a:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.tag-listing .rec-link .arrow-img {
	filter: invert(100%) sepia(0) saturate(7499%) hue-rotate(289deg) brightness(103%) contrast(102%);
	padding-left: 0;
}

/* rec links */

/* arrow text */

.arrow-text {
	font: 18px Montserrat-SemiBold !important;
	display: inline-block;
	text-decoration: none;
	color: inherit;
}

.arrow-text:hover {
	cursor: pointer;
}

.arrow-text a{
	text-decoration: none;
	color: inherit;
}

.arrow-text span {
	text-decoration: none;
	color: inherit;
}
@media(min-width: 576px) {
	.arrow-text a:hover{
		text-decoration: none;
		color: inherit;
	}
}
.arrow-text a div{
	display: inline-block;
}

.arrow-text > div,
.arrow-text > div {
	display: inline-block;
}

.arrow-text.cta-header {
	padding-top: 0 !important;
	margin-top: 0 !important;
	position: relative;
	margin-right: 50px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	-webkit-box-pack: end;
	justify-content: flex-end;
}

@media (max-width: 992px) {
	.arrow-text.cta-header {
		justify-content: start;
	}
	.sub-footer ul.link-list {
		margin-left: 20px;
	}
}

.arrow-text.cta-header.active{
	color: var(--black);
}

.arrow-text.cta-header h4 {
	margin-bottom: 0 !important;
}

.arrow-text-right .arrow-img-right-wrapper {
	position: relative;
}

.arrow-text-right .arrow-img {
	margin: 0;
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.bubble-content .arrow-text {
	margin: 10px;
	position: relative;
	left: 200px;
	display: block;
}

.application-development .arrow-text {
	font: 16px Montserrat-SemiBold !important;
}

/* .wie-wir-arbeiten .container-overlap .arrow-text {
position: relative;
float: right;
} */

.container-overlap .arrow-text,
.container-overlap .arrow-text img {
	margin-right: 50px;
}

.container-overlap .arrow-text {
	margin-top: 80px !important;
}

@media (max-width: 768px) {
	.container-overlap .arrow-text {
		margin-top: 30px!important;
		margin-bottom: 0px;
	}
}

.application-development-links .arrow-link-top-hr .arrow-text {
	margin-top: 0 !important;
}

.application-development-links .arrow-link-top-hr .arrow-text .arrow-img{
	padding-left: 0;
	padding-top: 20px;
}

.grid-content .arrow-text {
	padding-top: 10px;
}

.blog-navigation .arrow-text {
	margin-top: 30px;
}

.success-stories .container.content-side .arrow-text {
	padding-top: 0;
}

.arrow-text div,
.arrow-text-right,
.arrow-img {
	cursor: pointer;
}

.arrow-img {
	padding-left: 20px;
	display: inline-block;
}

.arrow-text a {
	color: var(--black);
	text-decoration: none !important;
}

.arrow-text.active a, .arrow-text.active span, .arrow-text.active div {
	color: var(--red) !important;
}

.cta-header.arrow-text.active span{
	color: var(--black) !important;
}

.cta-header .arrow-img.active {
	filter: brightness(0%) !important;
}

.arrow-img.active {
	filter: invert(24%) sepia(63%) saturate(2642%) hue-rotate(331deg)
		brightness(86%) contrast(93%);
}

.arrow-text-right {
	position: relative;
	z-index: 20;
	margin-left: auto;
	width: auto;
	display: flex;
}

.validate-website-banner .arrow-img {
	/*to make img white*/
	filter: invert(100%) sepia(0%) saturate(7499%) hue-rotate(289deg)
		brightness(103%) contrast(102%);
}

.validate-website-banner h5 {
	margin-bottom: 0 !important;
}

.red-rectangle .arrow-img {
	filter: invert(100%) sepia(0%) saturate(7499%) hue-rotate(289deg)
		brightness(103%) contrast(102%);
}

.red-rectangle .arrow-img.active, .rec-links-wrapper.no-arrow-text .rec-link .arrow-img.active {
	filter: invert(100%) sepia(0%) saturate(7499%) hue-rotate(289deg)
		brightness(103%) contrast(102%) !important;
}

@media (max-width: 768px) {
	.wie-wir-arbeiten .container-overlap .arrow-text {
		float: none;
	}
	.container-overlap .arrow-text-right {
		margin-left: 0;
	}
}

/* arrow text */

/* top hr */

.top-hr {
	margin: 0;
	border-top: 1px solid var(--black);
	opacity: 1;
}

.blog-navigation .top-hr {
	margin-top: 60px;
}

.application-development-links .top-hr {
	margin-bottom: 40px;
}

.application-development-links .top-hr.active {
	border-top: 1px solid var(--red);
}

.arrow-link-top-hr:hover {
	cursor: pointer;
}

/* top hr */

/* button */

.animated-btn-beige {
	display: inline-block;
	width: auto;
	padding: 16px 40px;
	background-color: var(--beige);
	color: var(--black);
	font-family: Montserrat-Regular;
	font-size: 18px;
	border: 1px solid var(--black);
	transition: all 0.2s ease-in;
	text-decoration: none;
	line-height: 1.5;
}

.animated-btn-beige.active {
	color: var(--white);
	background-color: var(--black);
	border: 1px solid var(--black);
}
@media(min-width: 576px) {
	.animated-btn-beige:hover {
		color: var(--white);
		background-color: var(--black);
		border: 1px solid var(--black);
	}
}
.animated-btn {
	display: inline-block;
	width: auto;
	padding: 16px 40px;
	font-family: Montserrat-Regular;
	text-decoration: none;
	background-color: var(--black);
	color: var(--white) !important;
	font-size: 18px;
	border: none;
	transition: all 0.2s ease-in;
	border: 1px solid var(--black);
	line-height: 1.5;
}

@media(max-width: 576px) {
	.animated-btn:hover, .sub-footer form.hs-form input.hs-button:hover {
		color: white !important;
	}
	.animated-btn-beige:hover {
		color: black !important;
	}
	.animated-btn-white:hover {
		color: black !important;
	}
}

@media(min-width: 576px) {
	.animated-btn:hover, .sub-footer form.hs-form input.hs-button:hover {
		color: var(--black) !important;
		background-color: var(--white) !important;
		border: 1px solid var(--black) !important;
	}
}
@media(min-width: 576px) {
	.red-hover.animated-btn:hover{
		background-color: var(--red) !important;
		color: white !important;
		border: 1px solid white !important;
	}
}
.animated-btn-white {
	display: inline-block;
	width: auto;
	padding: 16px 40px;
	background-color: white;
	color: var(--black);
	font-family: Montserrat-Regular;
	font-size: 18px;
	border: 1px solid var(--black);
	transition: all 0.2s ease-in;
	text-decoration: none;
	line-height: 1.5;
}

@media(min-width: 576px) {
	.animated-btn-white.active {
		color: var(--white);
		background-color: var(--black);
		border: 1px solid var(--black);
	}

	.animated-btn-white:hover, .animated-btn-white-checked{
		color: var(--white);
		background-color: var(--black);
		border: 1px solid var(--black);
	}
}
@media(max-width: 768px){
	.load-more{
		margin-top: 0px !important
	}
}

.btn {
	border: none;
	background-color: var(--black);
	color: white;
	font: 16px Montserrat-Regular;
	padding: 20px 25px 20px 15px;
	border-radius: 0;
	position: relative;
	z-index: 20;
}

.btn * {
	text-decoration: none;
	display:inline-block;
}

.btn-right {
	margin-left: auto;
	width: auto;
	display: block;
}

.btn-center {
	margin: 0 auto;
	display: block;
	width: auto;
}

.contact-banner-wrapper .banner-btn-wrapper, 
.hubspot-banner-wrapper .banner-btn-wrapper,
.stateofheart-banner-wrapper .banner-btn-wrapper,
.appointment-banner-wrapper .banner-btn-wrapper,
.team-banner-wrapper .banner-btn-wrapper,
.chilidatahub-banner-wrapper .banner-btn-wrapper,
.ebook-download-banner-wrapper .banner-btn-wrapper,
.ebook-download-banner-two-wrapper .banner-btn-wrapper,
.info-banner-wrapper .banner-btn-wrapper {
	margin-top: 50px;
}

.contact-banner-wrapper .btn, 
.hubspot-banner-wrapper .btn,
.stateofheart-banner-wrapper .btn,
.appointment-banner-wrapper .btn,
.team-banner-wrapper .btn,
.chilidatahub-banner-wrapper .btn,
.ebook-download-banner-wrapper .btn,
.ebook-download-banner-two-wrapper .btn,
.info-banner-wrapper .btn {
	width: auto;
	z-index: 20;
}

{
	width: auto;
	z-index: 20;
}

.btn img {
	filter: invert(98%) sepia(8%) saturate(97%) hue-rotate(257deg)
		brightness(112%) contrast(100%);
}

.btn {
	color: var(--white) !important;
	background-color: var(--black) !important;
}

@media (max-width: 1200px) {
	.animated-btn .btn-spacing{
		margin-top: 0 !important;
	}
}

@media (max-width: 768px) {
	.btn-right {
		margin-left: 0 !important;
	}
	.contact-banner-wrapper .banner-btn-wrapper, 
	.hubspot-banner-wrapper .banner-btn-wrapper,
	.stateofheart-banner-wrapper .banner-btn-wrapper,
	.appointment-banner-wrapper .banner-btn-wrapper,
	.team-banner-wrapper .banner-btn-wrapper,
	.chilidatahub-banner-wrapper .banner-btn-wrapper,
	.ebook-download-banner-wrapper .banner-btn-wrapper,
	.ebook-download-banner-two-wrapper .banner-btn-wrapper,
	.info-banner-wrapper .banner-btn-wrapper {
		margin-top: 20px !important;
	}

	button, .animated-btn, .animated-btn-white, .animated-btn-beige {
		padding: 12px 14px !important;
		font-size: 16px !important;
	}
}

/* button */

/* banner */

.contact-banner-wrapper,
.hubspot-banner-wrapper,
.stateofheart-banner-wrapper,
.appointment-banner-wrapper,
.team-banner-wrapper,
.chilidatahub-banner-wrapper,
.ebook-download-banner-wrapper,
.ebook-download-banner-two-wrapper,
.info-banner-wrapper {
	height: 436px;
	background-color: var(--red);
	position: relative;
}

.contact-banner-wrapper::before {
	content: "";
	position: absolute;
	right: 0;
	height: 436px;
	width: 466px;
	background-image: url("https://26570156.fs1.hubspotusercontent-eu1.net/hubfs/26570156/images/banner_icon_contact.svg");
}

.hubspot-banner-wrapper::before {
	content: "";
	position: absolute;
	right: calc(100vw / 8);
	bottom: 0;
	height: 436px;
	width: 500px;
	background-image: url("https://26570156.fs1.hubspotusercontent-eu1.net/hubfs/26570156/images/banner_icon_hubspot.svg");
}

.chilidatahub-banner-wrapper::before {
	content: "";
	position: absolute;
	right: calc(100vw / 8);
	bottom: 0;
	height: 436px;
	width: 500px;
	background-image: url("https://www.chili.ch/hubfs/Website%202023/banner_icon_chilidathub.svg");
}

.ebook-download-banner-wrapper::before {
	content: "";
	position: absolute;
	right: calc(100vw / 8);
	bottom: 0;
	height: 436px;
	width: 500px;
	background-image: url("https://www.chili.ch/hubfs/Website%202023/banner_icon_ebook_1.svg");
}

.ebook-download-banner-two-wrapper::before {
	content: "";
	position: absolute;
	right: calc(100vw / 7);
	bottom: 0;
	height: 436px;
	width: 500px;
	background-image: url("https://www.chili.ch/hubfs/Website%202023/banner_icon_ebook_2.svg");
}

.team-banner-wrapper::before {
	content: "";
	position: absolute;
	left: calc(100vw / 4);
	height: 436px;
	width: 500px;
	background-image: url("https://www.chili.ch/hubfs/Website%202023/banner_icon_team-1.svg");
}

.appointment-banner-wrapper::before {
	content: "";
	position: absolute;
	right: calc(100vw / 6);
	bottom: 0;
	height: 436px;
	width: 500px;
	background-image: url("https://www.chili.ch/hubfs/Website%202023/banner_icon_date.svg");
}

.stateofheart-banner-wrapper::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 436px;
	width: 436px;
	background-image: url("https://www.chili.ch/hubfs/Website%202023/banner_icon_stateoftheart.svg");
}

.info-banner-wrapper::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 436px;
	width: 436px;
	background-image: url("https://www.chili.ch/hubfs/Website%202023/banner_icon_info.svg");
	background-repeat: no-repeat;
}

.blog-right .post-body span#hs_cos_wrapper_post_body > .hs_cos_wrapper_widget {
	margin: 100px 0;
}

@media (max-width: 1200px) {
	.blog-right .post-body span#hs_cos_wrapper_post_body > .hs_cos_wrapper_widget {
		margin: 50px 0;
	}
}

@media (max-width: 768px) {
	.blog-right .post-body span#hs_cos_wrapper_post_body > .hs_cos_wrapper_widget {
		margin: 30px 0;
	}
}

.validate-website-banner .arrow-text{
	display: flex;
	align-items: center;
}

.validate-website-banner .arrow-text p{
	max-width: calc(100% - 90px);
	margin-bottom: 0 !important;
}


.banner h3 {
	z-index: 10;
}

.banner .animated-btn {
	z-index: 10;
}

@media (max-width: 1400px) {
	.hubspot-banner-wrapper::before {
		right: 0 !important;
	}
	.chilidatahub-banner-wrapper::before {
		right: 0 !important;
	}
	.ebook-download-banner-wrapper::before {
		right: 0 !important;
	}
	.ebook-download-banner-two-wrapper::before {
		right: 0 !important;
	}
	.banner-contact-wrapper::before {
		background-size: 300px;
		background-repeat: no-repeat;
		height: 436px !important;
		width: 250px !important;
	}
	.appointment-banner-wrapper::before {
		right: 0 !important;
	}
}
@media (max-width: 768px) {
	.contact-banner-wrapper::before {
		background-size: 200px;
		background-repeat: no-repeat;
		height: 436px !important;
		width: 200px !important;
	}
	.hubspot-banner-wrapper::before {
		background-size: cover;
		background-repeat: no-repeat;
		right: 0 !important;
		height: 250px !important;
		width: 350px !important;
	}
	.chilidatahub-banner-wrapper::before {
		background-size: cover;
		background-repeat: no-repeat;
		right: 0 !important;
		height: 250px !important;
		width: 350px !important;
	}
	.ebook-download-banner-wrapper::before {
		background-size: cover;
		background-repeat: no-repeat;
		right: 0 !important;
		height: 250px !important;
		width: 350px !important;
	}
	.ebook-download-banner-two-wrapper::before {
		background-size: cover;
		background-repeat: no-repeat;
		right: 0 !important;
		height: 250px !important;
		width: 350px !important;
	}
	.team-banner-wrapper::before {
		background-size: cover;
		background-repeat: no-repeat;
		height: 200px!important;
		bottom: 0;
		left: 0!important;
		width: 250px!important;
	}
	.appointment-banner-wrapper::before {
		background-repeat: no-repeat;
		background-size: 400px;
		height: 250px!important;
		right: 0!important;
		width: 200px!important;
	}
	.stateofheart-banner-wrapper::before {
		background-size: contain;
		background-repeat: no-repeat;
		right: 0 !important;
		height: 250px !important;
		width: 350px !important;
	}
	.info-banner-wrapper::before {
		background-size: contain;
		background-repeat: no-repeat;
		right: 0 !important;
		height: 250px !important;
		width: 350px !important;
	}
	.contact-banner-wrapper,
	.hubspot-banner-wrapper,
	.stateofheart-banner-wrapper,
	.appointment-banner-wrapper,
	.team-banner-wrapper,
	.chilidatahub-banner-wrapper,
	.ebook-download-banner-wrapper,
	.ebook-download-banner-two-wrapper,
	.info-banner-wrapper {
		height: 250px !important;
	}
	.contact-banner-wrapper::before {
		height: 250px !important;
	}
}

@media (max-width: 576px) {
	.hubspot-banner-wrapper::before {
		background-size: cover;
		background-repeat: no-repeat;
		right: 0 !important;
		height: 200px !important;
		width: 250px !important;
	}
	.chilidatahub-banner-wrapper::before {
		background-size: cover;
		background-repeat: no-repeat;
		right: 0 !important;
		height: 200px !important;
		width: 250px !important;
	}
	.ebook-download-banner-wrapper::before {
		background-size: cover;
		background-repeat: no-repeat;
		right: 0 !important;
		height: 200px !important;
		width: 250px !important;
	}
	.ebook-download-banner-two-wrapper::before {
		background-size: cover;
		background-repeat: no-repeat;
		right: 0 !important;
		height: 200px !important;
		width: 250px !important;
	}

}

/* banner */

/* hashtags */

.hashtag {
	font: 16px/30px Montserrat-SemiBold;
	display: inline-block;
}
@media(min-width: 576px) {
	.hashtag .link:hover {
		color: var(--red);
	}
}
.underline-hashtag a {
	font: 18px/30px Montserrat-SemiBold;
	border-bottom: solid 3px var(--black);
}

.underline-hashtag {
	margin: 10px 0;
}

.underline-hashtag:last-child {
	margin-bottom: 20px;
}

.underline-hashtag .link.active {
	color: var(--red);
	border-bottom: solid 3px var(--red);
}

.center-hashtags {
	margin: 0 auto;
	text-align: center;
}

.hashtags {
	word-wrap: break-word;
	position: relative;
}

.hashtag-divider {
	font: 16px/30px Montserrat-SemiBold;
	display: inline-block;
	position: relative;
	width: 2px;
	height: 100%;
}

@media (max-width: 768px) {
	.underline-hashtag {
		margin: 0px 10px 5px 0;
		display: inline-block;
	}
	.underline-hashtag-wrapper{
		margin-top: 30px;
	}
}

/* hashtags */

/* rectangle */

.red-rectangle {
	height: auto;
	padding: 5px 0;
	background-color: #c22a40;
	font: 45px/55px Montserrat-Regular;
	color: white;
	display: -webkit-flexbox;
	display: flex;
	align-items: center;
	margin-top: 15px;
}
@media(min-width: 576px) {
	.red-rectangle .link:hover {
		color: var(--white);
	}
}
.rectangle-wrapper {
	display: block;
}

.red-rectangle .link {
	padding-left: 25px;
	word-wrap: break-word;
}

.ebook-download .red-rectangle {
	position: relative;
	z-index: 50;
}

@media (max-width: 576px) {
	.red-rectangle a, .white-rectangle > * {
		font: 18px Montserrat-Regular !important;
	}
	.white-rectangle a {
		font: 18px Montserrat-Regular !important;
	}
}

.white-rectangle {
	height: 65px;
	background-color: white;
	font: 45px/55px Montserrat-Regular;
	color: black;
	display: -webkit-flexbox;
	display: flex;
	align-items: center;
	margin-top: 15px;
}

.white-rectangle a {
	padding-left: 25px;
	word-wrap: break-word;
}

@media (max-width: 1400px) {
	.rectangle-wrapper {
		top: 55px !important;
	}
	.red-rectangle a {
		font: 28px/40px Montserrat-Regular;
	}
	.white-rectangle {
		height: auto !important;
	}
}

/* rectangle */

.top-buffer-massiv {
	margin-top: 200px;
}

.bottom-buffer-massiv {
	margin-bottom: 200px;
}

.top-buffer {
	margin-top: 100px;
}

.bottom-buffer {
	margin-bottom: 100px;
}

.top-buffer-small {
	margin-top: 60px;
}

.top-padding-small {
	padding-top: 60px !important;
}

.bottom-buffer-small {
	margin-bottom: 60px;
}

.top-buffer-medium {
	margin-top: 80px;
}

.bottom-buffer-medium {
	margin-bottom: 80px;
}

.top-buffer-tiny {
	margin-top: 30px;
}

.bottom-buffer-tiny {
	margin-bottom: 30px;
}

@media (max-width: 1075px) {
	.image-responsive img {
		height: auto !important;
	}
}

@media (max-width: 1400px) {
	.top-buffer-massiv {
		margin-top: 100px;
	}
	.bottom-buffer-massiv {
		margin-bottom: 100px;
	}
}

@media (max-width: 1200px) {
	.bottom-buffer {
		margin-bottom: 50px !important;
	}
	.top-buffer {
		margin-top: 50px !important;
	}
	.top-buffer-small {
		margin-top: 30px !important;
	}
	.top-padding-small {
	padding-top: 30px !important;
}
	.bottom-buffer-small {
		margin-bottom: 30px !important;
	}
	.top-buffer-medium {
		margin-top: 50px;
	}

	.bottom-buffer-medium {
		margin-bottom: 50px;
	}
}

@media (max-width: 768px) {
	.top-buffer-massiv {
		margin-top: 50px;
	}

	.bottom-buffer-massiv {
		margin-bottom: 50px;
	}
	.image-template-home {
		max-width: 100%;
	}
	.bottom-buffer {
		margin-bottom: 30px !important;
	}
	.top-buffer {
		margin-top: 30px !important;
	}
	.top-buffer-medium {
		margin-top: 30px;
	}

	.bottom-buffer-medium {
		margin-bottom: 30px;
	}
	.bottom-buffer-tiny:not(.slider-controls-row) {
		margin-bottom: 10px;
	}
}

@media (max-width: 576px) {
	.image-template-home.image-responsive img {
		height: 232px !important;
		min-height: unset;
	}
}

.make-relative {
	position: relative !important;
}

.make-absolute {
	position: absolute !important;
}

.make-static {
	position: static !important;
}

/*#endregion {main}*/

/*#region {sticky-contact}*/

.sticky-contact {
	position: fixed;
	top: 700px;
	right: 40px;
	float: right;
	z-index: 10000;
}

@media (max-width: 768px) {
	.sticky-contact {
		display: none;
	}
}

/*#endregion {sticky-contact}*/

.test {
	background-color: green;
	height: 600px;
}

.test2 {
	background-color: blueviolet;
	height: 600px;
}

/*#region {footer}*/

/* {main-footer} */

@media (max-width: 576px) {
	.main-footer .image-box .image-wrapper {
		justify-content: start !important;
	}
}

@media (min-width: 1650px) {
	.form, .sub-footer form.hs-form {
		padding-left: 70px !important;
	}
}

.footer > .container-fluid {
	padding: 0 !important; 
}

.main-footer {
	padding: 130px 0;
	background-color: var(--black);
	color: rgba(255, 255, 255, 0.54);
	position: relative;
}

.main-footer .header {
	font-family: Montserrat-Black;
	font-size: 22px;
}

.main-footer .footer-list {
	padding: 0;
	font-family: Montserrat-Regular;
	font-size: 16px;
	display: inline-block;
	vertical-align: top;
	letter-spacing: 0px;
	margin-top: 30px;
	line-height: 28px;
}

.main-footer .image-box .w-50 {
	width: calc(40% - 10px) !important;
}

.main-footer .col-auto:not(:last-child) {
	margin-right: 70px;
}

.main-footer .footer-list li {
	list-style: none;
	margin-bottom: 2px;
}

.main-footer .image-box .image-wrapper {
	display: -webkit-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-footer .image-wrapper.small img {
	margin-top: 10px;
}

.main-footer .image-wrapper img {
	object-fit: scale-down;
	height: inherit;
	MAX-WIDTH: 100%;
	width: auto;
	height: 70px;
	margin-bottom: 20px;
	margin-bottom: 20px;
}

@media(max-width: 1650px) {
	.main-footer .image-box .w-50 {
		width: 50% !important;
	}
}

@media(min-width: 576px) {
	.main-footer .image-box {
		margin-top: 30px;
	}
}

@media(max-width: 576px) {
	.main-footer .image-box {
		margin-top: 20px;
	}
	.main-footer .image-wrapper img {
		height: 60px;
	}
}

@media(min-width: 576px) {
	.main-footer .link:hover {
		color: var(--red);
	}
}
@media (max-width: 576px) {
	.main-footer {
		padding: 90px 0;
	}
}

/* {sub-footer} */

.sub-footer {
	padding: 130px 0;
	background-color: var(--white);
	position: relative;
}

.sub-footer input {
	background-color: var(--white) !important;
}

.sub-footer .row {
	height: 100%;
}

.sub-footer .header,
.sub-footer .cta-header {
	font-family: Montserrat-Black;
	font-size: 30px;
}

.sub-footer .header {
	margin-bottom: 10px;
}

@media (max-width: 576px) {
	.sub-footer {
		padding: 90px 0;
	}
}

/* {form} */

.sub-footer .form {
	padding: 0 8px;
}

.sub-footer .form .label, .sub-footer form.hs-form label {
	font-family: Montserrat-Regular;
	font-size: 16px;
	color: var(--black);
	letter-spacing: 0px;
	padding: 0;
}

.sub-footer .form input[type="text"], .sub-footer form.hs-form input.hs-input {
	height: 60px;
	width: 100%;
	padding: 0;
	margin: 0;
	border: 1px solid var(--black);
	padding: 6px;
}

.sub-footer .form div[class^="col-"] {
	padding: 5px;
}

.sub-footer form.hs-form fieldset.form-columns-1 {
	max-width:100% !important;
	width:100%;
	display:inline-block;
	vertical-align:top;
}

.sub-footer form.hs-form .hs_submit{
	display: inline-block;
	margin-top: 1.85rem;
	width: 100%;
}

.form-module form.hs-form .hs_submit {
	margin-top: 1.85rem;
}

.sub-footer .hs-firstname, .sub-footer .hs-lastname {
	width: 41.66666667% !important;
}

.sub-footer .hs-salutation {
	width: 16.66666667% !important;
}
.sub-footer form.hs-form input {
	background-color: white;
}
.sub-footer .form .button, .sub-footer form.hs-form input.hs-button {
	width: 100%;
	height: 60px;
	background-color: var(--black) !important;
	color: var(--white);
	font-family: Montserrat-Regular;
	font-size: 18px;
	border: none;
	transition: all 0.2s ease-in;
	margin-right: 8px;
}

@media(min-width: 576px) {

	.sub-footer .form .button:hover, .sub-footer form.hs-form input.hs-button:hover {
		color: var(--black);
		background-color: var(--white);
		border: 1px solid var(--black);
	}

}  

@media(min-width: 480px) {
	.sub-footer form.hs-form .hs_submit {
		width: calc(50% - 8px);
	}

}

@media(max-width: 480px) {
	.sub-footer form.hs-form fieldset .input {
		margin-right: 0;
	}

	.sub-footer .hs-firstname, .sub-footer .hs-lastname, .sub-footer .hs-salutation, .sub-footer .hs_submit {
		width: 100% !important;
	}

}

.sub-footer .header.hover .sub-footer .header img {
	margin-left: 30px;
}

/* {info} */

.sub-footer .info {
	height: 100%;
}

.sub-footer .info-wrapper {
	margin-left: auto;
}

.sub-footer .info .header {
	text-align: right;
	margin-bottom: 20px;
}

.sub-footer .icon-list {
	padding: 0 20px 0 0;
	margin-left: 140px;
	margin-bottom: 0 !important;
	margin-top: 20px;
}

.sub-footer .icon-list li {
	list-style: none;
}

.sub-footer .link-list {
	display: flex;
	padding: 0;
	font-size: 14px !important;
	text-align: right;
	margin-left: 50px;
	line-height: 20px;
	margin-bottom: 0 !important;
	margin-top: 20px;
	justify-content: flex-end;
	flex-direction: column;
}

.sub-footer .link-list li {
	list-style: none;
}

.sub-footer .link-list a {
	text-decoration: none;
	color: inherit;
	transition: all 0.2s ease-in;
}

.sub-footer .link-list a.active {
	color: var(--red);
}
@media(min-width: 576px) {
	.sub-footer .link-list a:hover {
		color: var(--red);
	}
}
@media(min-width: 576px) {
	.sub-footer .info .header:hover + .sub-footer .info .header img {
		margin-left: 50px;
	}
}
.sub-footer .info .list-wrapper {
	display: -webkit-flexbox;
	display: flex;
	justify-content: flex-end;
}

.sub-footer .appointment-link {
	display: inline-block;
	color: var(--black) !important;
}

.sub-footer .appointment-link:hover {
	color: var(--black) !important;
}

.sub-footer .arrow-text.active .appointment-link {
	color: var(--black) !important;
}

@media (max-width: 992px) {
	.sub-footer .info-wrapper {
		margin-top: 50px;
	}

	.sub-footer .info-wrapper .icon-list {
		margin-left: 80px;
	}

	.sub-footer .header,
	.sub-footer .cta-header {
		font-size: 24px;
	}

	.sub-footer .info-wrapper {
		margin-left: 0;
	}
}


@media(max-width: 576px) {
	.sub-footer .info-wrapper .icon-list {
		margin-left: 0;
	}
}

@media (max-width: 768px) {
	.sub-footer .info-wrapper {
		margin-left: 0;
	}

	.legal-consent-container > .hs-richtext > p {
		font-size: 10px !important;
		line-height: 20px !important;
		margin: 0;
	}

}

@media (max-width: 1400px) {
	.main-footer .footer-list {
		margin-top: 8px;
	}
}

form .hs-richtext, form .hs-richtext p {
	font-size: 12px;
	line-height: 20px;
	margin: 0;
}

/*#endregion {footer}*/


/* {Language Switcher} */

.language-selector-item{
	text-transform: uppercase;
}

.active-language {
	color: var(--red) !important;
}

.lang-link {
	text-decoration: none !important;
}

/*#endregion {Language Switcher}*/


/* {Headings for Blogs} */

.hs-blog-name-evas-marketing-küche .blog-detail .blog-right .post-body h2,
.hs-blog-name-evas-marketing-küche .blog-detail .blog-right .post-body h2 span,
.hs-blog-name-smart-customer-solutions .blog-detail .blog-right .post-body h2,
.hs-blog-name-smart-customer-solutions .blog-detail .blog-right .post-body h2 span,
.h4-styles-no-margin, .blog-intro-text-bold {
	font: 30px/38px Montserrat-Black !important;
}

.hs-blog-name-evas-marketing-küche .blog-right .post-body span#hs_cos_wrapper_post_body > h2:not(:first-child),
.hs-blog-name-smart-customer-solutions .blog-right .post-body span#hs_cos_wrapper_post_body > h2:not(:first-child) {
	margin-top: 60px;
}

@media (min-width: 1200px) {
	.hs-blog-name-evas-marketing-küche .blog-detail .blog-right .post-body h2,
	.hs-blog-name-evas-marketing-küche .blog-detail .blog-right .post-body h2 span,
	.hs-blog-name-smart-customer-solutions .blog-detail .blog-right .post-body h2,
	.hs-blog-name-smart-customer-solutions .blog-detail .blog-right .post-body h2 span,
	.blog-intro-text-bold {
		max-width: 70%;
	}
}

@media (min-width: 768px) {
	.hs-blog-name-evas-marketing-küche .blog-detail .blog-right .post-body h2,
	.hs-blog-name-evas-marketing-küche .blog-detail .blog-right .post-body h2 span,
	.hs-blog-name-smart-customer-solutions .blog-detail .blog-right .post-body h2,
	.hs-blog-name-smart-customer-solutions .blog-detail .blog-right .post-body h2 span,
	.blog-intro-text-bold {
		max-width: 80%;
	}
}

@media (max-width: 1400px) {
	.hs-blog-name-evas-marketing-küche .blog-detail .blog-right .post-body h2,
	.hs-blog-name-evas-marketing-küche .blog-detail .blog-right .post-body h2 span,
	.hs-blog-name-evas-marketing-küche .blog-detail .blog-right .post-body h2 > a,
	.hs-blog-name-smart-customer-solutions .blog-detail .blog-right .post-body h2,
	.hs-blog-name-smart-customer-solutions .blog-detail .blog-right .post-body h2 span,
	.hs-blog-name-smart-customer-solutions .blog-detail .blog-right .post-body h2 > a,
	.h4-styles-no-margin, .blog-intro-text-bold {
		font: 24px/28px Montserrat-Black !important;
	}
}

@media (max-width: 768px) {
	.hs-blog-name-evas-marketing-küche .blog-detail .blog-right .post-body h2,
	.hs-blog-name-evas-marketing-küche .blog-detail .blog-right .post-body h2 span,
	.hs-blog-name-evas-marketing-küche .blog-detail .blog-right .post-body h2 > a,
	.hs-blog-name-smart-customer-solutions .blog-detail .blog-right .post-body h2,
	.hs-blog-name-smart-customer-solutions .blog-detail .blog-right .post-body h2 span,
	.hs-blog-name-smart-customer-solutions .blog-detail .blog-right .post-body h2 > a,
	.h4-styles-no-margin, .blog-intro-text-bold {
		font: 22px/28px Montserrat-Black !important;
		margin-bottom: 20px !important;
	}
}

@media (max-width: 576px) {
	.hs-blog-name-evas-marketing-küche .blog-detail .blog-right .post-body h2,
	.hs-blog-name-evas-marketing-küche .blog-detail .blog-right .post-body h2 span,
	.hs-blog-name-evas-marketing-küche .blog-detail .blog-right .post-body h2 > a,
	.hs-blog-name-smart-customer-solutions .blog-detail .blog-right .post-body h2,
	.hs-blog-name-smart-customer-solutions .blog-detail .blog-right .post-body h2 span,
	.hs-blog-name-smart-customer-solutions .blog-detail .blog-right .post-body h2 > a,
	.blog-intro-text-bold {
		font: 20px/26px Montserrat-Black !important;
		margin-bottom: 20px !important;
	}
}

.blog-intro-text-bold {
	margin-bottom: 60px;
}



.blog-detail .blog-right .post-body .validate-website-banner .cta-text,
.blog-detail .blog-left .author-name,
.related-blogs-text {
	font: 22px/28px Montserrat-SemiBold;
	margin-bottom: 20px;
	display: inline-block;
}


@media(min-width: 1200px) {
	.blog-detail .blog-right .post-body .validate-website-banner .cta-text,
	.blog-detail .blog-left .author-name {
		max-width: 70%;
	}
}


@media(min-width: 768px) {
	.blog-detail .blog-right .post-body .validate-website-banner .cta-text,
	.blog-detail .blog-left .author-name {
		max-width: 80%;
	}
}

@media (max-width: 576px) {
	.blog-detail .blog-right .post-body .validate-website-banner .cta-text,
	.blog-detail .blog-left .author-name,
	.related-blogs-text {
		font: 18px/24px Montserrat-SemiBold !important;
		margin-bottom: 20px !important;
	}
}



.row .related-post-title {
	font: 22px/28px Montserrat-Black;
	margin-bottom: 20px;
	display: inline-block;
}


@media (max-width: 576px) {
	.related-posts .row .related-post-title {
		font: 18px/24px Montserrat-Black !important;
		margin-bottom: 20px !important;
	}
}



.quote .customer-testimonial {
	font: 30px / 38px Montserrat-Regular;
}


@media(max-width: 1400px) {
	.quote .customer-testimonial {
		font: 24px / 28px Montserrat-Regular;
	}
}

@media(max-width: 768px) {
	.quote .customer-testimonial {
		font: 22px / 28px Montserrat-Regular;
		margin-bottom: 20px !important;
	}
}



.call-to-action-content-wrapper .e-book-title {
	font: 45px / 55px Montserrat-Black;
	display: inline-block;
}


@media(max-width: 1200px) {
	.call-to-action-content-wrapper .e-book-title {
		font: 36px / 42px Montserrat-Black !important;
	}
}

@media(max-width: 768px) {
	.call-to-action-content-wrapper .e-book-title {
		font: 26px / 34px Montserrat-Black !important;
	}
}

/* #endregion {Headings for Blogs}*/

/*****************************************/