/* 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%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

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


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.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;
  }
}

/* Fonts */
@font-face {
  font-family: 'NHaasGroteskDSPro-55Rg';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url('https://25246129.fs1.hubspotusercontent-eu1.net/hubfs/25246129/raw_assets/public/optimizemyday/fonts/nhaasgroteskdspro-55rg-webfont.woff2') format('woff2'),
       url('https://25246129.fs1.hubspotusercontent-eu1.net/hubfs/25246129/raw_assets/public/optimizemyday/fonts/nhaasgroteskdspro-55rg-webfont.woff') format('woff');
}
@font-face {
  font-family: 'NHaasGroteskDSPro-75Bd';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url('https://25246129.fs1.hubspotusercontent-eu1.net/hubfs/25246129/raw_assets/public/optimizemyday/fonts/nhaasgroteskdspro-75bd.woff-webfont.woff2') format('woff2'),
       url('https://25246129.fs1.hubspotusercontent-eu1.net/hubfs/25246129/raw_assets/public/optimizemyday/fonts/nhaasgroteskdspro-75bd.woff-webfont.woff') format('woff');
}
@font-face {
  font-family: 'NHaasGroteskDSPro-65Md';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('https://25246129.fs1.hubspotusercontent-eu1.net/hubfs/25246129/raw_assets/public/optimizemyday/fonts/NHaasGroteskDSPro-65Md.woff2') format('woff2'),
    url('https://25246129.fs1.hubspotusercontent-eu1.net/hubfs/25246129/raw_assets/public/optimizemyday/fonts/NHaasGroteskDSPro-65Md.woff') format('woff');
}
@font-face {
  font-family: "NeueHaasGroteskTextPro55Roman";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('https://25246129.fs1.hubspotusercontent-eu1.net/hubfs/25246129/raw_assets/public/optimizemyday/fonts/NeueHaasGroteskTextPro55Roman/font.woff2') format('woff2'), 
    url('https://25246129.fs1.hubspotusercontent-eu1.net/hubfs/25246129/raw_assets/public/optimizemyday/fonts/NeueHaasGroteskTextPro55Roman/font.woff') format('woff');
}
@font-face {
  font-family: "NeueHaasGroteskTextPro75Bold";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('https://25246129.fs1.hubspotusercontent-eu1.net/hubfs/25246129/raw_assets/public/optimizemyday/fonts/NeueHaasGroteskTextPro75Bold/font.woff2') format('woff2'), 
    url('https://25246129.fs1.hubspotusercontent-eu1.net/hubfs/25246129/raw_assets/public/optimizemyday/fonts/NeueHaasGroteskTextPro75Bold/font.woff') format('woff');
}
@font-face {
  font-family: 'icomoon';
  src: url('https://25246129.fs1.hubspotusercontent-eu1.net/hubfs/25246129/raw_assets/public/optimizemyday/fonts/icomoon.ttf?gjol14') format('truetype'),
    url('https://25246129.fs1.hubspotusercontent-eu1.net/hubfs/25246129/raw_assets/public/optimizemyday/fonts/icomoon.woff?gjol14') format('woff'),
    url('https://25246129.fs1.hubspotusercontent-eu1.net/hubfs/25246129/raw_assets/public/optimizemyday/fonts/icomoon.svg?gjol14#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-pencil:before {
  content: "\e900";
}
.icon-phone:before {
  content: "\e901";
}
.icon-home:before {
  content: "\e902";
}
.icon-arrow-right:before {
  content: "\e903";
}
@font-face {
  font-family: 'omd-font';
  src: url('https://25246129.fs1.hubspotusercontent-eu1.net/hubfs/25246129/raw_assets/public/optimizemyday/fonts/omd-font.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

[class^="omd_icon-"], [class*=" omd_icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'omd-font' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.omd_icon-additional-repair:before {
  content: "\e900";
}
.omd_icon-add:before {
  content: "\e901";
}
.omd_icon-omd-logo:before {
  content: "\e902";
}
.omd_icon-scanCodeSignature:before {
  content: "\e903";
}
.omd_icon-link:before {
  content: "\e904";
}
.omd_icon-hamburger:before {
  content: "\e905";
}
.omd_icon-add-subui:before {
  content: "\e906";
}
.omd_icon-checked:before {
  content: "\e907";
}
.omd_icon-attachment:before {
  content: "\e908";
}
.omd_icon-ausplanen:before {
  content: "\e909";
}
.omd_icon-backlog:before {
  content: "\e90a";
}
.omd_icon-barcode:before {
  content: "\e90b";
}
.omd_icon-call:before {
  content: "\e90c";
}
.omd_icon-camera:before {
  content: "\e90d";
}
.omd_icon-change-orientation:before {
  content: "\e90e";
}
.omd_icon-city:before {
  content: "\e90f";
}
.omd_icon-cloud-sync:before {
  content: "\e911";
}
.omd_icon-cloud-warning:before {
  content: "\e912";
}
.omd_icon-confirm:before {
  content: "\e913";
}
.omd_icon-connect:before {
  content: "\e914";
}
.omd_icon-cross:before {
  content: "\e915";
}
.omd_icon-details:before {
  content: "\e916";
}
.omd_icon-differenz:before {
  content: "\e917";
}
.omd_icon-itemsdelivered:before {
  content: "\e918";
}
.omd_icon-finished:before {
  content: "\e919";
}
.omd_icon-fixed:before {
  content: "\e91a";
}
.omd_icon-no-service:before {
  content: "\e91b";
}
.omd_icon-report:before {
  content: "\e91c";
}
.omd_icon-arrow-down:before {
  content: "\e91d";
}
.omd_icon-arrow-left:before {
  content: "\e91e";
}
.omd_icon-follow-on:before {
  content: "\e91f";
}
.omd_icon-form:before {
  content: "\e920";
}
.omd_icon-arrow-right:before {
  content: "\e921";
}
.omd_icon-arrow-up:before {
  content: "\e922";
}
.omd_icon-unplan-1:before {
  content: "\e927";
}
.omd_icon-copy:before {
  content: "\e928";
}
.omd_icon-grid:before {
  content: "\e929";
}
.omd_icon-location-signs:before {
  content: "\e92a";
}
.omd_icon-gallery:before {
  content: "\e92b";
}
.omd_icon-go:before {
  content: "\e92c";
}
.omd_icon-house:before {
  content: "\e92e";
}
.omd_icon-inbox:before {
  content: "\e92f";
}
.omd_icon-info:before {
  content: "\e930";
}
.omd_icon-items-planned-visited:before {
  content: "\e931";
}
.omd_icon-kpi:before {
  content: "\e932";
}
.omd_icon-leute-verfuegbar:before {
  content: "\e933";
}
.omd_icon-location:before {
  content: "\e934";
}
.omd_icon-map:before {
  content: "\e935";
}
.omd_icon-material:before {
  content: "\e936";
}
.omd_icon-material-usage:before {
  content: "\e937";
}
.omd_icon-minus:before {
  content: "\e939";
}
.omd_icon-navigation:before {
  content: "\e93a";
}
.omd_icon-new-estimation:before {
  content: "\e93b";
}
.omd_icon-next:before {
  content: "\e93c";
}
.omd_icon-normieren:before {
  content: "\e93d";
}
.omd_icon-note:before {
  content: "\e93f";
}
.omd_icon-onsite:before {
  content: "\e941";
}
.omd_icon-ontheway:before {
  content: "\e942";
}
.omd_icon-order-parts:before {
  content: "\e943";
}
.omd_icon-papierkorb:before {
  content: "\e944";
}
.omd_icon-pause:before {
  content: "\e945";
}
.omd_icon-pause2:before {
  content: "\e946";
}
.omd_icon-play:before {
  content: "\e948";
}
.omd_icon-plus:before {
  content: "\e949";
}
.omd_icon-printer:before {
  content: "\e94a";
}
.omd_icon-question:before {
  content: "\e94b";
}
.omd_icon-refresh:before {
  content: "\e94c";
}
.omd_icon-relation:before {
  content: "\e94d";
}
.omd_icon-replace:before {
  content: "\e94f";
}
.omd_icon-rfid:before {
  content: "\e950";
}
.omd_icon-rollback:before {
  content: "\e951";
}
.omd_icon-route:before {
  content: "\e952";
}
.omd_icon-settings:before {
  content: "\e953";
}
.omd_icon-signature:before {
  content: "\e954";
}
.omd_icon-signature-required:before {
  content: "\e955";
}
.omd_icon-stoppliste:before {
  content: "\e956";
}
.omd_icon-stunden:before {
  content: "\e957";
}
.omd_icon-telefon:before {
  content: "\e958";
}
.omd_icon-today:before {
  content: "\e959";
}
.omd_icon-trichter:before {
  content: "\e95a";
}
.omd_icon-uhr:before {
  content: "\e95b";
}
.omd_icon-usage-request:before {
  content: "\e95d";
}
.omd_icon-back:before {
  content: "\e95e";
}
.omd_icon-koffer:before {
  content: "\e95f";
}
.omd_icon-BERATEN:before {
  content: "\e960";
}
.omd_icon-CONNECTOR:before {
  content: "\e961";
}
.omd_icon-DASHBOARD:before {
  content: "\e962";
}
.omd_icon-MOBILE:before {
  content: "\e96a";
}
.omd_icon-MONITORING:before {
  content: "\e96b";
}
.omd_icon-SCHEDULER:before {
  content: "\e96c";
}
.omd_icon-alarm:before {
  content: "\e938";
}
.omd_icon-option-request:before {
  content: "\e93e";
}
.omd_icon-remove:before {
  content: "\e94e";
}
.omd_icon-Ordner:before {
  content: "\e963";
}
.omd_icon-Polygon:before {
  content: "\e964";
}
.omd_icon-Sigma:before {
  content: "\e965";
}
.omd_icon-Sucher:before {
  content: "\e966";
}
.omd_icon-Zahnrad_Pfeil:before {
  content: "\e967";
}
.omd_icon-Zeigefinger:before {
  content: "\e968";
}
.omd_icon-Auszeichnung:before {
  content: "\e969";
}
.omd_icon-Edit:before {
  content: "\e96d";
}
.omd_icon-Gewicht:before {
  content: "\e96e";
}
.omd_icon-Haus:before {
  content: "\e96f";
}
.omd_icon-Lupe:before {
  content: "\e970";
}
.omd_icon-Material_ok:before {
  content: "\e971";
}
.omd_icon-Medaille:before {
  content: "\e972";
}
.omd_icon-schedule:before {
  content: "\e975";
}
.omd_icon-no-geocode:before {
  content: "\e976";
}
.omd_icon-filter-undone:before {
  content: "\e977";
}
.omd_icon-filter-all:before {
  content: "\e978";
}
.omd_icon-filter-done:before {
  content: "\e979";
}
.omd_icon-constraints:before {
  content: "\e910";
}
.omd_icon-earliest-latest:before {
  content: "\e923";
}
.omd_icon-notification:before {
  content: "\e924";
}
.omd_icon-message:before {
  content: "\e925";
}
.omd_icon-checkout:before {
  content: "\e926";
}
.omd_icon-receipt:before {
  content: "\e92d";
}
.omd_icon-user:before {
  content: "\e940";
}
.omd_icon-user-profile:before {
  content: "\e947";
}
.omd_icon-resource:before {
  content: "\e95c";
}
.omd_icon-resources:before {
  content: "\e973";
}
.omd_icon-permission:before {
  content: "\e974";
}
.omd_icon-vehicle:before {
  content: "\e97a";
}
.omd_icon-territory:before {
  content: "\e97b";
}
.omd_icon-support:before {
  content: "\e97c";
}
.omd_icon-languages:before {
  content: "\e97d";
}
.omd_icon-trip:before {
  content: "\e97e";
}
.omd_icon-payment:before {
  content: "\e97f";
}
.omd_icon-budget:before {
  content: "\e980";
}
.omd_icon-add-user:before {
  content: "\e981";
}
.omd_icon-call-intake:before {
  content: "\e982";
}
.omd_icon-movie:before {
  content: "\e983";
}
.omd_icon-customer:before {
  content: "\e984";
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  background-color: #F6F6F6;
  font-family: 'NeueHaasGroteskTextPro55Roman', sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  font-weight: 400;
}

@media(min-width: 768px) {
  body {
    font-size: 17px;
    line-height: 23px;
  }
}

body.menu-active, body.remove-scroll {
  overflow: hidden;
}

.body-wrapper {
  position: relative;
  overflow: hidden;
}

#main-content {
  background-color: #fff;
  box-shadow: 0px 0px 6px 0px rgba(50,52,54,0.5);
  max-width: 1280px;
  margin: 0 auto;
}

/* Paragraphs */
p {
  margin: 0 0 20px;
}
p:last-child {
  margin: 0;
}

strong, b {
  font-family: 'NeueHaasGroteskTextPro75Bold', sans-serif;
  font-weight: 400;
}

/* Anchors */
a {
  color: #ef6c00;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

/* Headings */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: 'NHaasGroteskDSPro-65Md', sans-serif;
  font-weight: 400;
  color: #0a0a0a;
  margin: 0 0 1.4rem;
  line-height: 1.38em;
  word-break: break-word;
}

h1, .h1 {
  font-size: 40px;
  line-height: 1em;
}
@media(min-width: 768px) {
  h1, .h1 {
    font-size: 58px;
  } 
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 28px;
}

h4, .h4 {
  font-size: 26px;
}

h5, .h5 {
  font-size: 24px;
}

h6, .h6 {
  font-size: 21px;
}

/* Lists */
ul,
ol {
  margin: 0 0 1.4rem;
}

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

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

/* Code blocks */
pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}


/* Horizontal rules */
hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */
img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  padding: 0 30px;
  max-width: 1170px;
  margin: 0 auto;
}
.cta_button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all .2s ease-in-out;
  white-space: normal;
}

