/*! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat;
  /* 1 */
  box-sizing: inherit;
  /* 2 */ }

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritence in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */ }

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
  box-sizing: border-box;
  /* 1 */
  cursor: default;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Remove the margin in all browsers (opinionated).
 */
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: .67em 0; }

/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none; }

/**
 * 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 (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * 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 style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ffff00;
  color: #000000; }

/**
 * 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: -.25em; }

sup {
  top: -.5em; }

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */

::selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none; }

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
  fill: currentColor; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
/**
 * Collapse border spacing
 */
table {
  border-collapse: collapse; }

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0; }

/**
 * Inherit styling in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit; }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */ }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[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 elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  /* 1 */
  touch-action: manipulation; }

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy="true"] {
  cursor: progress; }

/*
 * Change the cursor on control elements (opinionated).
 */
[aria-controls] {
  cursor: pointer; }

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute; }

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
  cursor: default; }

.tns-outer {
  padding: 0 !important; }
  .tns-outer [hidden] {
    display: none !important; }
  .tns-outer [aria-controls], .tns-outer [data-action] {
    cursor: pointer; }

.tns-slider {
  transition: all 0s; }
  .tns-slider > .tns-item {
    box-sizing: border-box; }

.tns-horizontal.tns-subpixel {
  white-space: nowrap; }
  .tns-horizontal.tns-subpixel > .tns-item {
    display: inline-block;
    vertical-align: top;
    white-space: normal; }

.tns-horizontal.tns-no-subpixel:after {
  content: '';
  display: table;
  clear: both; }

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left; }

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%; }

.tns-no-calc {
  position: relative;
  left: 0; }

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px; }
  .tns-gallery > .tns-item {
    position: absolute;
    left: -100%;
    transition: transform 0s, opacity 0s; }
  .tns-gallery > .tns-slide-active {
    position: relative;
    left: auto !important; }
  .tns-gallery > .tns-moving {
    transition: all 0.25s; }

.tns-autowidth {
  display: inline-block; }

.tns-lazy-img {
  transition: opacity 0.6s;
  opacity: 0.6; }
  .tns-lazy-img.tns-complete {
    opacity: 1; }

.tns-ah {
  transition: height 0s; }

.tns-ovh {
  overflow: hidden; }

.tns-visually-hidden {
  position: absolute;
  left: -10000em; }

.tns-transparent {
  opacity: 0;
  visibility: hidden; }

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0; }

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1; }

.tns-vpfix {
  white-space: nowrap; }
  .tns-vpfix > div, .tns-vpfix > li {
    display: inline-block; }

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden; }

.tns-t-ct {
  width: 2333.33333%;
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0; }
  .tns-t-ct:after {
    content: '';
    display: table;
    clear: both; }
  .tns-t-ct > div {
    width: 1.42857%;
    width: calc(100% / 70);
    height: 10px;
    float: left; }

/* *
 * Returns color from settings referenced by id
 * @param  {string} $id Identifier for the color in the configuration map
 * @param  {map} $colors Map with colors
 * @return {number} Resulting color from configuration file */
/* *
 * Returns spacing from settings referenced by id
 * @param  {string} $id Identifier for the space in the configuration map
 * @param  {map} $spacings Map with spacings
 * @return {number} Resulting space from configuration file */
/**
 * Looks up the passed z-item in a z-group in a z-map and returns its z-index.
 * A z-map has to be defined in settings containing z-groups that contain z-items with a z-index as value each.
 * With the $z-index-offset parameter the z-index of each z-item can be increased.
 * User this function like this:
 * z-index: get-z-index('header'); // Returns the correct base z-index for the navigation
 * z-index: get-z-index('search', 'header'); // In this case navigation has its own z-index-group defined and it will return the z-index of the nav-item of the navigation
 * @param  {string} $z-item Identifier of the z-item from configuration
 * @param  {string} $z-group Identifier of the z-group. By default this is the "root"-group
 * @param  {map} $z-map The z-map configuration map
 * @return {number} Resulting z-index
 */
/**
 * Returns color from settings referenced by id
 * @param  {string} $breakpoint Identifier for the color in the configuration map
 * @param  {map} $colors Map with colors
 * @return {number} Resulting color from configuration file
 */
/**
 * Get responsive gutter calculation
 * @param {String} css property
 * @param {Map} map containing column configuration for breakpoints (mobile: 4 of 6, desktop: 10 of 12)
 */
/**
 * Sets the responsive gutter calculation to a specific attribute
 * @param {String} $property css property that should get the value
 * @param {List} $breakpoints List of breakpoints the property should get the gutter for
 * @param {Boolean} $base ist of breakpoints to exclude
 */
/* *
* Function to filter given $map by list of keys */
/* *
* Function to validate key existance in map. Throws an error, if key not found in map
* @param $map - map to check the key against
* @param $key - key that should be checked
* @param $map-name - optional map name for friendly debug message purpose. Otherwise the map
* will be displayed in console */
/**
  *
  */
/**
  * Loops the map and applies all of the keys as style property and value as style property value
  */
/**
  * Mixin that wraps validate-map-key function
  */
/**
   * Wrap something with a selector if the selector exists, else do not wrap
   *
   * @param $selector Optional. Selector
   */
html,
body,
div,
article,
section,
main,
footer,
header,
form,
fieldset,
legend,
pre,
code,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
textarea,
input[type='email'],
input[type='number'],
input[type='password'],
input[type='tel'],
input[type='text'],
input[type='url'] {
  box-sizing: border-box;
  scroll-behavior: smooth; }

html {
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  text-rendering: optimizeSpeed; }