.cta_button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* button */
.cta_button, 
.hs-button {
  font-family: 'NHaasGroteskDSPro-65Md', sans-serif;
  background: #ef6c00;
  border: 2px solid #ef6c00;
  box-shadow: none;
  border-radius: 20px;
  color: #000;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 0;
  padding: 8px 20px;
  text-align: center;
  text-decoration: none;
  letter-spacing: -0.15px;
  min-width: 126px;
}
@media(min-width: 768px) {
  font-size: 15px;
  line-height: 18px;
  min-width: 173px;
}
.cta_button.small-btn, 
.hs-button.small-btn {
  font-size: 12px;
  padding: 5px 20px;
}

.cta_button:hover, .cta_button:focus, .cta_button:active,
.hs-button:hover, .hs-button:focus, .hs-button:active {
  background-color: #7F9AC4;
  border-color: #7F9AC4;
  color: #fff;
}

.cta_button.secondary {
  background: #000;
  border-color: #000;
  color: #fff;
}
.cta_button.secondary:hover {
  background-color: #7E9AC8;
  border-color: #7E9AC8;
}
/* Fields */

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

/* Labels */

form label {
  font-family: 'NHaasGroteskDSPro-55Rg' sans-serif;
  display: block;
  font-size: 16px;
  line-height: 20px;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  color: #000;
  background-color: #fff;
  border: none;
	border-bottom: 3px solid #000;
  display: block;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 0 0;
  width: 100% !important;
  outline: none;
	box-shadow: none;
  height: 35px;
}

form textarea {
  resize: none !important;
}

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

/* Inputs - checkbox/radio */

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

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

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

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-top: -1px;
  margin-right: 8px;
  accent-color: black;
}

/* 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: 14px;
  line-height: 18px;
}

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: #000;
}

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

.hs-error-msg {
  color: #ef6c00;
  margin: 5px 0 0;
}

form .hs-error-msgs > li {
  margin: 5px 0 0;  
}
form .hs-error-msgs > li label {
  font-size: 12px;
}

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

form .hs-fieldtype-booleancheckbox ul li > label {
  position: relative;
  padding: 10px 0 0 35px;
}

.hs-error-msgs li > .hs-error-msg {
  padding: 0;
}

form input[type="checkbox"] {
  height: auto !important;
  margin: 0 !important;
  opacity: 0;
  overflow: hidden;
  padding-top: 0 !important;
  position: absolute !important;
  visibility: hidden;
  z-index: -5 !important;
}
form input[type="checkbox"] + span::before {
  border: 3px solid #000;
  content: "";
  display: block;
  height: 24px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 24px;
}
form input[type="checkbox"] + span::after {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 14px auto;
  content: "";
  display: block;
  height: 24px;
  left: 0;
  position: absolute;
  top: 8px;
  transform: scale(0);
  transition: all .2s ease-out;
  width: 24px;
}
input[type="checkbox"]:checked + span::before {
  background-color: #000;
}
form input[type="checkbox"]:checked + span::after {
  transform: scale(1);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.217' height='13.264'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='m.707 6.19 5.661 5.66L17.51.707'/%3E%3C/svg%3E");
}

@media(max-width: 767px) {
  form fieldset.form-columns-3 .hs-form-field {
    width: 100% !important;
  }
  form fieldset.form-columns-2 .hs-form-field {
    width: 100% !important;
  }
}

/* Captcha */
form .hs_recaptcha {
  margin: 1.4rem 0;
}

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
.header {
  background-color: #fff;
  max-width: 1280px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  min-height: 80px;
  background-color: transparent;
}
.header .container {
  position: relative;
  min-height: inherit;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.header .header__logo {
  position: absolute;
  width: 54px;
  height: 110px;
  top: 0;
  left: 15px;
  transition: all 0.4s ease-in-out;
}
.header .header__logo a {
  display: block;
  line-height: 0;
}
.header .header__logo a img {
  max-width: 100%;
}

.header .contact-info {
  display: flex;
  flex-flow: row nowrap;
  margin: 0 -10px;
}
.header .contact-info li {
  padding: 0 10px;
  font-size: 14px;
  line-height: 28px;
}
.header .contact-info li a {
  color: #fff;
  text-align: center;
}
.header .contact-info li a:hover {
  color: #000;
}
.header .contact-info li a .cls-1 {
  transition: all .2s ease-in-out;
}
.header .contact-info li a:hover .cls-1 {
  fill: #000 !important;
}
.header .contact-info li .text {
  display: block;
}
.header .contact-info li .icon-holder {
  max-width: 26px;
  margin: 0 auto;
  display: block;
}
.header .contact-info li svg {
  height: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .header .header__logo {
    width: 105px;
    height: 214px;
  }
  .header .contact-info {
    margin: 0 -15px;
  }
  .header .contact-info li {
    padding: 0 15px;
    font-size: 16px;
    line-height: 1.68em;
  }
  .header .contact-info li .icon-holder {
    max-width: 46px;
  }
}
@media (min-width: 992px) {
/*   .header {
    position: fixed;
  }
  .header.sticky-header {
    min-height: 60px;
  }
  .header.sticky-header .header__logo {
    width: 60px;
    height: 120px;
  } */
}
.hero-banner .holder {
  display: flex;
  flex-flow: row wrap;
  min-height: calc(100vh); /* support for browsers not supporting svh */
  min-height: calc(100svh);
  position: relative;
  z-index: 1;
}
.hero-banner .holder .container {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
}
.hero-banner .holder .bg {
  display: none;
}
.hero-banner .holder .bg-mobile {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #7F9AC4;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.hero-banner .title {
  font-family: 'NHaasGroteskDSPro-65Md', sans-serif;
  background-color: #000;
  padding: 15px;
  width: 315px;
  font-size: 35px;
  line-height: 42px;
  color: #fff;
  margin-bottom: 0;
}
.hero-banner .text {
  font-size: 18px;
  line-height: 26px;
  max-width: 315px;
  margin: 0 0 0 auto;
  padding: 30px 0 35px;
  position: relative;
}
.hero-banner .text:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-color: #000;
  width: 100%;
}

@media(min-width: 576px) {
  .hero-banner .title {
    width: 430px;
  }
  .hero-banner .text {
    max-width: 430px;
  }
}
@media(min-width: 768px) {
  .hero-banner .holder {
    min-height: 100vh;
  }
  .hero-banner .holder .bg-mobile {
    display: none;
  }
  .hero-banner .holder .bg {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
  .hero-banner .title {
    font-size: 58px;
    line-height: 68px;
    width: 530px;
  }
  .hero-banner .text {
    max-width: 530px;
  }
}
@media(min-width: 992px) {
  .hero-banner .title {
    font-size: 72px;
    line-height: 86px;
    padding: 20px;
    width: 630px;
  }
  .hero-banner .text {
    max-width: 630px;
  }
}
.hero-banner-slider .holder {
  display: flex;
  flex-flow: row wrap;
  min-height: calc(100vh); /* support for browsers not supporting svh */
  min-height: calc(100svh);
  position: relative;
  z-index: 1;
}
.hero-banner-slider .holder .container {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
}
.hero-banner-slider .holder .bg {
  display: none;
}
.hero-banner-slider .holder .bg-mobile {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #7F9AC4;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.hero-banner-slider .title {
  font-family: 'NHaasGroteskDSPro-65Md', sans-serif;
  background-color: #000;
  padding: 15px;
  width: 315px;
  font-size: 35px;
  line-height: 42px;
  color: #fff;
  margin-bottom: 0;
}
.hero-banner-slider .text {
  font-size: 18px;
  line-height: 26px;
  max-width: 315px;
  margin: 0 0 0 auto;
  padding: 30px 0 35px;
  position: relative;
}
.hero-banner-slider .text:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-color: #000;
  width: 100%;
}
.hero-banner-slider .slick-arrow {
  position: absolute;
  top: 35%;
  right: 20px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='Ebene 1' viewBox='0 0 238.05 342.07'%3E%3Cpath d='M0 342.07V0l238.05 171.04zM36.12 70.44v201.19l140.01-100.59z' style='fill:%23ffffff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: translateY(-35%);
  cursor: pointer;
  height: 30px;
  width: 15px;
}
.hero-banner-slider .slick-arrow.arrow-prev {
  display: none;
}