body {
  color: use-color(grey-darker);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

figure {
  margin: 0; }

.lazyload,
.lazyloading {
  opacity: 0;
  transition: opacity 400ms; }

img.lazyloaded {
  transition: opacity 400ms;
  opacity: 1; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal; }

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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  scroll-behavior: smooth; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

.a-button {
  overflow: hidden;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #e20074;
  background-color: #e20074;
  padding: 5px 20px;
  font-family: normal;
  font-weight: normal;
  font-family: "TeleNeoWeb-Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.125rem;
  color: #ffffff;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all 0.2s ease-in-out; }
  .a-button--white {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #e20074; }
    .a-button--white:hover {
      background-color: #e20074;
      color: #ffffff; }
  .a-button--feedback {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #383838; }
    .a-button--feedback:hover {
      color: #e20074; }
  .a-button--empty {
    border-color: #ffffff;
    background-color: transparent;
    color: #ffffff; }
    .a-button--empty:hover {
      border-color: #ffffff;
      background-color: #ffffff;
      color: #e20074; }
  [data-whatintent='mouse'] .a-button,
  [data-whatintent='touch'] .a-button {
    outline: 0; }

.a-headline {
  color: #e20074; }

.a-svg-sprite {
  width: 100px;
  height: 100px;
  fill: currentColor; }
  .a-svg-sprite--default-close {
    width: 14px;
    height: 14px; }
  .a-svg-sprite--default-menu {
    width: 20px;
    height: 10px; }
  .a-svg-sprite--default-phone, .a-svg-sprite--default-phone-white {
    width: 28px;
    height: 28px;
    fill: transparent;
    stroke: currentColor; }
  .a-svg-sprite--default-download {
    width: 35px;
    height: 35px; }
  .a-svg-sprite--default-smartphone {
    width: 16px;
    height: 32px; }
  .a-svg-sprite--default-laptop {
    width: 30px;
    height: 24px; }
  .a-svg-sprite--default-check {
    width: 23px;
    height: 13px;
    fill: #e20074; }
  .a-svg-sprite--various-logo-claim {
    width: 159px;
    height: 16px; }
  .a-svg-sprite--various-logo-telekom {
    width: 165px;
    height: 45px;
    padding-bottom: 5px; }
  .a-svg-sprite--social-media-facebook {
    width: 16px;
    height: 30px; }
  .a-svg-sprite--social-media-twitter {
    width: 23px;
    height: 19px; }
  .a-svg-sprite--social-media-google {
    width: 33px;
    height: 21px; }
  .a-svg-sprite--bullet-list-journal {
    width: 43.8px;
    height: 37.8px; }
  .a-svg-sprite--bullet-list-trust {
    width: 30px;
    height: 42.6px; }
  .a-svg-sprite--bullet-list-mobile {
    width: 22.8px;
    height: 40.8px; }
  .a-svg-sprite--bullet-list-lens {
    width: 31.2px;
    height: 42px; }
  .a-svg-sprite--bullet-list-clock {
    width: 36px;
    height: 36px; }
  .a-svg-sprite--benefits-chart {
    width: 27px;
    height: 29px; }
  .a-svg-sprite--benefits-cloud {
    width: 29px;
    height: 30px; }
  .a-svg-sprite--benefits-laptop {
    width: 30px;
    height: 25px; }
  .a-svg-sprite--benefits-mobile {
    width: 30px;
    height: 22px; }
  .a-svg-sprite--benefits-smile {
    width: 23px;
    height: 25px; }

.a-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #e20074;
  transition: color 250ms ease-in-out; }
  .a-link__icon {
    width: 30px;
    height: 30px; }
  .a-link:hover {
    color: #e20074; }

.a-picture {
  display: block; }
  .a-picture__image {
    width: 100%; }

.m-container {
  max-width: 1024px;
  padding: 0 20px;
  margin: 0 auto; }
  .m-container--mob {
    max-width: none; }
  .m-container--desktop {
    padding: 0; }

.m-tel-contact {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  text-align: left;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding-left: 35px; }
  .m-tel-contact__text {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.125rem; }
  .m-tel-contact__href {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.4375rem; }
  .m-tel-contact__icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center; }

.m-nav-trigger {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .m-nav-trigger__text {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.625rem;
    font-size: 1rem;
    line-height: 1.125rem; }
  .m-nav-trigger__text--close, .m-nav-trigger__icon--close {
    display: none; }
    .nav-is-open .m-nav-trigger__text--close, .nav-is-open .m-nav-trigger__icon--close {
      display: block; }
  .m-nav-trigger__text--open, .m-nav-trigger__icon--open {
    display: block; }
    .nav-is-open .m-nav-trigger__text--open, .nav-is-open .m-nav-trigger__icon--open {
      display: none; }
  .m-nav-trigger__icon {
    margin-left: 15px; }

.m-testimonial__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px; }

.m-testimonial--round .m-testimonial-image {
  border-radius: 50%; }

.m-testimonial__image {
  margin-bottom: 20px;
  width: 205px;
  height: 205px; }

.m-testimonial__user {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1.125rem;
  text-align: center; }
  .m-testimonial__user-name {
    color: #e20074;
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px; }
  .m-testimonial__user-title {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.m-testimonial__quote {
  width: 90%; }
  .m-testimonial__quote-text {
    display: flex;
    align-items: center;
    min-height: 120px;
    text-align: center;
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-RegularItalic", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem; }

.m-testimonial__icons {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%; }
  .m-testimonial__icons-text {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    line-height: 1.125rem;
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    .m-testimonial__icons-text-headline {
      color: #e20074;
      font-family: normal;
      font-weight: normal;
      font-family: "TeleNeoWeb-Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 2.25rem;
      line-height: 1.15;
      margin-bottom: 10px; }
  .m-testimonial__icons-block {
    flex-grow: 1;
    display: flex;
    align-items: center; }

.m-hero-slide {
  height: 100vh;
  padding-top: 130px;
  background-color: rgba(56, 56, 56, 0.5);
  background-blend-mode: overlay;
  background-position: center center;
  background-size: cover; }
  .m-hero-slide__inner {
    height: 100%;
    position: relative;
    padding-bottom: 90px; }
  .m-hero-slide__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 120px;
    color: #ffffff; }
  .m-hero-slide__image {
    display: block;
    margin-bottom: 30px;
    max-height: 150px;
    width: auto;
    align-self: flex-start; }
    .m-hero-slide__image img {
      max-height: 150px;
      width: auto; }
    .m-hero-slide__image--right {
      align-self: flex-end; }
  .m-hero-slide__text {
    text-align: left; }
  .m-hero-slide__headline {
    margin-bottom: 5px;
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-ExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-size: 2.375rem; }
  .m-hero-slide__subline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    letter-spacing: -0.6px; }
  .m-hero-slide__background {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1; }
    .m-hero-slide__background-image img {
      position: absolute;
      top: 0%;
      left: 50%;
      transform: translate(-50%, 0%);
      width: auto;
      min-width: 100%;
      min-height: 100%; }

.m-image-slide {
  color: #000000;
  padding: 40px 0px; }
  .m-image-slide__header {
    display: flex;
    width: 100%;
    flex-direction: column-reverse;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    .m-image-slide__header-image {
      text-align: center; }
      .m-image-slide__header-image__image {
        width: 75%; }
    .m-image-slide__header-headline {
      font-size: 1.5rem;
      line-height: 1.6875rem;
      margin-bottom: 15px; }
    .m-image-slide__header-subline {
      font-size: 1rem;
      line-height: 1.125rem; }
  .m-image-slide__footer {
    max-width: 700px;
    padding: 0 50px 25px;
    margin: 0 auto; }
    .m-image-slide__footer-headline {
      margin-bottom: 40px;
      font-family: normal;
      font-weight: normal;
      font-family: "TeleNeoWeb-ExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      font-size: 1.3125rem;
      line-height: 1.4375rem;
      text-align: center;
      color: #383838; }
  .m-image-slide__icons-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 1rem;
    line-height: 1.125rem;
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    .m-image-slide__icons-text-icon {
      display: flex;
      margin-bottom: 20px; }
    .m-image-slide__icons-text-block {
      min-width: 100%;
      display: flex;
      margin-bottom: 20px; }
      .m-image-slide__icons-text-block__icon {
        margin: auto; }
      .m-image-slide__icons-text-block:last-child {
        margin-bottom: 0; }
    .m-image-slide__icons-text-headline {
      font-family: normal;
      font-weight: normal;
      font-family: "TeleNeoWeb-Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 2.25rem;
      line-height: 1.15;
      margin-bottom: 10px;
      margin-right: 10px; }

.m-text-block {
  padding: 40px 0;
  background-color: rgba(238, 236, 236, 0.5); }
  .m-text-block--align-center {
    text-align: center; }
  .m-text-block__headline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-ExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.3125rem;
    line-height: 1.4375rem;
    text-transform: uppercase; }
  .m-text-block__subline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.3125rem;
    line-height: 1.4375rem; }
  .m-text-block__text {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.4375rem;
    margin-top: 20px; }

.o-cookie-warning {
  position: relative;
  width: 100%;
  background: #000000;
  color: #ffffff;
  padding-right: 20px; }
  .o-cookie-warning__desciption {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    text-align: left; }
  .o-cookie-warning__link {
    color: #4a90e2;
    text-decoration: none;
    position: relative;
    transition: all 0.1s ease-out;
    white-space: nowrap; }
    .o-cookie-warning__link::after {
      transition: all 0.1s ease-out;
      content: '';
      position: absolute;
      background: transparent;
      height: 1px;
      bottom: 0;
      left: 0;
      right: 0; }
    .o-cookie-warning__link:hover::after {
      background: #4a90e2; }
  .o-cookie-warning__dismiss {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0;
    line-height: 1;
    color: #ffffff;
    outline: none;
    cursor: pointer; }
    .o-cookie-warning__dismiss:hover {
      color: #e20074; }
  .o-cookie-warning__dismiss-icon {
    width: 8px;
    height: 8px; }
  .o-cookie-warning--hidden {
    display: none; }

.o-header {
  background-color: #e20074;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid #dcdcdc;
  transform: translateY(-60px);
  transition: transform 250ms ease-out; }
  .o-header--sticky {
    transform: translateY(-136px); }
  .cookie-wg-active .o-header {
    transform: translateY(0px); }
  .cookie-wg-active .o-header--sticky {
    transform: translateY(-136px); }
  .o-header__panel--cookie {
    overflow: hidden;
    background-color: #000000; }
  .o-header__panel--brand {
    background-color: #e20074;
    color: #ffffff; }
  .o-header__panel--nav {
    position: relative;
    background-color: #ffffff;
    color: #383838;
    scroll-behavior: smooth;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px; }
  .o-header__panel-in {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 10px 0px; }
    .o-header__panel--cookie .o-header__panel-in {
      height: 60px; }
    .o-header__panel--brand .o-header__panel-in {
      height: 80px; }
  .o-header__nav-trigger {
    cursor: pointer; }

.o-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.2s ease; }
  .nav-is-open .o-nav {
    transform: translateX(0);
    scroll-behavior: smooth; }
  .o-nav__hand {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 70px;
    padding: 0px 20px;
    border-bottom: 1px solid #eeecec;
    cursor: pointer; }
  .o-nav__list {
    padding-bottom: 35px; }
  .o-nav__list-el {
    padding: 0px 20px;
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.3125rem;
    line-height: 1; }
    .o-nav__list-el a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 25px 0; }
      .o-nav__list-el a:hover {
        color: #f90984;
        -webkit-text-decoration: underline solid;
                text-decoration: underline solid;
        -webkit-text-decoration-color: #f90984;
                text-decoration-color: #f90984; }
      .o-nav__list-el a:after {
        content: '';
        width: 14px;
        height: 16px;
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSA1MSI+PHBhdGggZD0iTTI4LjYgMjUuMUwzLjYgMCAwIDMuNmwyMS42IDIxLjVMMCA0Ni42bDMuNiAzLjYiLz48L3N2Zz4=);
        background-size: contain;
        background-position: center; }

.o-slider {
  position: relative; }
  .o-slider--grey {
    background: rgba(238, 236, 236, 0.5); }
  .o-slider--controls-white .o-slider__control-icon {
    fill: #ffffff; }
  .o-slider__content-wrapper {
    position: relative; }
  .o-slider__control {
    position: absolute;
    top: 0;
    bottom: 0;
    outline: none;
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .o-slider__control--prev {
      left: 0; }
      .o-slider__control--prev .o-slider__control-icon {
        transform: rotate(180deg); }
    .o-slider__control--next {
      right: 0; }
    .o-slider__control-icon {
      width: 20px;
      height: 35px; }
    .o-slider--controls-white .o-slider__control {
      display: none; }
  .o-slider__nav {
    position: absolute;
    left: 50%;
    bottom: 40px;
    display: flex;
    transform: translateX(-50%); }
    [data-whatintent='mouse'] .o-slider__nav-dot,
    [data-whatintent='touch'] .o-slider__nav-dot {
      outline: 0; }
    .o-slider__nav-dot.tns-nav-active:before {
      background: #e20074;
      border-color: #e20074; }
    .o-slider__nav-dot:before {
      display: inline-block;
      content: '';
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 1px solid #979797;
      background: #eeecec; }
    .o-slider__nav-dot:not(:last-child) {
      margin-right: 7px; }

.o-bullet-list {
  padding: 40px 0 30px;
  background-color: rgba(238, 236, 236, 0.5);
  text-align: center; }
  .o-bullet-list__headline {
    max-width: 780px;
    margin: 0 auto 30px;
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem; }
  .o-bullet-list__content {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-flow: column nowrap; }
    .o-bullet-list__content:last-child {
      margin-bottom: -30px; }
  .o-bullet-list__content-col {
    margin-bottom: 30px; }
    .o-bullet-list__content-col--img {
      overflow: hidden;
      position: relative;
      padding-bottom: 60%;
      height: 0;
      order: -1; }
      .o-bullet-list--reverse .o-bullet-list__content-col--img {
        order: -1; }
  .o-bullet-list__items {
    padding: 0 40px; }
  .o-bullet-list__item {
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 20px; }
    .o-bullet-list__item:last-child {
      margin-bottom: 0; }
  .o-bullet-list__text {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    text-align: left; }
  .o-bullet-list__icon {
    width: 45px;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    margin-right: 25px; }
  .o-bullet-list__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto; }

.o-footer {
  font-family: normal;
  font-weight: normal;
  font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.125rem; }
  .o-footer__panel {
    padding: 20px 0;
    border-bottom: 2px solid #000000;
    background-color: #262626;
    color: #ffffff; }
    .o-footer__panel--top {
      background-color: #ffffff;
      color: #000000; }
    .o-footer__panel:last-child {
      border-bottom: none; }
  .o-footer__panel-in {
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
    .o-footer__panel-in--top {
      width: 100%;
      align-items: stretch;
      flex-flow: column wrap; }
    .o-footer__panel-in--bottom {
      flex-direction: column; }
  .o-footer__col {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between; }
    .o-footer__col--links {
      flex-flow: column nowrap;
      align-items: flex-start; }
  .o-footer__cell--logo {
    margin-right: auto;
    margin-bottom: 15px; }
  .o-footer__cell--links {
    margin-bottom: 25px; }
  .o-footer__links {
    margin: 20px 0; }
  .o-footer__link {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    margin-bottom: 10px; }
    .o-footer__link:last-child {
      margin-bottom: 0; }
  .o-footer__social-headline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 10px; }
  .o-footer__social-links {
    display: flex;
    align-items: center;
    flex-flow: row nowrap; }
  .o-footer__social-link {
    padding: 0 10px;
    color: #e20074; }
  .o-footer__right-links {
    display: inline-flex; }
  .o-footer__right-link {
    padding: 0 10px;
    transition: color 0.2s ease-in-out; }
    .o-footer__right-link:hover {
      color: #e20074; }

.o-feedback {
  padding: 40px 0px 20px;
  background-color: #e20074;
  text-align: center; }
  .o-feedback--invert-theme {
    background-color: rgba(238, 236, 236, 0.5); }
  .o-feedback--small {
    padding: 20px 0 40px; }
  .o-feedback__inner {
    max-width: 625px;
    margin: auto; }
  .o-feedback__headline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-ExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.375rem;
    line-height: 1.15;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 25px; }
  .o-feedback--small .o-feedback__headline {
    margin-bottom: 17.5px; }
  .o-feedback--invert-theme .o-feedback__headline {
    color: #e20074; }
  .o-feedback__text {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem;
    color: #ffffff; }
  .o-feedback--small .o-feedback__text {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.4375rem; }
  .o-feedback--invert-theme .o-feedback__text {
    color: #000000; }
  .o-feedback .a-button {
    margin-top: 35px; }
  .o-feedback--small .a-button {
    margin-top: 24.5px; }
  .o-feedback--invert-theme .a-button {
    background-color: #e20074;
    color: #ffffff;
    text-transform: uppercase; }

.o-downloads {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 0px 25px;
  text-align: center; }
  .o-downloads__inner {
    max-width: 670px;
    margin: auto; }
  .o-downloads__headline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-ExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.375rem;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 30px; }
  .o-downloads__items {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    margin: 0 -10px; }
  .o-downloads__item {
    position: relative;
    width: 270px;
    padding: 10px 10px 10px 65px;
    margin-bottom: 25px;
    flex-shrink: 0;
    text-align: left; }
  .o-downloads__item-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%); }
  .o-downloads__item-name {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.125rem; }
    .o-downloads__item-name span {
      white-space: nowrap; }

.o-product-card {
  padding: 30px 0px 10px;
  border-radius: 8px; }
  .o-product-card__head {
    margin-bottom: 30px; }
  .o-product-card__headline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-ExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.3125rem;
    line-height: 1.4375rem;
    color: #e20074;
    text-transform: uppercase; }
    .o-product-card__headline--l {
      margin-bottom: 30px; }
  .o-product-card__subline {
    display: none;
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.4375rem;
    margin-top: 20px; }
  .o-product-card__content {
    overflow: hidden; }
  .o-product-card__content-col--img {
    display: none; }
  .o-product-card__content-col--main {
    flex: 1; }
  .o-product-card__content-row {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative; }
  .o-product-card__content-subcol {
    display: flex;
    flex-direction: column;
    flex-shrink: 0; }
    .o-product-card__content-subcol--main {
      max-width: 700px;
      flex: 1; }
    .o-product-card__content-subcol--bottom-align {
      justify-content: flex-end; }
  .o-product-card__cell {
    max-width: 100%;
    margin-bottom: 20px; }
    .o-product-card__cell--desk {
      display: none; }
  .o-product-card__text-box {
    margin-left: 20px; }
  .o-product-card__text-el {
    position: relative;
    padding-left: 5px;
    margin-left: 10px;
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.125rem;
    margin-bottom: 10px;
    list-style: disc; }
    .o-product-card__text-el:last-child {
      margin-bottom: 0; }
    .o-product-card__text-el--simple {
      margin-left: 0;
      padding-left: 0; }
      .o-product-card__text-el--simple:before {
        display: none; }
  .o-product-card__price-image {
    width: 115px;
    height: 115px;
    margin: 0 auto; }
    .o-product-card__price-image img {
      max-width: 100%;
      height: auto; }
  .o-product-card__price-text {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.125rem; }
  .o-product-card__price-val {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem; }
    .o-product-card__price-val sup {
      font-size: 0.6em;
      vertical-align: top; }
  .o-product-card__price-note {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.4375rem; }
    .o-product-card__price-note sup {
      font-size: 0.75em;
      vertical-align: top; }

.o-benefits {
  overflow: hidden;
  position: relative;
  padding: 40px 0; }
  .o-benefits__inner {
    position: relative;
    height: 100%; }
  .o-benefits__item {
    align-items: center;
    display: flex;
    padding: 10px 20px; }
    .o-benefits__item-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background-color: #e20074;
      background-image: linear-gradient(#ff339c 30%, #e20074);
      margin-right: 15px;
      color: #ffffff; }
      .o-benefits__item-icon .o-benefits__item-icon-svg {
        width: 35px;
        height: 35px; }
    .o-benefits__item-text {
      padding: 15px 20px;
      background-color: #e20074;
      font-family: normal;
      font-weight: normal;
      font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 1rem;
      line-height: 1.125rem;
      text-align: center;
      width: 100%;
      color: #ffffff; }

.o-products {
  padding: 40px 0;
  background-color: rgba(238, 236, 236, 0.5); }
  .o-products__head {
    padding: 40px 0; }
  .o-products__headline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-ExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem;
    text-transform: uppercase; }
  .o-products__subline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem; }

.o-media-copy {
  overflow: hidden;
  padding: 40px 0; }
  .o-media-copy img,
  .o-media-copy video,
  .o-media-copy iframe {
    display: block;
    max-width: 100%;
    width: auto;
    margin: auto; }
  .o-media-copy__headline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-ExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.375rem;
    line-height: 1.15;
    text-transform: uppercase;
    text-align: center; }
  .o-media-copy__subline {
    margin-bottom: 20px;
    text-align: center;
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem; }
  .o-media-copy__row {
    display: flex;
    flex-direction: column; }
  .o-media-copy__cell {
    padding: 30px 0;
    text-align: center; }
    .o-media-copy__cell-headline {
      font-family: normal;
      font-weight: normal;
      font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 1.5rem;
      line-height: 1.6875rem;
      margin-bottom: 15px; }
    .o-media-copy__cell-text {
      font-family: normal;
      font-weight: normal;
      font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 1rem;
      line-height: 1.25rem; }

.o-contact {
  padding: 25px 0px;
  background-color: #e20074;
  text-align: center;
  color: #ffffff; }
  .o-contact__inner {
    max-width: 625px;
    margin: auto;
    line-height: 1; }
  .o-contact__tel {
    display: inline-block;
    margin: 20px 0; }
  .o-contact__text {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.4375rem; }

.o-shops {
  padding: 30px 0;
  padding-bottom: 100px;
  background-color: whitesmoke;
  text-align: center;
  font-family: normal;
  font-weight: normal;
  font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.4375rem; }
  .o-shops__headline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-ExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem;
    text-transform: uppercase; }
  .o-shops__subline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem;
    margin-bottom: 20px; }
  .o-shops__filters {
    margin-top: 40px; }
  .o-shops__filters-row {
    margin: 0 -10px; }
  .o-shops__filter {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 5px 10px;
    display: inline-block;
    font-size: 1rem;
    line-height: 1.25rem;
    color: #b2b2b2;
    transition: all 0.1s ease-in-out;
    text-decoration: none; }
    .o-shops__filter--active, .o-shops__filter:hover {
      color: #f90984; }
  .o-shops__items {
    display: flex;
    flex-wrap: wrap; }
  .o-shops__item {
    margin-top: 40px;
    width: 100%;
    font-size: 0;
    line-height: 1;
    cursor: pointer; }
    .o-shops__item--hidden {
      display: none; }
  .o-shops__item-in {
    display: block;
    overflow: hidden;
    position: relative;
    max-width: 200px;
    margin: auto; }
  .o-shops__item-frame {
    display: block;
    overflow: hidden;
    position: relative;
    padding-bottom: 200.28039%;
    background-size: cover;
    background-image: url(/dummy/images/shops/frame/mobile-frame-172w.png); }
  .o-shops__item-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 11% 6.25% 5.3%; }
    .o-shops__item-image img {
      width: 100%;
      height: 100%;
      object-fit: fill; }
    .o-shops__item-image--desk {
      display: none;
      padding: 4.1% 12.2% 5.9%; }
  .o-shops__popup {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out; }
    .o-shops__popup--active {
      visibility: visible;
      opacity: 1;
      z-index: 1001; }

.o-shops-frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 150px 20px 10px;
  background-color: #fff; }
  .o-shops-frame__head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 0 20px; }
  .o-shops-frame__head-row:first-child {
    padding: 25px 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .o-shops-frame__headline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem;
    text-transform: uppercase; }
  .o-shops-frame__body {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    max-width: calc(174.16vh - 296.072px);
    margin: auto; }
    .o-shops-frame--mobile .o-shops-frame__body {
      max-width: calc(49.93vh - 84.881px); }
  .o-shops-frame__frame {
    display: block;
    position: relative;
    background-size: cover;
    pointer-events: none;
    padding-bottom: 57.41847%;
    background-image: url(/dummy/images/shops/frame/desktop-frame-1200w.png); }
    .o-shops-frame--mobile .o-shops-frame__frame {
      padding-bottom: 200.28039%;
      background-image: url(/dummy/images/shops/frame/mobile-frame-344w.png); }
  .o-shops-frame__iframe-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 4.1% 12.2% 5.9%; }
    .o-shops-frame--mobile .o-shops-frame__iframe-wrapper {
      padding: 11% calc(6.25% - 16px) 5.3% 6.25%; }
  .o-shops-frame__iframe {
    width: 100%;
    height: 100%;
    width: 500%;
    height: 500%;
    transform: scale(0.2);
    transform-origin: 0 0; }
    .o-shops-frame--mobile .o-shops-frame__iframe {
      width: 333.33333%;
      height: 333.33333%;
      transform: scale(0.3); }
  .o-shops-frame__toggle {
    display: flex;
    align-items: center; }
    .o-shops-frame__toggle span:first-child {
      margin-right: 10px; }
  .o-shops-frame__toggle-el {
    padding: 10px;
    cursor: pointer;
    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;
    transition: opacity 0.2s; }
    .o-shops-frame__toggle-el--m {
      opacity: 0.35; }
    .o-shops-frame--mobile .o-shops-frame__toggle-el--m {
      opacity: 1; }
    .o-shops-frame--mobile .o-shops-frame__toggle-el--d {
      opacity: 0.35; }

.o-vr {
  padding: 30px 0;
  text-align: center;
  font-family: normal;
  font-weight: normal;
  font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.4375rem; }
  .o-vr__headline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-ExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem;
    text-transform: uppercase; }
  .o-vr__subline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem;
    margin-bottom: 20px; }
  .o-vr__filters {
    margin-top: 40px; }
  .o-vr__filters-row {
    margin: 0 -10px; }
  .o-vr__filter {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 5px 10px;
    display: inline-block;
    font-size: 1rem;
    line-height: 1.25rem;
    color: rgba(0, 0, 0, 0.33);
    transition: all 0.1s ease-in-out;
    text-decoration: none; }
    .o-vr__filter--active, .o-vr__filter:hover {
      color: #f90984; }
  .o-vr__items {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */ }
  .o-vr__item {
    margin-top: 40px;
    width: 100%;
    font-size: 0;
    line-height: 1;
    cursor: pointer; }
    .o-vr__item--hidden {
      display: none; }
  .o-vr__item-in {
    display: block;
    overflow: hidden;
    position: relative;
    max-width: 200px;
    margin: auto; }
  .o-vr__item-frame {
    display: block;
    overflow: hidden;
    position: relative;
    padding-bottom: 200.28039%;
    background-size: cover;
    background-image: url(/dummy/images/shops/frame/mobile-frame-172w.png); }
  .o-vr__item-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 11% 6.25% 5.3%; }
    .o-vr__item-image img {
      width: 100%;
      height: 100%;
      object-fit: fill; }
    .o-vr__item-image--desk {
      display: none;
      padding: 4.1% 12.2% 5.9%; }
  .o-vr__popup {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out; }
    .o-vr__popup--active {
      visibility: visible;
      opacity: 1;
      z-index: 1001; }

.o-vr-frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 150px 20px 10px;
  background-color: #fff; }
  .o-vr-frame__head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 0 20px; }
  .o-vr-frame__head-row:first-child {
    padding: 25px 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .o-vr-frame__headline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem;
    text-transform: uppercase; }
  .o-vr-frame__body {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    max-width: calc(174.16vh - 296.072px);
    margin: auto; }
    .o-vr-frame--mobile .o-vr-frame__body {
      max-width: calc(49.93vh - 84.881px); }
  .o-vr-frame__frame {
    display: block;
    position: relative;
    background-size: cover;
    pointer-events: none;
    padding-bottom: 57.41847%;
    background-image: url(/dummy/images/shops/frame/desktop-frame-1200w.png); }
    .o-vr-frame--mobile .o-vr-frame__frame {
      padding-bottom: 200.28039%;
      background-image: url(/dummy/images/shops/frame/mobile-frame-344w.png); }
  .o-vr-frame__iframe-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 4.1% 12.2% 5.9%; }
    .o-vr-frame--mobile .o-vr-frame__iframe-wrapper {
      padding: 11% calc(6.25% - 16px) 5.3% 6.25%; }
  .o-vr-frame__iframe {
    width: 100%;
    height: 100%;
    width: 500%;
    height: 500%;
    transform: scale(0.2);
    transform-origin: 0 0; }
    .o-vr-frame--mobile .o-vr-frame__iframe {
      width: 333.33333%;
      height: 333.33333%;
      transform: scale(0.3); }
  .o-vr-frame__toggle {
    display: flex;
    align-items: center; }
    .o-vr-frame__toggle span:first-child {
      margin-right: 10px; }
  .o-vr-frame__toggle-el {
    padding: 10px;
    cursor: pointer;
    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;
    transition: opacity 0.2s; }
    .o-vr-frame__toggle-el--m {
      opacity: 0.35; }
    .o-vr-frame--mobile .o-vr-frame__toggle-el--m {
      opacity: 1; }
    .o-vr-frame--mobile .o-vr-frame__toggle-el--d {
      opacity: 0.35; }

.o-examples {
  padding: 30px 0;
  padding-bottom: 100px;
  text-align: center;
  font-family: normal;
  font-weight: normal;
  font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.4375rem; }
  .o-examples__headline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-ExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem;
    text-transform: uppercase; }
  .o-examples__subline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem;
    margin-bottom: 20px; }
  .o-examples__filters {
    margin-top: 40px; }
  .o-examples__filters-row {
    margin: 0 -10px; }
  .o-examples__filter {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 5px 10px;
    display: inline-block;
    font-size: 1rem;
    line-height: 1.25rem;
    color: rgba(0, 0, 0, 0.33);
    transition: all 0.1s ease-in-out;
    text-decoration: none; }
    .o-examples__filter--active, .o-examples__filter:hover {
      color: #f90984; }
  .o-examples__items {
    display: flex;
    flex-wrap: wrap; }
  .o-examples__item {
    margin-top: 40px;
    width: 100%;
    font-size: 0;
    line-height: 1;
    cursor: pointer; }
    .o-examples__item--hidden {
      display: none; }
  .o-examples__item-in {
    display: block;
    overflow: hidden;
    position: relative;
    max-width: 200px;
    margin: auto; }
  .o-examples__item-frame {
    display: block;
    overflow: hidden;
    position: relative;
    padding-bottom: 200.28039%;
    background-size: cover;
    background-image: url(/dummy/images/examples/frame/mobile-frame-172w.png); }
  .o-examples__item-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 11% 6.25% 5.3%; }
    .o-examples__item-image img {
      width: 100%;
      height: 100%;
      object-fit: fill; }
    .o-examples__item-image--desk {
      display: none;
      padding: 4.1% 12.2% 5.9%; }
  .o-examples__popup {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out; }
    .o-examples__popup--active {
      visibility: visible;
      opacity: 1;
      z-index: 1001; }

.o-examples-frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 150px 20px 10px;
  background-color: #fff; }
  .o-examples-frame__head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 0 20px; }
  .o-examples-frame__head-row:first-child {
    padding: 25px 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .o-examples-frame__headline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6875rem;
    text-transform: uppercase; }
  .o-examples-frame__body {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    max-width: calc(174.16vh - 296.072px);
    margin: auto; }
    .o-examples-frame--mobile .o-examples-frame__body {
      max-width: calc(49.93vh - 84.881px); }
  .o-examples-frame__frame {
    display: block;
    position: relative;
    background-size: cover;
    pointer-events: none;
    padding-bottom: 57.41847%;
    background-image: url(/dummy/images/examples/frame/desktop-frame-1200w.png); }
    .o-examples-frame--mobile .o-examples-frame__frame {
      padding-bottom: 200.28039%;
      background-image: url(/dummy/images/examples/frame/mobile-frame-344w.png); }
  .o-examples-frame__iframe-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 4.1% 12.2% 5.9%; }
    .o-examples-frame--mobile .o-examples-frame__iframe-wrapper {
      padding: 11% calc(6.25% - 16px) 5.3% 6.25%; }
  .o-examples-frame__iframe {
    width: 100%;
    height: 100%;
    width: 500%;
    height: 500%;
    transform: scale(0.2);
    transform-origin: 0 0; }
    .o-examples-frame--mobile .o-examples-frame__iframe {
      width: 333.33333%;
      height: 333.33333%;
      transform: scale(0.3); }
  .o-examples-frame__toggle {
    display: flex;
    align-items: center; }
    .o-examples-frame__toggle span:first-child {
      margin-right: 10px; }
  .o-examples-frame__toggle-el {
    padding: 10px;
    cursor: pointer;
    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;
    transition: opacity 0.2s; }
    .o-examples-frame__toggle-el--m {
      opacity: 0.35; }
    .o-examples-frame--mobile .o-examples-frame__toggle-el--m {
      opacity: 1; }
    .o-examples-frame--mobile .o-examples-frame__toggle-el--d {
      opacity: 0.35; }

.o-footnote {
  padding: 40px 0;
  background-color: rgba(238, 236, 236, 0.5); }
  .o-footnote--top-padding {
    padding: 270px 0 40px; }
  .o-footnote__headline {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 15px; }
  .o-footnote__text {
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 30px; }
    .o-footnote__text:last-child {
      margin-bottom: 0; }

.o-hero-options {
  background-color: #ffffff; }
  .o-hero-options__list {
    padding: 25px 0; }
  .o-hero-options__el {
    display: flex;
    white-space: nowrap;
    margin-bottom: 15px;
    font-family: normal;
    font-weight: normal;
    font-family: "TeleNeoWeb-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.3125rem;
    line-height: 1.4375rem; }
    .o-hero-options__el span:first-child {
      margin-right: 8px; }
    .o-hero-options__el:last-child {
      margin-bottom: 0; }

.l-container__wrapper {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  position: relative; }
  .sg-debug-grid .l-container__wrapper {
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="rgba(85, 255, 0, 0.2)" width="100%" %3E%3Crect x="0" width="calc(((100% - 10px) / 2 * 1))" height="100%"/%3E%3Crect x="calc(10px + ((100% - 10px) / 2 * 1))" width="calc(((100% - 10px) / 2 * 1))" height="100%"/%3E%3C/svg%3E') no-repeat scroll; }

.l-container__grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%; }

@media (min-width: 23.4375em) {
      .o-cookie-warning__desciption {
        max-width: none;
        font-size: 0.875rem;
        text-align: center; } }

@media (min-width: 375px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 375px) and (min-resolution: 1.25dppx) {
      .o-shops__item-frame {
        background-image: url(/dummy/images/shops/frame/mobile-frame-344w.png); }
      .o-vr__item-frame {
        background-image: url(/dummy/images/shops/frame/mobile-frame-344w.png); }
      .o-examples__item-frame {
        background-image: url(/dummy/images/examples/frame/mobile-frame-344w.png); } }

@media (min-width: 40em) {
    .m-testimonial__icons {
      flex-direction: row; }
      .m-image-slide__header {
        text-align: left; }
        .m-image-slide__header-image {
          text-align: left; }
        .m-image-slide__header-headline {
          font-size: 2.75rem;
          line-height: 1.15; }
        .m-image-slide__header-subline {
          font-size: 1.25rem; }
      .m-image-slide__icons-text {
        align-items: initial;
        flex-direction: row; }
        .m-image-slide__icons-text-icon {
          display: block;
          margin: 0 20px; }
        .m-image-slide__icons-text-block {
          display: block;
          min-width: 150px;
          margin: 0 20px; }
      .o-footer__panel-in--top {
        flex-flow: row nowrap;
        justify-content: space-between; }
      .o-footer__col {
        width: 50%;
        flex-flow: column nowrap;
        justify-content: flex-end; }
      .o-downloads__items {
        justify-content: space-between; }
      .o-shops__item {
        width: 30%; }
        .o-shops__item--margin-right {
          margin-right: 5%; }
      .o-shops-frame__iframe {
        width: 250%;
        height: 250%;
        transform: scale(0.4); }
      .o-vr__item {
        width: 30%; }
        .o-vr__item--margin-right {
          margin-right: 5%; }
      .o-vr-frame__iframe {
        width: 250%;
        height: 250%;
        transform: scale(0.4); }
      .o-examples__item {
        width: 30%; }
        .o-examples__item--margin-right {
          margin-right: 5%; }
      .o-examples-frame__iframe {
        width: 250%;
        height: 250%;
        transform: scale(0.4); } }

@media (min-width: 48em) {
    .a-button {
      padding: 9px 40px 10px;
      font-size: 1.125rem;
      line-height: 1.3125rem; }
    .a-button--sm {
      padding: 9px 15px 10px; }
      .a-svg-sprite--default-phone, .a-svg-sprite--default-phone-white {
        width: 35px;
        height: 35px;
        fill: currentColor; }
      .a-svg-sprite--various-logo-claim {
        width: 187px;
        height: 14px; }
      .m-container--mob {
        padding: 0; }
      .m-container--desktop {
        padding: 0 20px; }
    .m-tel-contact {
      padding-left: 45px; }
      .m-tel-contact__text {
        font-size: 1.125rem;
        line-height: 1.4375rem; }
      .m-tel-contact__href {
        font-size: 1.5rem;
        line-height: 1.6875rem; }
    .m-testimonial__content {
      flex-direction: row; }
    .m-testimonial__user {
      width: 40%; }
    .m-testimonial__quote {
      width: 50%; }
      .m-testimonial__quote-text {
        min-height: 205px; }
      .m-image-slide__header {
        flex-direction: row; }
        .m-image-slide__header-image {
          text-align: initial; }
          .m-image-slide__header-image__image {
            width: initial; }
    .o-cookie-warning {
      padding-right: 40px; }
      .o-cookie-warning__dismiss {
        top: 50%;
        transform: translateY(-50%); }
      .o-cookie-warning__dismiss-icon {
        width: 16px;
        height: 16px; }
      .o-header__nav-trigger {
        display: none; }
    .o-nav {
      position: static;
      transform: none; }
      .nav-is-open .o-nav {
        transform: none; }
      .o-nav__hand {
        display: none; }
      .o-nav__list {
        display: flex;
        padding-bottom: 0;
        margin: 0 -20px; }
      .o-nav__list-el {
        padding: 0px 20px; }
        .o-nav__list-el a {
          display: block;
          padding: 15px 0; }
          .o-nav__list-el a:after {
            display: none; }
    .o-bullet-list {
      padding: 90px 0 60px; }
      .o-bullet-list__headline {
        margin: 0 auto 70px;
        font-size: 2.5rem;
        line-height: 1.15; }
      .o-bullet-list__content {
        flex-direction: row;
        margin-bottom: 105px; }
      .o-bullet-list__content-col {
        width: 50%;
        margin-bottom: 0; }
        .o-bullet-list__content-col--img {
          order: 0;
          height: auto;
          padding-bottom: 0; }
      .o-bullet-list__item {
        margin-bottom: 30px; }
      .o-bullet-list__text {
        padding-top: 5px;
        font-size: 1.125rem;
        line-height: 1.4375rem; }
      .o-footer__panel--top {
        padding: 70px 50px 50px; }
      .o-footer__panel-in--bottom {
        flex-direction: row;
        justify-content: space-between; }
      .o-footer__col {
        padding: 0 50px; }
    .o-footer__cell {
      min-width: 200px;
      margin: 0;
      text-align: right; }
      .o-footer__cell--logo {
        text-align: left; }
      .o-footer__cell--links {
        text-align: center; }
      .o-footer__links {
        margin: 0 0 50px; }
      .o-footer__link {
        font-size: 1.125rem;
        line-height: 1.4375rem;
        margin-bottom: 14px; }
      .o-footer__social-headline {
        margin-bottom: 20px; }
    .o-feedback {
      margin-top: 50px;
      padding: 60px 0px 30px; }
      .o-feedback--small {
        padding: 30px 0 60px;
        margin-top: 0; }
      .o-feedback__headline {
        margin-bottom: 35px; }
      .o-feedback--small .o-feedback__headline {
        margin-bottom: 24.5px; }
      .o-feedback .a-button {
        margin-top: 50px; }
      .o-feedback--small .a-button {
        margin-top: 35px; }
    .o-downloads {
      padding: 70px 0px 35px; }
      .o-downloads__headline {
        margin-bottom: 40px; }
      .o-downloads__item {
        margin-bottom: 35px; }
    .o-product-card {
      padding: 50px 0px;
      border-radius: 0; }
      .o-product-card__head {
        margin-bottom: 60px; }
      .o-product-card__headline {
        font-family: normal;
        font-weight: normal;
        font-family: "TeleNeoWeb-ExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
        .o-product-card__headline--l {
          font-size: 2.25rem;
          line-height: 1.15;
          margin-bottom: 50px; }
      .o-product-card__subline {
        display: block; }
    .o-product-card__content-inner {
      display: flex;
      flex-flow: row nowrap;
      justify-content: space-between; }
    .o-product-card__content-col--img {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 250px; }
      .o-product-card__content-col--img img {
        max-width: 100%;
        margin: 0 auto;
        height: auto;
        flex: 1; }
    .o-product-card__content-col--main {
      padding-left: 20px; }
      .o-product-card__content-row {
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        margin-bottom: 20px; }
        .o-product-card__content-row:first-child {
          padding-bottom: 20px; }
        .o-product-card__content-row:last-child {
          margin-bottom: 0; }
      .o-product-card__content-subcol {
        width: 220px; }
        .o-product-card__content-subcol--main {
          width: auto;
          padding-right: 20px; }
      .o-product-card__cell {
        margin-bottom: 0; }
        .o-product-card__cell--desk {
          display: block; }
        .o-product-card__cell--mob {
          display: none; }
        .o-product-card__cell--center {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          flex-grow: 1; }
      .o-product-card__price-note {
        display: block; }
    .o-benefits {
      height: 100vh;
      max-height: 680px; }
    .o-benefits {
      padding: 40px 30px; }
      .o-benefits__item {
        position: absolute;
        width: 305px;
        padding: 0 0 0 58px; }
        .o-benefits__item--top-center {
          top: 0;
          left: 50%;
          margin-left: -150px; }
        .o-benefits__item--top-right {
          width: 320px;
          top: 105px;
          right: 0; }
        .o-benefits__item--top-left {
          top: 135px;
          left: 0; }
        .o-benefits__item--bottom-right {
          right: 10px;
          bottom: 30px; }
        .o-benefits__item--bottom-left {
          left: 40px;
          bottom: 20px; }
        .o-benefits__item-icon {
          position: absolute;
          top: 50%;
          left: 0px;
          transform: translateY(-50%); }
    .o-benefits__bg {
      overflow: hidden;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: -1; }
      .o-benefits__bg img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%; }
      .o-products__headline {
        font-size: 2.375rem;
        line-height: 1.15; }
    .o-contact {
      padding: 45px 0px; }
      .o-contact__tel {
        margin: 25px 0; }
      .o-shops__headline {
        font-size: 2.375rem;
        line-height: 1.15; }
      .o-shops__filters-row {
        margin: 0 -20px; }
      .o-shops__filter {
        padding: 5px 20px; }
      .o-shops__item-in {
        max-width: none; }
      .o-shops__item-image--desk {
        display: block; }
      .o-shops__item-image--mob {
        display: none; }
      .o-shops-frame__iframe {
        width: 200%;
        height: 200%;
        transform: scale(0.5); }
      .o-vr__headline {
        font-size: 2.375rem;
        line-height: 1.15; }
      .o-vr__filters-row {
        margin: 0 -20px; }
      .o-vr__filter {
        padding: 5px 20px; }
      .o-vr__item-in {
        max-width: none; }
      .o-vr__item-image--desk {
        display: block; }
      .o-vr__item-image--mob {
        display: none; }
      .o-vr-frame__iframe {
        width: 200%;
        height: 200%;
        transform: scale(0.5); }
      .o-examples__headline {
        font-size: 2.375rem;
        line-height: 1.15; }
      .o-examples__filters-row {
        margin: 0 -20px; }
      .o-examples__filter {
        padding: 5px 20px; }
      .o-examples__item-in {
        max-width: none; }
      .o-examples__item-image--desk {
        display: block; }
      .o-examples__item-image--mob {
        display: none; }
      .o-examples-frame__iframe {
        width: 200%;
        height: 200%;
        transform: scale(0.5); }
      .sg-debug-grid .l-container__wrapper {
        background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="rgba(85, 255, 0, 0.2)" width="100%" %3E%3Crect x="0" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(15px + ((100% - 165px) / 12 * 1))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(30px + ((100% - 165px) / 12 * 2))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(45px + ((100% - 165px) / 12 * 3))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(60px + ((100% - 165px) / 12 * 4))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(75px + ((100% - 165px) / 12 * 5))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(90px + ((100% - 165px) / 12 * 6))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(105px + ((100% - 165px) / 12 * 7))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(120px + ((100% - 165px) / 12 * 8))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(135px + ((100% - 165px) / 12 * 9))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(150px + ((100% - 165px) / 12 * 10))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(165px + ((100% - 165px) / 12 * 11))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3C/svg%3E') no-repeat scroll; } }

@media (min-width: 768px) {
      .o-shops__item-frame {
        padding-bottom: 57.41847%;
        background-image: url(/dummy/images/shops/frame/desktop-frame-300w.png); }
      .o-vr__item-frame {
        padding-bottom: 57.41847%;
        background-image: url(/dummy/images/shops/frame/desktop-frame-300w.png); }
      .o-examples__item-frame {
        padding-bottom: 57.41847%;
        background-image: url(/dummy/images/examples/frame/desktop-frame-300w.png); } }

@media (min-width: 768px) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 768px) and (min-resolution: 1.25dppx) {
      .o-shops__item-frame {
        padding-bottom: 57.41847%;
        background-image: url(/dummy/images/shops/frame/desktop-frame-600w.png); }
      .o-vr__item-frame {
        padding-bottom: 57.41847%;
        background-image: url(/dummy/images/shops/frame/desktop-frame-600w.png); }
      .o-examples__item-frame {
        padding-bottom: 57.41847%;
        background-image: url(/dummy/images/examples/frame/desktop-frame-600w.png); } }

@media (min-width: 64em) {
      .a-svg-sprite--bullet-list-journal {
        width: 73px;
        height: 63px; }
      .a-svg-sprite--bullet-list-trust {
        width: 50px;
        height: 71px; }
      .a-svg-sprite--bullet-list-mobile {
        width: 38px;
        height: 68px; }
      .a-svg-sprite--bullet-list-lens {
        width: 52px;
        height: 70px; }
      .a-svg-sprite--bullet-list-clock {
        width: 60px;
        height: 60px; }
    .m-nav-trigger {
      display: none; }
      .o-bullet-list__items {
        padding: 0 55px 0 90px; }
      .o-bullet-list__icon {
        width: 75px;
        margin-right: 30px; }
      .o-footer__col {
        padding: 0 70px; }
    .o-feedback {
      margin-top: 60px;
      padding: 80px 0px 40px; }
      .o-feedback--small {
        padding: 40px 0 80px;
        margin-top: 0; }
      .o-feedback__headline {
        margin-bottom: 45px; }
      .o-feedback--small .o-feedback__headline {
        margin-bottom: 31.5px; }
      .o-feedback .a-button {
        margin-top: 60px; }
      .o-feedback--small .a-button {
        margin-top: 42px; }
    .o-downloads {
      padding: 90px 0px 70px; }
      .o-downloads__headline {
        margin-bottom: 60px; }
      .o-downloads__item {
        margin-bottom: 55px; }
    .o-media-copy {
      padding: 80px 0px 50px; }
      .o-media-copy__row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin: 0px -30px;
        padding-right: 20px; }
        .o-media-copy__row:nth-child(even) {
          flex-direction: row-reverse;
          padding-right: 0; }
      .o-media-copy__cell {
        width: 50%;
        padding: 30px;
        text-align: left; }
        .o-media-copy__cell-text {
          font-size: 1.125rem;
          line-height: 1.4375rem; }
      .o-contact__text {
        font-size: 1.5rem;
        line-height: 1.6875rem; }
    .o-shops-frame {
      padding: 150px 50px 20px; }
      .o-shops-frame__head {
        padding: 0 50px; }
      .o-shops-frame__head-row:first-child {
        padding: 35px 0 25px; }
    .o-vr-frame {
      padding: 150px 50px 20px; }
      .o-vr-frame__head {
        padding: 0 50px; }
      .o-vr-frame__head-row:first-child {
        padding: 35px 0 25px; }
    .o-examples-frame {
      padding: 150px 50px 20px; }
      .o-examples-frame__head {
        padding: 0 50px; }
      .o-examples-frame__head-row:first-child {
        padding: 35px 0 25px; }
      .o-footnote__headline {
        margin-bottom: 20px; }
      .o-footnote__text {
        margin-bottom: 40px; }
      .o-hero-options__list {
        height: 75px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin: 0px -15px;
        padding: 0; }
      .o-hero-options__el {
        padding: 0 15px;
        margin-bottom: 0; }
      .sg-debug-grid .l-container__wrapper {
        background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="rgba(85, 255, 0, 0.2)" width="100%" %3E%3Crect x="0" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(15px + ((100% - 165px) / 12 * 1))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(30px + ((100% - 165px) / 12 * 2))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(45px + ((100% - 165px) / 12 * 3))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(60px + ((100% - 165px) / 12 * 4))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(75px + ((100% - 165px) / 12 * 5))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(90px + ((100% - 165px) / 12 * 6))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(105px + ((100% - 165px) / 12 * 7))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(120px + ((100% - 165px) / 12 * 8))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(135px + ((100% - 165px) / 12 * 9))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(150px + ((100% - 165px) / 12 * 10))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(165px + ((100% - 165px) / 12 * 11))" width="calc(((100% - 165px) / 12 * 1))" height="100%"/%3E%3C/svg%3E') no-repeat scroll; } }

@media (min-height: 700px) and (min-width: 1024px) {
    .m-hero-slide {
      height: calc(100vh - 75px); } }

@media (min-width: 80em) {
        .o-slider--controls-white .o-slider__control {
          display: flex;
          padding-top: 150px; }
      .sg-debug-grid .l-container__wrapper {
        background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="rgba(85, 255, 0, 0.2)" width="100%" %3E%3Crect x="0" width="calc(((100% - 330px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(30px + ((100% - 330px) / 12 * 1))" width="calc(((100% - 330px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(60px + ((100% - 330px) / 12 * 2))" width="calc(((100% - 330px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(90px + ((100% - 330px) / 12 * 3))" width="calc(((100% - 330px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(120px + ((100% - 330px) / 12 * 4))" width="calc(((100% - 330px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(150px + ((100% - 330px) / 12 * 5))" width="calc(((100% - 330px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(180px + ((100% - 330px) / 12 * 6))" width="calc(((100% - 330px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(210px + ((100% - 330px) / 12 * 7))" width="calc(((100% - 330px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(240px + ((100% - 330px) / 12 * 8))" width="calc(((100% - 330px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(270px + ((100% - 330px) / 12 * 9))" width="calc(((100% - 330px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(300px + ((100% - 330px) / 12 * 10))" width="calc(((100% - 330px) / 12 * 1))" height="100%"/%3E%3Crect x="calc(330px + ((100% - 330px) / 12 * 11))" width="calc(((100% - 330px) / 12 * 1))" height="100%"/%3E%3C/svg%3E') no-repeat scroll; } }

@media (min-width: 1280px) and (min-height: 700px) {
      .o-shops-frame__iframe {
        width: 166.66667%;
        height: 166.66667%;
        transform: scale(0.6); }
      .o-vr-frame__iframe {
        width: 166.66667%;
        height: 166.66667%;
        transform: scale(0.6); }
      .o-examples-frame__iframe {
        width: 166.66667%;
        height: 166.66667%;
        transform: scale(0.6); } }

@media (min-width: 1280px) and (min-height: 800px) {
      .o-shops-frame__iframe {
        width: 142.85714%;
        height: 142.85714%;
        transform: scale(0.7); }
      .o-vr-frame__iframe {
        width: 142.85714%;
        height: 142.85714%;
        transform: scale(0.7); }
      .o-examples-frame__iframe {
        width: 142.85714%;
        height: 142.85714%;
        transform: scale(0.7); } }

@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster:
                                 http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^='#']:after,
  a[href^='javascript:']:after {
    content: ''; }
  pre {
    white-space: pre-wrap !important; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

@media (min-height: 600px) and (max-height: 799px) {
      .m-hero-slide__image {
        max-height: 250px; }
        .m-hero-slide__image img {
          max-height: 250px; } }

@media (min-height: 800px) {
      .m-hero-slide__image {
        max-height: none; }
        .m-hero-slide__image img {
          max-height: none; }
        .o-shops-frame--mobile .o-shops-frame__iframe {
          width: 125%;
          height: 125%;
          transform: scale(0.8); }
        .o-vr-frame--mobile .o-vr-frame__iframe {
          width: 125%;
          height: 125%;
          transform: scale(0.8); }
        .o-examples-frame--mobile .o-examples-frame__iframe {
          width: 125%;
          height: 125%;
          transform: scale(0.8); } }

@media (min-height: 500px) and (max-height: 599px) {
        .o-shops-frame--mobile .o-shops-frame__iframe {
          width: 250%;
          height: 250%;
          transform: scale(0.4); }
        .o-vr-frame--mobile .o-vr-frame__iframe {
          width: 250%;
          height: 250%;
          transform: scale(0.4); }
        .o-examples-frame--mobile .o-examples-frame__iframe {
          width: 250%;
          height: 250%;
          transform: scale(0.4); } }

@media (min-height: 600px) and (max-height: 699px) {
        .o-shops-frame--mobile .o-shops-frame__iframe {
          width: 166.66667%;
          height: 166.66667%;
          transform: scale(0.6); }
        .o-vr-frame--mobile .o-vr-frame__iframe {
          width: 166.66667%;
          height: 166.66667%;
          transform: scale(0.6); }
        .o-examples-frame--mobile .o-examples-frame__iframe {
          width: 166.66667%;
          height: 166.66667%;
          transform: scale(0.6); } }

@media (min-height: 700px) and (max-height: 799px) {
        .o-shops-frame--mobile .o-shops-frame__iframe {
          width: 142.85714%;
          height: 142.85714%;
          transform: scale(0.7); }
        .o-vr-frame--mobile .o-vr-frame__iframe {
          width: 142.85714%;
          height: 142.85714%;
          transform: scale(0.7); }
        .o-examples-frame--mobile .o-examples-frame__iframe {
          width: 142.85714%;
          height: 142.85714%;
          transform: scale(0.7); } }

/*# sourceMappingURL=main.css.map */