@media(min-width: 576px) {
  .hero-banner-slider .title {
    width: 430px;
  }
  .hero-banner-slider .text {
    max-width: 430px;
  }
}
@media(min-width: 768px) {
  .hero-banner-slider .holder {
    min-height: 100vh;
  }
  .hero-banner-slider .holder .bg-mobile {
    display: none;
  }
  .hero-banner-slider .holder .bg {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
  .hero-banner-slider .title {
    font-size: 58px;
    line-height: 68px;
    width: 530px;
  }
  .hero-banner-slider .text {
    max-width: 530px;
  }
}
@media(min-width: 992px) {
  .hero-banner-slider .title {
    font-size: 72px;
    line-height: 86px;
    padding: 20px;
    width: 630px;
  }
  .hero-banner-slider .text {
    max-width: 630px;
  }
  .hero-banner-slider .slick-arrow {
    height: 40px;
    width: 28px;
    right: 30px;
  }
}
.intro-module {
  padding: 85px 0;
}
.intro-module .h2 {
  font-size: 42px;
  line-height: 46px;
}
.intro-module .h2 span {
  color: #F56E00;
  display: block;
}
.intro-module .text {
  font-family: 'NHaasGroteskDSPro-65Md', sans-serif;
  font-size: 18px;
  line-height: 22px;
  max-width: 980px;
}

@media(min-width: 428px) {
  .intro-module .h2 {
    font-size: 50px;
    line-height: 50px;
  }
}
@media(min-width: 768px) {
  .intro-module .text {
    font-size: 24px;
    line-height: 27px;
  }
}
@media(min-width: 992px) {
  .intro-module {
    padding: 110px 0;
  }
  .intro-module .h2 {
    font-size: 65px;
    line-height: 62px;
    margin-bottom: 35px;
  }
  .intro-module .text {
    font-size: 30px;
    line-height: 33px;
  }
}
@media(min-width: 1200px) {
  .intro-module {
    padding: 135px 0;
  }
  .intro-module .h2 {
    font-size: 85px;
    line-height: 82px;
    margin-bottom: 35px;
  }
  .intro-module .text {
    font-size: 35px;
    line-height: 38px;
  }
}
.benefits-module {
  background-color: #7F9AC4;
  padding: 70px 0;
}
.benefits-module .column {
  margin-bottom: 30px;
}
.benefits-module .column:last-child {
  margin-bottom: 0;
}
.benefits-module .benefits {
  text-align: center;
  color: #fff;
}
.benefits-module .benefits .benefits__image {
  max-width: 101px;
  margin: 0 auto 15px;
}
.benefits-module .benefits h3 {
  color: #fff;
  font-size: 36px;
  line-height: 36px;
}
.benefits-module .benefits .text {
  font-size: 18px;
  line-height: 25px;
  max-width: 450px;
  margin: 0 auto;
}

@media(min-width: 768px) {
  .benefits-module {
    padding: 94px 0;
  }
}
@media(min-width: 992px) {
  .benefits-module .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .benefits-module .column {
    padding: 0 15px;
    margin: 0;
    width: 33.33%;
  }
  .benefits-module .benefits .text {
    max-width: 320px;
    margin: 0 auto;
  }
}
@media(min-width: 1280px) {
  .benefits-module .benefits h3 {
    font-size: 31px;
    line-height: 31px;
  }
  .benefits-module .benefits .text {
    font-size: 16px;
    line-height: 23px;
  }
}
.headline {
  padding: 53px 0;
}

.headline h2 {
  font-size: 42px;
  line-height: 46px;
  margin-bottom: 30px;
}

.headline h2 span {
  color: #F56E00;
  display: block;
}

@media(min-width: 428px) {
  .headline h2 {
    font-size: 50px;
    line-height: 50px;
  }
}

@media(min-width: 768px) {
  .headline h2 {
    font-size: 62px;
    line-height: 58px;
  }
}

@media(min-width: 992px) {
  .headline {
    padding: 60px 0;
  }

  .headline h2 {
    font-size: 65px;
    line-height: 62px;
    margin-bottom: 50px;
  }
}

@media(min-width: 1200px) {
  .headline {
    padding: 72px 0;
  }
  
  .headline h2 {
    font-size: 85px;
    line-height: 82px;
  }
}
.content-with-image .holder {
  border-bottom: 3px solid #000;
  padding-bottom: 90px;
  margin-bottom: 90px;
}
.content-with-image .column {
  margin-bottom: 30px;
}
.content-with-image h3 {
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -0.3px;
  margin-bottom: 21px;
}
.content-with-image .image-holder {
  text-align: center;
}
.content-with-image .text ul {
  padding: 0 0 0 15px;
}

@media(min-width: 768px) {
  .content-with-image .holder {
    padding-bottom: 115px;
    margin-bottom: 115px;
  }
  .content-with-image h3 {
    font-size: 40px;
    line-height: 40px;
  }
  .content-with-image .row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 -15px;
  }
  .content-with-image .row.row-reverse {
    flex-direction: row-reverse;
  }
  .content-with-image .column {
    padding: 0 15px;
    margin: 0;
  }
  .content-with-image .column:nth-child(1) {
    width: 55%;
  }
  .content-with-image .column:nth-child(2) {
    width: 45%;
  }
}
@media(min-width: 992px) {
  .content-with-image h3 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 36px;
    letter-spacing: -0.62px;
  }
}
@media(min-width: 1200px) {
  .content-with-image h3 {
    font-size: 62px;
    line-height: 58px;
  }
}
@media(min-width: 1280px) {
  .content-with-image .holder {
    padding-bottom: 140px;
    margin-bottom: 140px;
  }
}
.content-with-video .holder {
  border-bottom: 3px solid #000;
  padding-bottom: 90px;
  margin-bottom: 90px;
}
.content-with-video .column {
  margin-bottom: 30px;
}
.content-with-video h3 {
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -0.3px;
  margin-bottom: 21px;
}
.content-with-video .text ul {
  padding: 0 0 0 15px;
}
.content-with-video .video-holder {
  text-align: center;
}
.content-with-video .iframe_wrapper {
  height: 0;
  padding-bottom: 56.25%;
  padding-top: 25px;
  position: relative;
}
.content-with-video .embed_container {
  display: inline-block;
  height: 100%;
  position: relative;
  width: 100%;
}
.content-with-video .embed_container iframe {
  left: 0;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

@media(min-width: 768px) {
  .content-with-video .holder {
    padding-bottom: 115px;
    margin-bottom: 115px;
  }
  .content-with-video h3 {
    font-size: 40px;
    line-height: 40px;
  }
  .content-with-video .row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 -15px;
  }
  .content-with-video .row.row-reverse {
    flex-direction: row-reverse;
  }
  .content-with-video .column {
    padding: 0 15px;
    margin: 0;
  }
  .content-with-video .column:nth-child(1) {
    width: 55%;
  }
  .content-with-video .column:nth-child(2) {
    width: 45%;
  }
}
@media(min-width: 992px) {
  .content-with-video h3 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 36px;
    letter-spacing: -0.62px;
  }
}
@media(min-width: 1200px) {
  .content-with-video h3 {
    font-size: 62px;
    line-height: 58px;
  }
}
@media(min-width: 1280px) {
  .content-with-video .holder {
    padding-bottom: 140px;
    margin-bottom: 140px;
  }
}
.try-it-now .holder {
  text-align: center;
  border-bottom: 3px solid #000;
  padding-bottom: 90px;
  margin-bottom: 90px;
}
.try-it-now h2 {
  font-size: 42px;
  line-height: 46px;
  margin-bottom: 30px;
}
.try-it-now h2 span {
  color: #F56E00;
  display: block;
}

.popup__modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 999;
  display: none;
}
.popup__modal.active-popup {
  display: block;
}
.popup__modal-inner {
  background: #fff;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  height: inherit;
  position: relative;
  overflow-y: scroll;
  max-width: 1280px;
  margin: 0 auto;
}
.popup__modal-inner .holder {
  position: relative;
  pointer-events: auto;
  background-color: #F56E00;
  background-clip: padding-box;
  padding: 80px 30px;
  text-align: center;
  width: 100%;
}
.popup__modal-inner .content h2 {
  color: #2B2E34;
  font-size: 46px;
  line-height: 44px;
}
.popup__modal-inner .content .text {
  color: #2B2E34;
  font-size: 16px;
  line-height: 19px;
  max-width: 450px;
  margin: 0 auto;
}
.popup__modal-inner .content .text h3 {
  color: #2B2E34;
  font-size: 30px;
  line-height: 30px;
}
.popup__modal-inner .content .button-holder {
  margin: 40px 0 60px;
}
.popup__modal-inner .content .cta_button {
  background-color: #fff;
  border-color: #fff;
  font-size: 26px;
  line-height: 32px;
  border-radius: 100px;
  padding: 12px;
  min-width: 240px;
}
.popup__modal-inner .content .cta_button:hover {
  color: #000;
}
.popup__modal-inner .holder .close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  line-height: 30px;
  color: #fe3671;
  cursor: pointer;
  z-index: 5;
}
.popup__modal-inner .holder .close-popup svg {
  width: 45px;
}
.popup__modal-inner .content .column {
    margin-bottom: 30px;
  }

@media(min-width: 428px) {
  .try-it-now h2 {
    font-size: 50px;
    line-height: 50px;
  }
  .popup__modal-inner .content h2 {
    font-size: 51px;
    line-height: 48px;
  }
  .popup__modal-inner .content .cta_button {
    font-size: 26px;
    line-height: 32px;
    min-width: 240px;
    padding: 10px;
  }
  .popup__modal-inner .content .text h3 {
    font-size: 36px;
    line-height: 36px;
  }
}

@media(min-width: 768px) {
  .try-it-now .holder {
    padding-bottom: 115px;
    margin-bottom: 115px;
  }
  .try-it-now h2 {
     font-size: 62px;
     line-height: 58px;
  }
  .popup__modal-inner .holder {
    padding: 70px 50px;
  }
  .popup__modal-inner .content h2 {
    font-size: 71px;
    line-height: 68px;
  }
  .popup__modal-inner .content .cta_button {
    font-size: 30px;
    line-height: 36px;
    min-width: 300px;
    padding: 16px;
  }
  .popup__modal-inner .content .text h3 {
    font-size: 42px;
    line-height: 42px;
  }
  .popup__modal-inner .content .text {
    font-size: 23px;
    line-height: 27px;
  }
}

@media(min-width: 992px) {
  .try-it-now h2 {
    font-size: 65px;
    line-height: 62px;
    margin-bottom: 50px;
  }
  .popup__modal-inner .content h2 {
    font-size: 91px;
    line-height: 88px;
  }
  .popup__modal-inner .content .cta_button {
    font-size: 36px;
    line-height: 40px;
    padding: 20px;
  }
  .popup__modal-inner .content .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .popup__modal-inner .content .column {
    padding: 0 15px;
    margin: 0;
    width: 50%;
  }
}

@media(min-width: 1200px) {
  .try-it-now h2 {
    font-size: 85px;
    line-height: 82px;
  }
  .popup__modal-inner {
    overflow-y: hidden;
  }
}
.testimonials .column {
  margin: 0 0 30px;
}
.testimonials .column:last-child {
  margin: 0;
}
.testimonials h2 {
  font-size: 31px;
  line-height: 37px;
  letter-spacing: -0.3px;
  margin-bottom: 30px;
}
.testimonials .testimonials__box {
  background-color: #7F9AC4;
  padding: 30px 0;
}
.testimonials .testimonials__box blockquote {
  font-family: 'NHaasGroteskDSPro-55Rg' sans-serif;
  color: #F2F5F8;
  font-style: normal;
  font-size: 31px;
  line-height: 37px;
  margin: 0 0 20px;
}
.testimonials .testimonials__box cite {
  font-family: 'NHaasGroteskDSPro-75Bd', sans-serif;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
}

.testimonials-slider {
  padding: 0 30px 30px;
}
.testimonials-slider .image-holder img {
  margin: 0 auto;
}
.testimonials-slider .slick-arrow {
  cursor: pointer;
  position: absolute;
  top: 40%;
  left: -10px;
  transform: translateY(-50%) rotate(180deg);
  width: 18px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 238.05 342.07'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23ffffff; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='m0,342.07V0l238.05,171.04L0,342.07ZM36.12,70.44v201.19l140.01-100.59L36.12,70.44Z'/%3E%3C/svg%3E");
}
.testimonials-slider .slick-arrow.arrow-next {
  transform: translateY(-50%);
  right: -10px;
  left: auto;
}

.testimonials-slider .slick-dots {
  border-bottom: 3px solid #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
}
.testimonials-slider .slick-dots li {
  width: 25%;
  line-height: 0;
}
.testimonials-slider .slick-dots li.slick-active button {
  width: 100%;
  height: 10px;
  opacity: 1; 
  visibility: visible;
}
.testimonials-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  outline: none;
  border: none;
  height: 3px;
  background: #fff;
  border-radius: 10px;
  width: 0;
  opacity: 0; 
  visibility: hidden;
  position: relative;
  top: 5px;
}

@media(min-width: 768px) {
  .testimonials h2 {
    font-size: 48px;
    line-height: 58px;
  }
  .testimonials .testimonials__box blockquote {
    font-size: 30px;
    line-height: 48px;
  }
  .testimonials .testimonials__box cite {
    font-size: 18px;
    line-height: 26px;
  }
  .testimonials .row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 -15px;
  }
  .testimonials .column {
    padding: 0 15px;
    margin: 0;
  }
  .testimonials .column:nth-child(1) {
    width: 60%;
  }
  .testimonials .column:nth-child(2) {
    width: 40%;
  }
}
@media(min-width: 992px) {
  .testimonials h2 {
/*     font-size: 50px;
    line-height: 50px; */
    margin-bottom: 50px;
    letter-spacing: -0.62px;
  }
  .testimonials .testimonials__box {
    padding: 50px 0;
  }
  .testimonials .testimonials__box blockquote {
    font-size: 40px;
    line-height: 58px;
  }
  .testimonials .testimonials__box cite {
    font-size: 20px;
    line-height: 28px;
  }
  .testimonials-slider {
    padding: 0 60px 60px;
  }
  .testimonials-slider .slick-arrow {
    top: 50%;
    left: 0;
    width: 28px;
    height: 40px;
  }
}
/* @media(min-width: 1200px) {
  .testimonials h2 {
    font-size: 62px;
    line-height: 58px;
  }
} */
.content-slider-module .container {
  position: relative;
}
.content-slider-module .holder {
  border-bottom: 3px solid #000;
  padding-bottom: 90px;
  margin-bottom: 90px;
}
.content-slider-module .column {
  margin-bottom: 30px;
}
.content-slider-module .column:last-child {
  margin-bottom: 0;
}
.content-slider-module h2 {
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -0.3px;
  margin-bottom: 30px;
}
.content-slider-module .image-holder img {
  margin: 0 auto;
}
.content-slider {
  padding: 0 30px 90px;
  margin-bottom: 90px
}
.content-slider .slick-arrow {
  cursor: pointer;
  position: absolute;
  top: 40%;
  left: -10px;
  transform: translateY(-50%) rotate(180deg);
  width: 18px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 238.05 342.07'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %237F9AC4; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='m0,342.07V0l238.05,171.04L0,342.07ZM36.12,70.44v201.19l140.01-100.59L36.12,70.44Z'/%3E%3C/svg%3E");
}
.content-slider .slick-arrow.arrow-next {
  transform: translateY(-50%);
  right: -10px;
  left: auto;
}
.content-slider .slick-dots {
  border-bottom: 3px solid #000;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
}
.content-slider .slick-dots li {
  width: 25%;
  line-height: 0;
}
.content-slider .slick-dots li.slick-active button {
  width: 100%;
  height: 10px;
  opacity: 1; 
  visibility: visible;
}
.content-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  outline: none;
  border: none;
  height: 3px;
  background: #000;
  border-radius: 10px;
  width: 0;
  opacity: 0; 
  visibility: hidden;
  position: relative;
  top: 5px;
}


@media(min-width: 768px) {
  .content-slider-module h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .content-slider {
    padding: 0 40px 115px;
    margin-bottom: 115px;
  }
  .content-slider-module .row {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row-reverse;
    margin: 0 -15px;
  }
  .content-slider-module .column {
    padding: 0 15px;
    margin: 0;
  }
  .content-slider-module .column:nth-child(1) {
    width: 55%;
  }
  .content-slider-module .column:nth-child(2) {
    width: 45%;
  }
}
@media(min-width: 992px) {
  .content-slider-module h2 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 50px;
    letter-spacing: -0.62px;
  }
  .content-slider {
    padding: 0 60px 115px;
  }
  .content-slider .slick-arrow {
    top: 50%;
    left: 0;
    width: 28px;
    height: 40px;
  }
}
@media(min-width: 1200px) {
  .content-slider-module h2 {
    font-size: 62px;
    line-height: 58px;
  }
}
@media(min-width: 1200px) {
  .content-slider {
    padding-bottom: 140px;
    margin-bottom: 140px;
  }
}
.contact-form {
  padding: 85px 0;
}
.contact-form h2 {
  font-size: 42px;
  line-height: 46px;
  margin-bottom: 30px;
}
.contact-form h2 span {
  color: #F56E00;
  display: block;
}
/* .contact-form form .hs-form-field {
  position: relative;
}
.contact-form form .hs-form-field > label {
  display: block;
  position: absolute;
  bottom: 6px;
  transform: translate(0, 0) scale(1);
  transform-origin: bottom left;
  transition: all 150ms ease;
}
.hs-form-field.active > label {
  transform: translate(0, -1.5rem) scale(0.75);
} */

@media(min-width: 428px) {
  .contact-form h2 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 50px;
  }
}
@media(min-width: 992px) {
  .contact-form {
    padding: 110px 0;
  }
  .contact-form h2 {
    font-size: 65px;
    line-height: 62px;
    margin-bottom: 60px;
  }
}
@media(min-width: 1200px) {
  .contact-form {
    padding: 135px 0;
  }
  .contact-form h2 {
    font-size: 85px;
    line-height: 82px;
    margin-bottom: 80px;
  }
}
.technical-papers {
  background-color: #7F9AC4;
  padding: 150px 0;
}
.technical-papers ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}
.technical-papers ul li {
  display: block;
  text-align: center;
  padding-bottom: 50px;
}
.technical-papers ul li:last-child {
  padding-bottom: 0;
}
.technical-papers ul li a {
  font-family: 'NHaasGroteskDSPro-65Md', sans-serif;
  color: #fff;
  font-size: 30px;
  line-height: 30px;
  display: inline-block;
  letter-spacing: 0.85px;
}
.technical-papers ul li a:hover {
  color: #000;
}

@media(min-width: 425px) {
  .technical-papers ul li a {
    font-size: 40px;
    line-height: 40px;
  }
}
@media(min-width: 768px) {
  .technical-papers {
    padding: 250px 0;
  }
  .technical-papers ul li {
    padding-bottom: 70px;
  }
  .technical-papers ul li a {
    font-size: 50px;
    line-height: 50px;
  }
}
@media(min-width: 992px) {
  .technical-papers {
    padding: 250px 0;
  }
  .technical-papers ul li {
    padding-bottom: 80px;
  }
  .technical-papers ul li a {
    font-size: 70px;
    line-height: 70px;
  }
}
@media(min-width: 1200px) {
  .technical-papers {
    padding: 250px 0;
  }
  .technical-papers ul li {
    padding-bottom: 100px;
  }
  .technical-papers ul li a {
    font-size: 85px;
    line-height: 85px;
  }
}
.content-banner {
  background-color: #7F9AC4;
}
.content-banner .container {
  padding-top: 200px;
  padding-bottom: 50px;
}
.content-banner h1 {
  font-size: 42px;
  line-height: 46px;
  letter-spacing: 0.85px;
  margin-bottom: 30px;
  color: #FFFFFF;
}
.content-banner .content {
  font-family: 'NHaasGroteskDSPro-65Md', sans-serif;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
}

@media(min-width: 428px) {
  .content-banner h1 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 40px;
  }
}
@media(min-width: 768px) {
  .content-banner .container {
    padding-top: 300px;
    padding-bottom: 80px;
  }
  .content-banner .content {
    font-size: 24px;
    line-height: 27px;
  }
}
@media(min-width: 992px) {
  .content-banner h1 {
    font-size: 65px;
    line-height: 62px;
    margin-bottom: 50px;
  }
  .content-banner .content {
    font-size: 30px;
    line-height: 33px;
  }
}
@media(min-width: 1200px) {
  .content-banner .container {
    padding-top: 350px;
  }
  .content-banner h1 {
    font-size: 85px;
    line-height: 82px;
    margin-bottom: 60px;
  }
  .content-banner .content {
    font-size: 35px;
    line-height: 38px;
  }
}
.content-module {
  padding: 80px 0;
}
.content-module h2 {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 20px;
}
.content-module .text {
  font-size: 16px;
  line-height: 21px;
  max-width: 741px;
  margin: 0 0 0 auto;
}
.content-module .content {
  margin-bottom: 30px;
}

@media(min-width: 768px) {
  .content-module h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .content-module .text {
    font-size: 22px;
    line-height: 32px;
  }
}
@media(min-width: 992px) {
  .content-module h2 {
    font-size: 55px;
    line-height: 55px;
    margin-bottom: 25px;
  }
  .content-module .text {
    font-size: 26px;
    line-height: 36px;
  }
}
.spacing-bar {
  height: 62px;
}
@media(min-width: 768px) {
  .spacing-bar {
    height: 132px;
  }
}
.widget-type-rich_text {
  padding: 36px 0;
}
.widget-type-rich_text .et-switch {
  position: relative;
  display: inline-block;
  line-height: 1;
  width: 40px;
  height: 20px;
}
.widget-type-rich_text .et-switch input {
  opacity: 0;
}
.widget-type-rich_text .et-switch .et-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #666666;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}
.widget-type-rich_text .et-switch .et-slider::before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 2px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
.widget-type-rich_text .et-switch .et-slider::after {
  content: "Meine Besuchsdaten fließen nicht in die Web-Analyse ein.";
  position: absolute;
  left: 50px;
  width: auto;
  white-space: nowrap;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.widget-type-rich_text .et-switch input:checked + .et-slider {
  background-image: linear-gradient(180deg, #ff9021, #ff4a5a);
  background-color: #ff9021;
}
.widget-type-rich_text .et-switch input:checked + .et-slider::before {
  transform: translateX(20px);
  left: 2px;
  background-color: white;
}
.widget-type-rich_text .et-switch input:checked + .et-slider::after {
  content: "Meine Besuchsdaten fließen in die Web-Analyse ein.";
}

.widget-type-rich_text .BorlabsCookie._brlbs-switch-consent {
  align-items: center;
  display: flex;
  font-size: inherit;
  margin: 0 0 20px;
}
.widget-type-rich_text .BorlabsCookie._brlbs-switch-consent ._brlbs-btn-switch--textRight {
  margin-right: 2.3em;
}
.widget-type-rich_text .BorlabsCookie ._brlbs-btn-switch {
  position: relative;
  display: inline-block;
  margin: 0;
  width: 50px;
  height: 26px;
  vertical-align: middle;
}
.widget-type-rich_text .BorlabsCookie ._brlbs-btn-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  box-sizing: border-box;
  margin-right: 0.4375em;
  padding: 0;
}
.widget-type-rich_text .BorlabsCookie ._brlbs-btn-switch input:checked + ._brlbs-slider {
  background-color: #28a745;
}
.widget-type-rich_text .BorlabsCookie ._brlbs-btn-switch input:checked + ._brlbs-slider::before {
  background-color: #fff;
}
.widget-type-rich_text .BorlabsCookie ._brlbs-btn-switch input:checked + ._brlbs-slider::before {
  transform: translateX(24px);
}
.widget-type-rich_text .BorlabsCookie ._brlbs-btn-switch > input:checked ~ ._brlbs-btn-switch-status::before {
  content: attr(data-active);
  white-space: nowrap;
}
.widget-type-rich_text .BorlabsCookie ._brlbs-btn-switch ._brlbs-slider {
  background-color: #bdc1c8;
}
.widget-type-rich_text .BorlabsCookie ._brlbs-btn-switch ._brlbs-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #bbc0c7;
  transition: .4s;
}
.widget-type-rich_text .BorlabsCookie ._brlbs-btn-switch ._brlbs-slider::before {
  background-color: #fff;
}
.widget-type-rich_text .BorlabsCookie ._brlbs-btn-switch ._brlbs-slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  transition: .4s;
}
.widget-type-rich_text .BorlabsCookie ._brlbs-btn-switch--textRight ._brlbs-btn-switch-status {
  right: auto;
  left: calc(100% + 6px);
}
.widget-type-rich_text .BorlabsCookie ._brlbs-btn-switch-status {
  position: absolute;
  top: 50%;
  right: calc(100% + 6px);
  transform: translateY(-50%);
}
.widget-type-rich_text .BorlabsCookie ._brlbs-btn-switch-status::before {
  content: attr(data-inactive);
  white-space: nowrap;
}
.widget-type-rich_text .BorlabsCookie ._brlbs-title {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
}
.widget-type-rich_text .BorlabsCookie ._brlbs-title::before {
  content: "|";
  display: inline-block;
  margin: 0 .25rem 0 0;
}

@media(max-width: 767px) {
  .widget-type-rich_text p br {
    display: none;
  }
  .widget-type-rich_text h1 br, .widget-type-rich_text h2 br, .widget-type-rich_text h3 br, .widget-type-rich_text h4 br, .widget-type-rich_text h5 br, .widget-type-rich_text h6 br {
    display: none;
  }
}
.architecture-module .column {
  margin-bottom: 10px;
}
.architecture-module .box {
  border: 4px solid #7F9AC4;
  align-items: center;
  height: 100%;
}
.architecture-module .box.image-holder {
  display: flex;
}
.architecture-module .box img {
  width: 100%;
  height: 100% !important;
}
.architecture-module .info-list {
  list-style: none;
  padding: 30px;
  margin: 0 -10px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}
.architecture-module .info-list.big-text li {
  text-align: center;
  font-size: 40px;
  line-height: 2;
  color: #7F9AC4;
}
.architecture-module .info-list li {
  font-family: 'NHaasGroteskDSPro-65Md', sans-serif;
  padding: 0 10px;
  font-size: 20px;
  line-height: 35px;
  color: #000;
  width: 50%;
}

@media(min-width: 768px) {
  .architecture-module .info-list.big-text li {
    font-size: 55px;
    line-height: 2;
  }
  .architecture-module .info-list li {
    font-size: 25px;
    line-height: 40px;
  }
}
@media(min-width: 992px) {
  .architecture-module .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -5px;
  }
  .architecture-module .column {
    padding: 0 5px;
    margin: 0;
    width: 33.33%;
  }
  .architecture-module .info-list {
    padding: 30px;
  }
}
@media(min-width: 1200px) {
  .architecture-module .info-list {
    padding: 50px;
  }
}
.sidebar-with-content {
  padding: 30px 0;
}
.sidebar-with-content .content-article {
  padding: 25px 0;
}
.sidebar-with-content .content-article:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
}
.sidebar-with-content .content-article .row .column {
  width: 100%;
}
.sidebar-with-content .content-article .row .column:only-child {
  width: 100%;
}
.sidebar-with-content .content-article .right-column {
  margin-top: 30px;
}
.sidebar-with-content .content-article h3 {
  margin-bottom: 30px;
  font-size: 21px;
}
.sidebar-with-content .content-article .button-holder {
  margin-top: 40px;
}
.sidebar-with-content .content-article .content {
  overflow: hidden;
}
.sidebar-with-content .content-article .content img {
  transition: all 0.4s ease-in-out;
}
.sidebar-with-content .content-article .content img:hover {
  transform: scale(1.06);
}
.sidebar-with-content .content-article .content:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.sidebar-with-content .content-article .left-column h2:only-child {
  margin: 0;
}
.sidebar-with-content .content-article .form-holder .form-title {
  margin: 0;
}

@media(min-width: 992px) {
  .sidebar-with-content .content-article .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .sidebar-with-content .content-article .row .column {
    padding: 0 15px;
  }
  .sidebar-with-content .content-article .row .column:nth-child(1) {
    width: 33.333%;
  }
  .sidebar-with-content .content-article .row .column:nth-child(2) {
    width: 66.667%;
  }
  .sidebar-with-content .content-article .row .column:only-child {
    width: 100%;
  }
  .sidebar-with-content .content-article .right-column {
    margin-top: 0;
  }
}
.system-pages {
  padding: 48px 0;
  text-align: center;
}
.system-pages h1, .system-pages .h1 {
  color: #000;
}
.system-pages .error-heading {
  font-family: 'NHaasGroteskDSPro-55Rg', sans-serif;
  color: #000;
  font-size: 120px;
  line-height: 1em;
  font-weight: bold;
  margin: 0;
}
.system-pages .sub-heading {
  font-family: 'NHaasGroteskDSPro-75Bd', sans-serif;
  color: #000;
  font-size: 22px;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
}
.system-pages .text {
  font-size: 16px;
  opacity: .8;
  margin-bottom: 20px;
}

@media(min-width: 480px) {
  .system-pages .error-heading {
    font-size: 160px;
  }
  .system-pages .sub-heading {
    font-size: 24px;
  }
}
@media(min-width: 576px) {
  .system-pages .error-heading {
    font-size: 200px;
  }
  .system-pages .sub-heading {
    font-size: 28px;
  }
}
@media(min-width: 768px) {
  .system-pages .error-heading {
    font-size: 240px;
  }
  .system-pages .sub-heading {
    font-size: 32px;
  }
  .system-pages .text {
    font-size: 18px;
  }
}
body div#hs-eu-cookie-confirmation {
  bottom: 0 !important;
  color: #000 !important;
  font-family: NeueHaasGroteskTextPro55Roman,sans-serif !important;
  font-size: 16px !important;
  left: 0;
  line-height: 1.86em !important;
  position: fixed;
  right: 0;
  width: 100%;
  border-radius: 20px;
}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-eu-policy-wording, body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p#hs-eu-cookie-disclaimer {
  margin: 0 0 20px !important;
}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p {
  color: #000 !important;
  font-family: NeueHaasGroteskTextPro55Roman, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.86em !important;
  margin-right: 0;
}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-eu-cookie-confirmation-buttons-area {
  margin: 0 !important;
}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-eu-confirmation-button {
  font-family: NeueHaasGroteskTextPro75Bold, sans-serif !important;
  background: #ef6c00 !important;
  border: 2px solid #ef6c00 !important;
  box-shadow: none !important;
  border-radius: 20px !important;
  color: #fff !important;
  font-size: 14px !important;
  line-height: 1.3rem !important;
  font-weight: 400 !important;
  margin-bottom: 0 !important;
  padding: 11px 20px !important;
  text-align: center !important;
  text-decoration: none !important;
  letter-spacing: 0.04em !important;
}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-eu-decline-button {
  font-family: NeueHaasGroteskTextPro75Bold, sans-serif !important;
  background: #000 !important;
  border: 2px solid #000 !important;
  box-shadow: none !important;
  border-radius: 20px !important;
  color: #fff !important;
  font-size: 14px !important;
  line-height: 1.3rem !important;
  font-weight: 400 !important;
  margin-bottom: 0 !important;
  padding: 11px 20px !important;
  text-align: center !important;
  text-decoration: none !important;
  letter-spacing: 0.04em !important;
}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a {
  font-family: NeueHaasGroteskTextPro55Roman,sans-serif !important;
}
.footer {
  background-color: #fff;
  max-width: 1280px;
  margin: 0 auto;
}
.footer .footer__holder {
  background-color: #000;
  color: #7f9ac4;
  padding: 25px 0;
}
.footer .footer__holder .row {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0 -15px;
}
.footer .footer__holder .column {
  padding: 0 15px;
  margin-bottom: 20px;
  width: 100%;
}
.footer .footer__holder .column:last-child {
  margin-bottom: 0;
}
.footer .footer-links li {
  position: relative;
  font-size: 14px;
  line-height: 28px;
}
.footer .footer-links a {
  color: #7f9ac4;
}
.footer .footer-links a:hover {
  color: #d3711c;
}
.footer .social-networks {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -5px;
}
.footer .social-networks li {
  padding: 0 5px;
}
.footer .social-networks li a {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border: 2px solid #7f9ac4;
  border-radius: 100%;
}
.footer .social-networks li a:hover {
  background-color: #fff;
  border-color: #fff;
}
.footer .social-networks li .hs_cos_wrapper_type_icon {
  line-height: 0;
} 
.footer .social-networks li svg {
  height: 20px;
  width: 20px;
  fill: #7f9ac4;
}
.footer .footer-info li {
  position: relative;
  font-size: 14px;
  line-height: 28px;
}
.footer .footer-info a {
  color: #7f9ac4;
}
.footer .footer-info a:hover {
  color: #d3711c;
}
.footer .copyright {
  background-color: #7f9ac4;
  color: #000;
  font-size: 13px;
  line-height: 1.86em;
  padding: 10px 0;
}
.footer .lang-list .lang-item-li {
  position: relative;
  padding: 0 0 0 18px;
}
.footer .lang-list .lang-item-li.active {
  display: none;
}
.footer .lang-list .lang-item-li .icon {
  left: 0;
  position: absolute;
  top: 5px;
  font-size: 16px;
  line-height: 16px;
}
.footer .lang-list .lang-item-li a {
  color: #7f9ac4;
}
.footer .lang-list .lang-item-li a:hover {
  color: #d3711c;
}

@media(min-width: 480px) {
  .footer .footer__holder .column:nth-child(1) {
    width: 50%;
  }
  .footer .footer__holder .column:nth-child(2) {
    width: 50%;
  }
  .footer .footer__holder .column:nth-child(3) {
    width: 100%;
  }
}
@media(min-width: 992px) {
  .footer .footer__holder .column {
    margin-bottom: 0;
  }
  .footer .footer__holder .column:nth-child(1) {
    width: 45%;
  }
  .footer .footer__holder .column:nth-child(2) {
    width: 40%;
  }
  .footer .footer__holder .column:nth-child(3) {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 15%;
  }
}

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