/**
 * style.scss
 *
 * Author: Marian Friedmann
 *
 */
/**
 * set me some variables
 */
/**
 * basicss overrides
 *
 * any defaults in basicss/basicss/_settings.scss
 * may be overridden...
 *
 * e.g. $prototyping: true;
 */
/**
 * z-indexes
 */
/**
 * basicss import
 */
/**
 * basicss.scss
 *
 * Author: Marian Friedmann
 *
 */
/* ====================================================
   Reset, Defaults, Mixins
   ==================================================== */
/**
 * Reset, Default settings
 */
/**
 * _settings.scss
 *
 * Author: Marian Friedmann
 */
/**
 * Default objects
 */
/**
 * Default helper
 */
/**
 * Default fonts
 */
/**
 * Default font size
 */
/**
 * Default headings 
 */
/**
 *  Default spacing
 */
/**
 * Default breakpoints
 */
/**
 * Default constrains
 */
/**
 * Arrows
 */
/**
 * Global Variables 
 */
/**
 * Mixins
 */
/**
 * _media.scss
 *
 * Author: Marius Scheel
 *
 * Usage:
 * @include media(300px);
 * or @include media(300px, false);
 * or @include media(max-width 300px);
 * or @include media(100px max-width 300px);
 * or @include media(max-width 100px max-width 300px);
 * or @include media(max-width 100px max-width 300px, true);
 *
 */
/**
 * _hdpi.scss
 *
 * Author: Marius Scheel
 *
 * defaults to 1.3 to include Google Nexus 7
 * adapted from bourbon:
 * https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_hidpi-media-query.scss
 * 
 * Usage:
 * @include hdpi {
 *  // your css for hdpi displays
 * };
 *
 * you can use a custom ratio, if you like:
 * @include hdpi(1.5) {
 *  // your css
 * };
 */
/**
 * _retina-image.scss
 *
 * Author: Marius Scheel
 *
 * Usage:
 * .hero {
 *  @include retina-image("../path/to/hero", 200px 400px);
 * }
 *
 * to use a specific filename:
 * .hero {
 *  @include retina-image("../path/to/hero", 200px 400px, "../path/to/retina-hero"); 
 * } 
 *
 * modified version of bourbon's retina-image mixin.
 * The mixin uses a @2x.png retina filename by default.
 * https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_retina-image.scss
 */
/**
 * _font-size.scss
 *
 * Author: Marian Friedmann
 *
 */
/**
 * _px-to-rem.scss
 *
 * Author: Marian Friedmann
 *
 * Usage:
 * .element {
 *   @include px-to-rem(padding, 0 24px)
 * }
 *
 * Output:
 * .element {
 *   padding: 0 24px;
 *   padding: 0 1.5rem;
 * }
 *
 */
/**
 * _clearfix.scss
 *
 * Author: Marian Friedmann
 *
 * Usage:
 * .element {
 *   @include clearfix;
 * }
 *
 */
/**
 * _ellipsis.scss
 *
 * Author: Marian Friedmann
 *
 * ellipsis mixin 
 *
 */
/* ====================================================
   Base Styles
   ==================================================== */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio, canvas, progress, video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden], template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b, strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button, input, optgroup, select, textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button, select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled], html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"], input[type="radio"] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td, th {
  padding: 0; }

/**
 * _main.scss
 *
 * Author: Marian Friedmann
 *
 */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

body {
  margin: 0;
  padding: 0; }

/**
 * _baseline.scss
 *
 * Author: Marian Friedmann
 *
 */
body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, dl, dd, ol, ul, form, fieldset, legend, table, th, td, caption, hr {
  margin: 0;
  padding: 0; }

h1, h2, h3, h4, h5, h6, ul, ol, dl, blockquote, p, address, table, fieldset, figure, pre {
  margin: 0 0 32px;
  margin: 0 0 1.77778rem; }

ul, ol, dd {
  margin-left: 32px;
  margin-left: 1.77778rem; }

li > ul, li > ol {
  margin-bottom: 0; }

/**
 * _typo.scss
 *
 * Author: Marian Friedmann
 *
 */
html {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.125em;
  line-height: 1.7777777778; }

h1, .heading-1 {
  font-size: 35px;
  font-size: 1.9444444444rem;
  line-height: 1.8285714286; }

h2, .heading-2 {
  font-size: 35px;
  font-size: 1.9444444444rem;
  line-height: 1.8285714286; }

h3, .heading-3 {
  font-size: 35px;
  font-size: 1.9444444444rem;
  line-height: 1.8285714286; }

h4, .heading-4 {
  font-size: 32px;
  font-size: 1.7777777778rem;
  line-height: 1; }

h5, .heading-5 {
  font-size: 28px;
  font-size: 1.5555555556rem;
  line-height: 1.1428571429; }

h6, .heading-6 {
  font-size: 14px;
  font-size: 0.7777777778rem;
  line-height: 2.2857142857; }

/**
 * _links.scss
 *
 * Author: Marian Friedmann
 *
 */
a {
  color: #191919;
  text-decoration: none; }

a:hover {
  color: #e63128;
  text-decoration: underline; }

a:focus {
  outline: thin dotted; }

a:hover, a:active {
  outline: 0; }

/**
 * media-src.scss
 *
 * Author: Marian Friedmann
 *
 */
object, embed, video, img {
  max-width: 100%;
  height: auto; }

/**
 * text styles to offset alt text
 */
img {
  color: #c00; }

/**
 * no fluid images, when width or height are set
 */
img[width], img[height] {
  max-width: none; }

/* ====================================================
   Objects
   ==================================================== */
/**
 * _grid.scss
 *
 * Author: Marian Friedmann
 *
 * Usage:
 * <div class="grid">
 *   <div class="grid__item  width--1of1  width-tab--1of3  width-desk--1of4">
 *       ...
 *   </div><!--
 *--><div class="grid__item  width--1of1  width-tab--2of3  width-desk--3of4">
 *     <div class="grid">
 *       <div class="grid__item  width--1of1  width-tab--1of2">
 *           ...
 *       </div><!--
 *    --><div class="grid__item  width--1of1  width-tab--1of2">
 *           ...
 *       </div>
 *     </div>
 *   </div>
 * </div>
 *
 * the example above combines the grid items with the widths from helper/_width.scss
 */
.grid {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -32px;
  margin-left: -1.77778rem; }

.grid__item {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding-left: 32px;
  padding-left: 1.77778rem; }

/**
 * Reverse the order of grid items
 */
.grid--reversed {
  direction: rtl;
  text-align: left; }
  .grid--reversed > .grid__item {
    direction: ltr;
    text-align: left; }

/**
 * Grid items without gutters
 */
.grid--flush {
  margin-left: 0; }
  .grid--flush > .grid__item {
    padding-left: 0; }

/**
 * Grid size variations
 */
.grid--small {
  margin-left: -16px;
  margin-left: -0.88889rem; }
  .grid--small > .grid__item {
    padding-left: 16px;
    padding-left: 0.88889rem; }

.grid--large {
  margin-left: -64px;
  margin-left: -3.55556rem; }
  .grid--large > .grid__item {
    padding-left: 64px;
    padding-left: 3.55556rem; }

/**
 * _buttons.scss
 *
 * Author: Marian Friedmann
 *
 * Usage:
 * <a class="button [button--secondary]" href="#">Button</a>
 * <input type="text" class="button">
 * <button class="button">Button</button>
 */
.button {
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  line-height: 64px;
  display: inline-block;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Cosmetics */
  padding: 0em 32px;
  color: #fff;
  font-weight: bold;
  background-color: #191919; }

.button:hover {
  background-color: #e63128;
  color: #fff;
  text-decoration: none; }

.button--round {
  border-radius: 4px; }

.button--pill {
  border-radius: 44em; }

.button--full {
  width: 100%; }

/**
 * _constrain.scss
 *
 * Author: Marius Scheel 
 *
 */
.constrain {
  margin: 0 auto; }

.constrain--small {
  max-width: 380px;
  max-width: 21.11111rem; }

.constrain--medium {
  max-width: 540px;
  max-width: 30rem; }

.constrain--large {
  max-width: 830px;
  max-width: 46.11111rem; }

.constrain--max {
  max-width: 1200px;
  max-width: 66.66667rem; }

/**
 * _nav.scss
 *
 * Author: Marian Friedmann
 *
 * source: Nav abstraction from csswizardry.com/2011/09/the-nav-abstraction
 *
 * Can be used on an `ol` or `ul` and displays the list items horizontally.
 * Extend it with the following subclasses:
 *
 * - nav--stacked    // displays the list items vertically
 * - nav--banner     // centres the list
 * - nav--block      // expands list items clickable areas
 * - nav--fit        // forces the list to occupy the full width of its parent
 * - nav--keywords   // display as a list of keywords
 * - nav--breadcrumb // display as breadcrumbs
 * - nav--parallel   // display nav items with parallel separator
 *
 * Markup:
 *
 * <ul class="nav">
 *   <li><a href=#>Home</a></li>
 *   <li><a href=#>About</a></li>
 *   <li><a href=#>Portfolio</a></li>
 *   <li><a href=#>Contact</a></li>
 * </ul>
 */
.nav {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  margin: 0 0 1.77778rem 0;
  /**
   * For IE 6/7 only
   * Include this rule to trigger hasLayout and contain floats.
   */
  *zoom: 1; }
  .nav:before, .nav:after {
    content: " ";
    display: table; }
  .nav:after {
    clear: both; }
  .nav > li, .nav > li > a {
    display: inline-block; }

/**
 * 'nav-stacked' displays the list items vertically
 */
.nav--stacked > li {
  display: list-item; }
  .nav--stacked > li > a {
    display: block; }

/**
 * 'nav-banner' centres the list
 */
.nav--banner {
  text-align: center; }

/**
 * 'nav--block' expands list items clickable areas with padding
 */
.nav--block {
  /* removes unnecessary whitespace */
  letter-spacing: -0.31em;
  word-spacing: -0.43em;
  white-space: nowrap; }
  .nav--block > li {
    letter-spacing: normal;
    word-spacing: normal;
    text-align: center; }
    .nav--block > li > a {
      padding: 0.75em;
      line-height: 1.5em; }

/**
 * 'nav--fit' forces the list to occupy the full width of its parent
 */
.nav--fit {
  display: table;
  width: 100%; }
  .nav--fit > li {
    display: table-cell;
    text-align: center; }
    .nav--fit > li > a {
      display: block; }

/**
 * 'nav--keywords' display as a list of keywords
 */
.nav--keywords > li:after {
  content: "\002C" "\00A0"; }
.nav--keywords > li:last-child:after {
  display: none; }

/**
 * 'nav--breadcrumbs' display as breadcrumbs
 */
.nav--breadcrumbs > li:before {
  content: "\27E9" "\00A0"; }
.nav--breadcrumbs > li:first-child:before {
  display: none; }

/**
 * 'nav--parallel' display with parallel separator
 */
.nav--parallel > li {
  padding-left: 8px;
  padding-left: 0.44444rem; }
  .nav--parallel > li:before {
    content: "\007C";
    margin-right: 8px;
    margin-right: 0.44444rem; }
  .nav--parallel > li:first-child {
    padding: 0; }
    .nav--parallel > li:first-child:before {
      display: none; }

/**
 * _media.scss
 *
 * displays image and text side by side
 *
 * Example markup:
 *
    <div class="media media--small">
      <div class="media__img"></div>
      <div class="media__body"></div>
    </div>
 *
 * use the `.media--rev` modifier to reverse the the image location and put it to the right
 * use the `.media--small` modifier, to decrease the gutter width between image and content
 *
 * for more information have a look at: 
 * stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
 *
 */
.media {
  /**
   * For IE 6/7 only
   * Include this rule to trigger hasLayout and contain floats.
   */
  *zoom: 1;
  display: block; }
  .media:before, .media:after {
    content: " ";
    display: table; }
  .media:after {
    clear: both; }

.media__img {
  float: left;
  margin-right: 32px;
  margin-right: 1.77778rem; }
  .media__img > img {
    display: block; }

.media__body {
  overflow: hidden; }
  .media__body, .media__body > :last-child {
    margin-bottom: 0; }

.media--rev > .media__img {
  float: right;
  margin-right: 0;
  margin-left: 32px;
  margin-left: 1.77778rem; }

.media--small .media__img {
  margin-right: 16px;
  margin-right: 0.88889rem; }
.media--small.media--rev > .media__img {
  margin-right: 0;
  margin-left: 16px;
  margin-left: 0.88889rem; }

/**
 * _bare-list.scss
 *
 */
.bare-list {
  margin: 0;
  padding: 0;
  list-style: none; }

/**
 * _icon.scss
 *
 * Author: Marian Friedmann
 *
 * Usage:
 * <i class="icon [icon--nav-toggle]"></i>
 *
 */
/**
 * Alle icons werden als .svg exportiert unter
 * /assets/images/icons abgelegt und von grunt-svgmin
 * und grunt-grunticon weiterverarbeitet.
 *
 * Output unter /assets/images/icons/grunticon
 */
.icon {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  display: inline-block; }

/**
 * Beispiel für ein Icon
 *
 * .icon--mobile-nav-toggle {
 *   @include background-svg("../images/nav-toggle");
 * }
 */
/* ====================================================
   Helper Classes
   ==================================================== */
/**
 * _spacing.scss
 *
 * Author: Marian Friedmann
 *
 * Usage:
 * <div class="space--top  space-tab--top-double">
 *   ...
 * </div>
 *
 */
/**
 * Basic & spacing
 */
.space--top-none {
  margin-top: 0px;
  margin-top: 0rem; }

.space--left-none {
  margin-left: 0px;
  margin-left: 0rem; }

.space--right-none {
  margin-right: 0px;
  margin-right: 0rem; }

.space--bottom-none {
  margin-bottom: 0px;
  margin-bottom: 0rem; }

.space--top-quarter {
  margin-top: 8px;
  margin-top: 0.44444rem; }

.space--left-quarter {
  margin-left: 8px;
  margin-left: 0.44444rem; }

.space--right-quarter {
  margin-right: 8px;
  margin-right: 0.44444rem; }

.space--bottom-quarter {
  margin-bottom: 8px;
  margin-bottom: 0.44444rem; }

.space--top-third {
  margin-top: 10.6666666666px;
  margin-top: 0.59259rem; }

.space--left-third {
  margin-left: 10.6666666666px;
  margin-left: 0.59259rem; }

.space--right-third {
  margin-right: 10.6666666666px;
  margin-right: 0.59259rem; }

.space--bottom-third {
  margin-bottom: 10.6666666666px;
  margin-bottom: 0.59259rem; }

.space--top-half {
  margin-top: 16px;
  margin-top: 0.88889rem; }

.space--left-half {
  margin-left: 16px;
  margin-left: 0.88889rem; }

.space--right-half {
  margin-right: 16px;
  margin-right: 0.88889rem; }

.space--bottom-half {
  margin-bottom: 16px;
  margin-bottom: 0.88889rem; }

.space--top {
  margin-top: 32px;
  margin-top: 1.77778rem; }

.space--left {
  margin-left: 32px;
  margin-left: 1.77778rem; }

.space--right {
  margin-right: 32px;
  margin-right: 1.77778rem; }

.space--bottom {
  margin-bottom: 32px;
  margin-bottom: 1.77778rem; }

.space--top-double {
  margin-top: 64px;
  margin-top: 3.55556rem; }

.space--left-double {
  margin-left: 64px;
  margin-left: 3.55556rem; }

.space--right-double {
  margin-right: 64px;
  margin-right: 3.55556rem; }

.space--bottom-double {
  margin-bottom: 64px;
  margin-bottom: 3.55556rem; }

.space--top-triple {
  margin-top: 96px;
  margin-top: 5.33333rem; }

.space--left-triple {
  margin-left: 96px;
  margin-left: 5.33333rem; }

.space--right-triple {
  margin-right: 96px;
  margin-right: 5.33333rem; }

.space--bottom-triple {
  margin-bottom: 96px;
  margin-bottom: 5.33333rem; }

@media screen and (min-width: 481px) {
  .space-tab--top-none {
    margin-top: 0px;
    margin-top: 0rem; }

  .space-tab--left-none {
    margin-left: 0px;
    margin-left: 0rem; }

  .space-tab--right-none {
    margin-right: 0px;
    margin-right: 0rem; }

  .space-tab--bottom-none {
    margin-bottom: 0px;
    margin-bottom: 0rem; }

  .space-tab--top-quarter {
    margin-top: 8px;
    margin-top: 0.44444rem; }

  .space-tab--left-quarter {
    margin-left: 8px;
    margin-left: 0.44444rem; }

  .space-tab--right-quarter {
    margin-right: 8px;
    margin-right: 0.44444rem; }

  .space-tab--bottom-quarter {
    margin-bottom: 8px;
    margin-bottom: 0.44444rem; }

  .space-tab--top-third {
    margin-top: 10.6666666666px;
    margin-top: 0.59259rem; }

  .space-tab--left-third {
    margin-left: 10.6666666666px;
    margin-left: 0.59259rem; }

  .space-tab--right-third {
    margin-right: 10.6666666666px;
    margin-right: 0.59259rem; }

  .space-tab--bottom-third {
    margin-bottom: 10.6666666666px;
    margin-bottom: 0.59259rem; }

  .space-tab--top-half {
    margin-top: 16px;
    margin-top: 0.88889rem; }

  .space-tab--left-half {
    margin-left: 16px;
    margin-left: 0.88889rem; }

  .space-tab--right-half {
    margin-right: 16px;
    margin-right: 0.88889rem; }

  .space-tab--bottom-half {
    margin-bottom: 16px;
    margin-bottom: 0.88889rem; }

  .space-tab--top {
    margin-top: 32px;
    margin-top: 1.77778rem; }

  .space-tab--left {
    margin-left: 32px;
    margin-left: 1.77778rem; }

  .space-tab--right {
    margin-right: 32px;
    margin-right: 1.77778rem; }

  .space-tab--bottom {
    margin-bottom: 32px;
    margin-bottom: 1.77778rem; }

  .space-tab--top-double {
    margin-top: 64px;
    margin-top: 3.55556rem; }

  .space-tab--left-double {
    margin-left: 64px;
    margin-left: 3.55556rem; }

  .space-tab--right-double {
    margin-right: 64px;
    margin-right: 3.55556rem; }

  .space-tab--bottom-double {
    margin-bottom: 64px;
    margin-bottom: 3.55556rem; }

  .space-tab--top-triple {
    margin-top: 96px;
    margin-top: 5.33333rem; }

  .space-tab--left-triple {
    margin-left: 96px;
    margin-left: 5.33333rem; }

  .space-tab--right-triple {
    margin-right: 96px;
    margin-right: 5.33333rem; }

  .space-tab--bottom-triple {
    margin-bottom: 96px;
    margin-bottom: 5.33333rem; }
 }

@media screen and (min-width: 721px) {
  .space-lap--top-none {
    margin-top: 0px;
    margin-top: 0rem; }

  .space-lap--left-none {
    margin-left: 0px;
    margin-left: 0rem; }

  .space-lap--right-none {
    margin-right: 0px;
    margin-right: 0rem; }

  .space-lap--bottom-none {
    margin-bottom: 0px;
    margin-bottom: 0rem; }

  .space-lap--top-quarter {
    margin-top: 8px;
    margin-top: 0.44444rem; }

  .space-lap--left-quarter {
    margin-left: 8px;
    margin-left: 0.44444rem; }

  .space-lap--right-quarter {
    margin-right: 8px;
    margin-right: 0.44444rem; }

  .space-lap--bottom-quarter {
    margin-bottom: 8px;
    margin-bottom: 0.44444rem; }

  .space-lap--top-third {
    margin-top: 10.6666666666px;
    margin-top: 0.59259rem; }

  .space-lap--left-third {
    margin-left: 10.6666666666px;
    margin-left: 0.59259rem; }

  .space-lap--right-third {
    margin-right: 10.6666666666px;
    margin-right: 0.59259rem; }

  .space-lap--bottom-third {
    margin-bottom: 10.6666666666px;
    margin-bottom: 0.59259rem; }

  .space-lap--top-half {
    margin-top: 16px;
    margin-top: 0.88889rem; }

  .space-lap--left-half {
    margin-left: 16px;
    margin-left: 0.88889rem; }

  .space-lap--right-half {
    margin-right: 16px;
    margin-right: 0.88889rem; }

  .space-lap--bottom-half {
    margin-bottom: 16px;
    margin-bottom: 0.88889rem; }

  .space-lap--top {
    margin-top: 32px;
    margin-top: 1.77778rem; }

  .space-lap--left {
    margin-left: 32px;
    margin-left: 1.77778rem; }

  .space-lap--right {
    margin-right: 32px;
    margin-right: 1.77778rem; }

  .space-lap--bottom {
    margin-bottom: 32px;
    margin-bottom: 1.77778rem; }

  .space-lap--top-double {
    margin-top: 64px;
    margin-top: 3.55556rem; }

  .space-lap--left-double {
    margin-left: 64px;
    margin-left: 3.55556rem; }

  .space-lap--right-double {
    margin-right: 64px;
    margin-right: 3.55556rem; }

  .space-lap--bottom-double {
    margin-bottom: 64px;
    margin-bottom: 3.55556rem; }

  .space-lap--top-triple {
    margin-top: 96px;
    margin-top: 5.33333rem; }

  .space-lap--left-triple {
    margin-left: 96px;
    margin-left: 5.33333rem; }

  .space-lap--right-triple {
    margin-right: 96px;
    margin-right: 5.33333rem; }

  .space-lap--bottom-triple {
    margin-bottom: 96px;
    margin-bottom: 5.33333rem; }
 }

@media screen and (min-width: 1024px) {
  .space-desk--top-none {
    margin-top: 0px;
    margin-top: 0rem; }

  .space-desk--left-none {
    margin-left: 0px;
    margin-left: 0rem; }

  .space-desk--right-none {
    margin-right: 0px;
    margin-right: 0rem; }

  .space-desk--bottom-none {
    margin-bottom: 0px;
    margin-bottom: 0rem; }

  .space-desk--top-quarter {
    margin-top: 8px;
    margin-top: 0.44444rem; }

  .space-desk--left-quarter {
    margin-left: 8px;
    margin-left: 0.44444rem; }

  .space-desk--right-quarter {
    margin-right: 8px;
    margin-right: 0.44444rem; }

  .space-desk--bottom-quarter {
    margin-bottom: 8px;
    margin-bottom: 0.44444rem; }

  .space-desk--top-third {
    margin-top: 10.6666666666px;
    margin-top: 0.59259rem; }

  .space-desk--left-third {
    margin-left: 10.6666666666px;
    margin-left: 0.59259rem; }

  .space-desk--right-third {
    margin-right: 10.6666666666px;
    margin-right: 0.59259rem; }

  .space-desk--bottom-third {
    margin-bottom: 10.6666666666px;
    margin-bottom: 0.59259rem; }

  .space-desk--top-half {
    margin-top: 16px;
    margin-top: 0.88889rem; }

  .space-desk--left-half {
    margin-left: 16px;
    margin-left: 0.88889rem; }

  .space-desk--right-half {
    margin-right: 16px;
    margin-right: 0.88889rem; }

  .space-desk--bottom-half {
    margin-bottom: 16px;
    margin-bottom: 0.88889rem; }

  .space-desk--top {
    margin-top: 32px;
    margin-top: 1.77778rem; }

  .space-desk--left {
    margin-left: 32px;
    margin-left: 1.77778rem; }

  .space-desk--right {
    margin-right: 32px;
    margin-right: 1.77778rem; }

  .space-desk--bottom {
    margin-bottom: 32px;
    margin-bottom: 1.77778rem; }

  .space-desk--top-double {
    margin-top: 64px;
    margin-top: 3.55556rem; }

  .space-desk--left-double {
    margin-left: 64px;
    margin-left: 3.55556rem; }

  .space-desk--right-double {
    margin-right: 64px;
    margin-right: 3.55556rem; }

  .space-desk--bottom-double {
    margin-bottom: 64px;
    margin-bottom: 3.55556rem; }

  .space-desk--top-triple {
    margin-top: 96px;
    margin-top: 5.33333rem; }

  .space-desk--left-triple {
    margin-left: 96px;
    margin-left: 5.33333rem; }

  .space-desk--right-triple {
    margin-right: 96px;
    margin-right: 5.33333rem; }

  .space-desk--bottom-triple {
    margin-bottom: 96px;
    margin-bottom: 5.33333rem; }
 }

@media screen and (min-width: 1200px) {
  .space-desk-wide--top-none {
    margin-top: 0px;
    margin-top: 0rem; }

  .space-desk-wide--left-none {
    margin-left: 0px;
    margin-left: 0rem; }

  .space-desk-wide--right-none {
    margin-right: 0px;
    margin-right: 0rem; }

  .space-desk-wide--bottom-none {
    margin-bottom: 0px;
    margin-bottom: 0rem; }

  .space-desk-wide--top-quarter {
    margin-top: 8px;
    margin-top: 0.44444rem; }

  .space-desk-wide--left-quarter {
    margin-left: 8px;
    margin-left: 0.44444rem; }

  .space-desk-wide--right-quarter {
    margin-right: 8px;
    margin-right: 0.44444rem; }

  .space-desk-wide--bottom-quarter {
    margin-bottom: 8px;
    margin-bottom: 0.44444rem; }

  .space-desk-wide--top-third {
    margin-top: 10.6666666666px;
    margin-top: 0.59259rem; }

  .space-desk-wide--left-third {
    margin-left: 10.6666666666px;
    margin-left: 0.59259rem; }

  .space-desk-wide--right-third {
    margin-right: 10.6666666666px;
    margin-right: 0.59259rem; }

  .space-desk-wide--bottom-third {
    margin-bottom: 10.6666666666px;
    margin-bottom: 0.59259rem; }

  .space-desk-wide--top-half {
    margin-top: 16px;
    margin-top: 0.88889rem; }

  .space-desk-wide--left-half {
    margin-left: 16px;
    margin-left: 0.88889rem; }

  .space-desk-wide--right-half {
    margin-right: 16px;
    margin-right: 0.88889rem; }

  .space-desk-wide--bottom-half {
    margin-bottom: 16px;
    margin-bottom: 0.88889rem; }

  .space-desk-wide--top {
    margin-top: 32px;
    margin-top: 1.77778rem; }

  .space-desk-wide--left {
    margin-left: 32px;
    margin-left: 1.77778rem; }

  .space-desk-wide--right {
    margin-right: 32px;
    margin-right: 1.77778rem; }

  .space-desk-wide--bottom {
    margin-bottom: 32px;
    margin-bottom: 1.77778rem; }

  .space-desk-wide--top-double {
    margin-top: 64px;
    margin-top: 3.55556rem; }

  .space-desk-wide--left-double {
    margin-left: 64px;
    margin-left: 3.55556rem; }

  .space-desk-wide--right-double {
    margin-right: 64px;
    margin-right: 3.55556rem; }

  .space-desk-wide--bottom-double {
    margin-bottom: 64px;
    margin-bottom: 3.55556rem; }

  .space-desk-wide--top-triple {
    margin-top: 96px;
    margin-top: 5.33333rem; }

  .space-desk-wide--left-triple {
    margin-left: 96px;
    margin-left: 5.33333rem; }

  .space-desk-wide--right-triple {
    margin-right: 96px;
    margin-right: 5.33333rem; }

  .space-desk-wide--bottom-triple {
    margin-bottom: 96px;
    margin-bottom: 5.33333rem; }
 }

/**
 * _width.scss
 *
 * Author: Marian Friedmann
 *
 * Usage:
 * <div class="grid">
 *   <div class="grid__item  width--1of1  width-tab--1of3  width-desk--1of4">
 *     ...
 *   </div>
 *   <div class="grid__item  width--1of1  width-tab--2of3  width-desk--3of4">
 *     ...
 *   </div>
 * </div>
 *
 */
.width--0 {
  width: 0% !important;
  display: none; }

.width--1of1, .width--2of2, .width--3of3, .width--4of4, .width--5of5, .width--6of6 {
  width: 100% !important;
  display: inline-block; }

.width--1of2, .width--2of4, .width--3of6, .width--4of8, .width--5of10, .width--6of12 {
  width: 50% !important;
  display: inline-block; }

.width--1of3, .width--2of6, .width--3of9, .width--4of12 {
  width: 33.33333% !important;
  display: inline-block; }

.width--2of3, .width--4of6, .width--6of9, .width--8of12 {
  width: 66.66666% !important;
  display: inline-block; }

.width--1of4, .width--2of8, .width--3of12 {
  width: 25% !important;
  display: inline-block; }

.width--3of4, .width--6of8, .width--9of12 {
  width: 75% !important;
  display: inline-block; }

.width--1of5, .width--2of10 {
  width: 20% !important;
  display: inline-block; }

.width--2of5, .width--4of10 {
  width: 40% !important;
  display: inline-block; }

.width--3of5, .width--6of10 {
  width: 60% !important;
  display: inline-block; }

.width--4of5, .width--8of10 {
  width: 80% !important;
  display: inline-block; }

.width--1of6, .width--2of12 {
  width: 16.66666% !important;
  display: inline-block; }

.width--5of6, .width--10of12 {
  width: 83.33333% !important;
  display: inline-block; }

.width--1of8 {
  width: 12.5% !important;
  display: inline-block; }

.width--3of8 {
  width: 37.5% !important;
  display: inline-block; }

.width--5of8 {
  width: 62.5% !important;
  display: inline-block; }

.width--7of8 {
  width: 87.5% !important;
  display: inline-block; }

.width--1of9 {
  width: 11.1111111% !important;
  display: inline-block; }

.width--2of9 {
  width: 22.2222222% !important;
  display: inline-block; }

.width--4of9 {
  width: 44.4444444% !important;
  display: inline-block; }

.width--5of9 {
  width: 55.5555555% !important;
  display: inline-block; }

.width--7of9 {
  width: 77.7777777% !important;
  display: inline-block; }

.width--8of9 {
  width: 88.8888888% !important;
  display: inline-block; }

.width--1of10 {
  width: 10% !important;
  display: inline-block; }

.width--3of10 {
  width: 30% !important;
  display: inline-block; }

.width--7of10 {
  width: 70% !important;
  display: inline-block; }

.width--9of10 {
  width: 90% !important;
  display: inline-block; }

.width--1of12 {
  width: 8.3333333% !important;
  display: inline-block; }

.width--5of12 {
  width: 41.6666666% !important;
  display: inline-block; }

.width--7of12 {
  width: 58.3333333% !important;
  display: inline-block; }

.width--11of12 {
  width: 91.6666666% !important;
  display: inline-block; }

@media screen and (min-width: 481px) {
  .width-tab--0 {
    width: 0% !important;
    display: none; }

  .width-tab--1of1, .width-tab--2of2, .width-tab--3of3, .width-tab--4of4, .width-tab--5of5, .width-tab--6of6 {
    width: 100% !important;
    display: inline-block; }

  .width-tab--1of2, .width-tab--2of4, .width-tab--3of6, .width-tab--4of8, .width-tab--5of10, .width-tab--6of12 {
    width: 50% !important;
    display: inline-block; }

  .width-tab--1of3, .width-tab--2of6, .width-tab--3of9, .width-tab--4of12 {
    width: 33.33333% !important;
    display: inline-block; }

  .width-tab--2of3, .width-tab--4of6, .width-tab--6of9, .width-tab--8of12 {
    width: 66.66666% !important;
    display: inline-block; }

  .width-tab--1of4, .width-tab--2of8, .width-tab--3of12 {
    width: 25% !important;
    display: inline-block; }

  .width-tab--3of4, .width-tab--6of8, .width-tab--9of12 {
    width: 75% !important;
    display: inline-block; }

  .width-tab--1of5, .width-tab--2of10 {
    width: 20% !important;
    display: inline-block; }

  .width-tab--2of5, .width-tab--4of10 {
    width: 40% !important;
    display: inline-block; }

  .width-tab--3of5, .width-tab--6of10 {
    width: 60% !important;
    display: inline-block; }

  .width-tab--4of5, .width-tab--8of10 {
    width: 80% !important;
    display: inline-block; }

  .width-tab--1of6, .width-tab--2of12 {
    width: 16.66666% !important;
    display: inline-block; }

  .width-tab--5of6, .width-tab--10of12 {
    width: 83.33333% !important;
    display: inline-block; }

  .width-tab--1of8 {
    width: 12.5% !important;
    display: inline-block; }

  .width-tab--3of8 {
    width: 37.5% !important;
    display: inline-block; }

  .width-tab--5of8 {
    width: 62.5% !important;
    display: inline-block; }

  .width-tab--7of8 {
    width: 87.5% !important;
    display: inline-block; }

  .width-tab--1of9 {
    width: 11.1111111% !important;
    display: inline-block; }

  .width-tab--2of9 {
    width: 22.2222222% !important;
    display: inline-block; }

  .width-tab--4of9 {
    width: 44.4444444% !important;
    display: inline-block; }

  .width-tab--5of9 {
    width: 55.5555555% !important;
    display: inline-block; }

  .width-tab--7of9 {
    width: 77.7777777% !important;
    display: inline-block; }

  .width-tab--8of9 {
    width: 88.8888888% !important;
    display: inline-block; }

  .width-tab--1of10 {
    width: 10% !important;
    display: inline-block; }

  .width-tab--3of10 {
    width: 30% !important;
    display: inline-block; }

  .width-tab--7of10 {
    width: 70% !important;
    display: inline-block; }

  .width-tab--9of10 {
    width: 90% !important;
    display: inline-block; }

  .width-tab--1of12 {
    width: 8.3333333% !important;
    display: inline-block; }

  .width-tab--5of12 {
    width: 41.6666666% !important;
    display: inline-block; }

  .width-tab--7of12 {
    width: 58.3333333% !important;
    display: inline-block; }

  .width-tab--11of12 {
    width: 91.6666666% !important;
    display: inline-block; }
 }

@media screen and (min-width: 721px) {
  .width-lap--0 {
    width: 0% !important;
    display: none; }

  .width-lap--1of1, .width-lap--2of2, .width-lap--3of3, .width-lap--4of4, .width-lap--5of5, .width-lap--6of6 {
    width: 100% !important;
    display: inline-block; }

  .width-lap--1of2, .width-lap--2of4, .width-lap--3of6, .width-lap--4of8, .width-lap--5of10, .width-lap--6of12 {
    width: 50% !important;
    display: inline-block; }

  .width-lap--1of3, .width-lap--2of6, .width-lap--3of9, .width-lap--4of12 {
    width: 33.33333% !important;
    display: inline-block; }

  .width-lap--2of3, .width-lap--4of6, .width-lap--6of9, .width-lap--8of12 {
    width: 66.66666% !important;
    display: inline-block; }

  .width-lap--1of4, .width-lap--2of8, .width-lap--3of12 {
    width: 25% !important;
    display: inline-block; }

  .width-lap--3of4, .width-lap--6of8, .width-lap--9of12 {
    width: 75% !important;
    display: inline-block; }

  .width-lap--1of5, .width-lap--2of10 {
    width: 20% !important;
    display: inline-block; }

  .width-lap--2of5, .width-lap--4of10 {
    width: 40% !important;
    display: inline-block; }

  .width-lap--3of5, .width-lap--6of10 {
    width: 60% !important;
    display: inline-block; }

  .width-lap--4of5, .width-lap--8of10 {
    width: 80% !important;
    display: inline-block; }

  .width-lap--1of6, .width-lap--2of12 {
    width: 16.66666% !important;
    display: inline-block; }

  .width-lap--5of6, .width-lap--10of12 {
    width: 83.33333% !important;
    display: inline-block; }

  .width-lap--1of8 {
    width: 12.5% !important;
    display: inline-block; }

  .width-lap--3of8 {
    width: 37.5% !important;
    display: inline-block; }

  .width-lap--5of8 {
    width: 62.5% !important;
    display: inline-block; }

  .width-lap--7of8 {
    width: 87.5% !important;
    display: inline-block; }

  .width-lap--1of9 {
    width: 11.1111111% !important;
    display: inline-block; }

  .width-lap--2of9 {
    width: 22.2222222% !important;
    display: inline-block; }

  .width-lap--4of9 {
    width: 44.4444444% !important;
    display: inline-block; }

  .width-lap--5of9 {
    width: 55.5555555% !important;
    display: inline-block; }

  .width-lap--7of9 {
    width: 77.7777777% !important;
    display: inline-block; }

  .width-lap--8of9 {
    width: 88.8888888% !important;
    display: inline-block; }

  .width-lap--1of10 {
    width: 10% !important;
    display: inline-block; }

  .width-lap--3of10 {
    width: 30% !important;
    display: inline-block; }

  .width-lap--7of10 {
    width: 70% !important;
    display: inline-block; }

  .width-lap--9of10 {
    width: 90% !important;
    display: inline-block; }

  .width-lap--1of12 {
    width: 8.3333333% !important;
    display: inline-block; }

  .width-lap--5of12 {
    width: 41.6666666% !important;
    display: inline-block; }

  .width-lap--7of12 {
    width: 58.3333333% !important;
    display: inline-block; }

  .width-lap--11of12 {
    width: 91.6666666% !important;
    display: inline-block; }
 }

@media screen and (min-width: 1024px) {
  .width-desk--0 {
    width: 0% !important;
    display: none; }

  .width-desk--1of1, .width-desk--2of2, .width-desk--3of3, .width-desk--4of4, .width-desk--5of5, .width-desk--6of6 {
    width: 100% !important;
    display: inline-block; }

  .width-desk--1of2, .width-desk--2of4, .width-desk--3of6, .width-desk--4of8, .width-desk--5of10, .width-desk--6of12 {
    width: 50% !important;
    display: inline-block; }

  .width-desk--1of3, .width-desk--2of6, .width-desk--3of9, .width-desk--4of12 {
    width: 33.33333% !important;
    display: inline-block; }

  .width-desk--2of3, .width-desk--4of6, .width-desk--6of9, .width-desk--8of12 {
    width: 66.66666% !important;
    display: inline-block; }

  .width-desk--1of4, .width-desk--2of8, .width-desk--3of12 {
    width: 25% !important;
    display: inline-block; }

  .width-desk--3of4, .width-desk--6of8, .width-desk--9of12 {
    width: 75% !important;
    display: inline-block; }

  .width-desk--1of5, .width-desk--2of10 {
    width: 20% !important;
    display: inline-block; }

  .width-desk--2of5, .width-desk--4of10 {
    width: 40% !important;
    display: inline-block; }

  .width-desk--3of5, .width-desk--6of10 {
    width: 60% !important;
    display: inline-block; }

  .width-desk--4of5, .width-desk--8of10 {
    width: 80% !important;
    display: inline-block; }

  .width-desk--1of6, .width-desk--2of12 {
    width: 16.66666% !important;
    display: inline-block; }

  .width-desk--5of6, .width-desk--10of12 {
    width: 83.33333% !important;
    display: inline-block; }

  .width-desk--1of8 {
    width: 12.5% !important;
    display: inline-block; }

  .width-desk--3of8 {
    width: 37.5% !important;
    display: inline-block; }

  .width-desk--5of8 {
    width: 62.5% !important;
    display: inline-block; }

  .width-desk--7of8 {
    width: 87.5% !important;
    display: inline-block; }

  .width-desk--1of9 {
    width: 11.1111111% !important;
    display: inline-block; }

  .width-desk--2of9 {
    width: 22.2222222% !important;
    display: inline-block; }

  .width-desk--4of9 {
    width: 44.4444444% !important;
    display: inline-block; }

  .width-desk--5of9 {
    width: 55.5555555% !important;
    display: inline-block; }

  .width-desk--7of9 {
    width: 77.7777777% !important;
    display: inline-block; }

  .width-desk--8of9 {
    width: 88.8888888% !important;
    display: inline-block; }

  .width-desk--1of10 {
    width: 10% !important;
    display: inline-block; }

  .width-desk--3of10 {
    width: 30% !important;
    display: inline-block; }

  .width-desk--7of10 {
    width: 70% !important;
    display: inline-block; }

  .width-desk--9of10 {
    width: 90% !important;
    display: inline-block; }

  .width-desk--1of12 {
    width: 8.3333333% !important;
    display: inline-block; }

  .width-desk--5of12 {
    width: 41.6666666% !important;
    display: inline-block; }

  .width-desk--7of12 {
    width: 58.3333333% !important;
    display: inline-block; }

  .width-desk--11of12 {
    width: 91.6666666% !important;
    display: inline-block; }
 }

@media screen and (min-width: 1200px) {
  .width-desk-wide--0 {
    width: 0% !important;
    display: none; }

  .width-desk-wide--1of1, .width-desk-wide--2of2, .width-desk-wide--3of3, .width-desk-wide--4of4, .width-desk-wide--5of5, .width-desk-wide--6of6 {
    width: 100% !important;
    display: inline-block; }

  .width-desk-wide--1of2, .width-desk-wide--2of4, .width-desk-wide--3of6, .width-desk-wide--4of8, .width-desk-wide--5of10, .width-desk-wide--6of12 {
    width: 50% !important;
    display: inline-block; }

  .width-desk-wide--1of3, .width-desk-wide--2of6, .width-desk-wide--3of9, .width-desk-wide--4of12 {
    width: 33.33333% !important;
    display: inline-block; }

  .width-desk-wide--2of3, .width-desk-wide--4of6, .width-desk-wide--6of9, .width-desk-wide--8of12 {
    width: 66.66666% !important;
    display: inline-block; }

  .width-desk-wide--1of4, .width-desk-wide--2of8, .width-desk-wide--3of12 {
    width: 25% !important;
    display: inline-block; }

  .width-desk-wide--3of4, .width-desk-wide--6of8, .width-desk-wide--9of12 {
    width: 75% !important;
    display: inline-block; }

  .width-desk-wide--1of5, .width-desk-wide--2of10 {
    width: 20% !important;
    display: inline-block; }

  .width-desk-wide--2of5, .width-desk-wide--4of10 {
    width: 40% !important;
    display: inline-block; }

  .width-desk-wide--3of5, .width-desk-wide--6of10 {
    width: 60% !important;
    display: inline-block; }

  .width-desk-wide--4of5, .width-desk-wide--8of10 {
    width: 80% !important;
    display: inline-block; }

  .width-desk-wide--1of6, .width-desk-wide--2of12 {
    width: 16.66666% !important;
    display: inline-block; }

  .width-desk-wide--5of6, .width-desk-wide--10of12 {
    width: 83.33333% !important;
    display: inline-block; }

  .width-desk-wide--1of8 {
    width: 12.5% !important;
    display: inline-block; }

  .width-desk-wide--3of8 {
    width: 37.5% !important;
    display: inline-block; }

  .width-desk-wide--5of8 {
    width: 62.5% !important;
    display: inline-block; }

  .width-desk-wide--7of8 {
    width: 87.5% !important;
    display: inline-block; }

  .width-desk-wide--1of9 {
    width: 11.1111111% !important;
    display: inline-block; }

  .width-desk-wide--2of9 {
    width: 22.2222222% !important;
    display: inline-block; }

  .width-desk-wide--4of9 {
    width: 44.4444444% !important;
    display: inline-block; }

  .width-desk-wide--5of9 {
    width: 55.5555555% !important;
    display: inline-block; }

  .width-desk-wide--7of9 {
    width: 77.7777777% !important;
    display: inline-block; }

  .width-desk-wide--8of9 {
    width: 88.8888888% !important;
    display: inline-block; }

  .width-desk-wide--1of10 {
    width: 10% !important;
    display: inline-block; }

  .width-desk-wide--3of10 {
    width: 30% !important;
    display: inline-block; }

  .width-desk-wide--7of10 {
    width: 70% !important;
    display: inline-block; }

  .width-desk-wide--9of10 {
    width: 90% !important;
    display: inline-block; }

  .width-desk-wide--1of12 {
    width: 8.3333333% !important;
    display: inline-block; }

  .width-desk-wide--5of12 {
    width: 41.6666666% !important;
    display: inline-block; }

  .width-desk-wide--7of12 {
    width: 58.3333333% !important;
    display: inline-block; }

  .width-desk-wide--11of12 {
    width: 91.6666666% !important;
    display: inline-block; }
 }

/**
 * _typo.scss
 *
 * Author: Marian Friedmann
 *
 * Alt Text Styles.
 *
 * ## alignment 
 * - text--left
 * - text--right
 * - text--center
 *
 * ## utilities 
 * - text--secondary
 * - text--inherit-color
 * - text--no-wrap
 *
 * Usage:
 * <div class="text--large">
 *   <h1>Lorem Ipsum</h1>
 *   <p>Lorem ipsum</p>
 * </div>
 *
 */
/**
 * Inherit ancestor's text color
 */
.text--inherit-color {
  color: inherit !important; }

/**
 * Prevent text from wrapping
 */
.text--no-wrap {
  white-space: nowrap !important; }

.text--left {
  text-align: left; }

.text--right {
  text-align: right; }

.text--center {
  text-align: center; }

@media screen and (min-width: 481px) {
  .text-tab--left {
    text-align: left; }

  .text-tab--right {
    text-align: right; }

  .text-tab--center {
    text-align: center; }
 }

@media screen and (min-width: 721px) {
  .text-lap--left {
    text-align: left; }

  .text-lap--right {
    text-align: right; }

  .text-lap--center {
    text-align: center; }
 }

@media screen and (min-width: 1024px) {
  .text-desk--left {
    text-align: left; }

  .text-desk--right {
    text-align: right; }

  .text-desk--center {
    text-align: center; }
 }

@media screen and (min-width: 1200px) {
  .text-desk-wide--left {
    text-align: left; }

  .text-desk-wide--right {
    text-align: right; }

  .text-desk-wide--center {
    text-align: center; }
 }

/**
 * _layout.scss
 *
 *
 */
.clearfix {
  /**
   * For IE 6/7 only
   * Include this rule to trigger hasLayout and contain floats.
   */
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: " ";
    display: table; }
  .clearfix:after {
    clear: both; }

.pull-left {
  float: left; }

.pull-right {
  float: right; }

/**
 * userstyle imports
 *
 * e.g. @import 'nav';
 */
body, html {
  height: 100%;
  color: #6e6e6d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

@media screen and (max-width: 721px) {
  html {
    font-size: 0.875em; } }

.subpage-wrap {
  max-width: 1200px;
  margin: 0 auto; }

.uppercase {
  text-transform: uppercase; }

a {
  color: #e63128; }

a:hover {
  color: #e63128;
  text-decoration: underline; }

.logo {
  text-indent: -9999em;
  width: 180px;
  height: 62px;
  background-size: 100% auto;
  display: inline-block;
  position: relative;
  z-index: 100000; }
  @media screen and (min-width: 1024px) {
    .logo {
      width: 210px;
      height: 72px; } }
  .lt-ie9 .logo {
    width: 210px;
    height: 72px; }

.masthead {
  padding-top: 57px;
  border-top: 6px solid #e63128;
  position: relative; }

/**
 * Navigation Header
 */
.level_1.nav--header {
  margin-top: 32px;
  position: relative;
  z-index: 99999;
  margin-bottom: 0;
  width: 100%;
  /* erste ebene */
  /* zweite ebene */
  /* hoverz */ }
  @media screen and (min-width: 1024px) {
    .level_1.nav--header {
      position: absolute;
      right: 32px;
      bottom: -16px;
      margin-top: 0; } }
  .lt-ie9 .level_1.nav--header {
    position: absolute;
    right: 32px;
    bottom: -16px;
    margin-top: 0; }
  .level_1.nav--header > li > a, .level_1.nav--header > li > span {
    text-transform: uppercase;
    color: #6e6e6d;
    background-color: #fff;
    padding: 8px 16px;
    font-size: 19px;
    font-size: 1.0555555556rem;
    line-height: 1.6842105263; }
    @media screen and (min-width: 1024px) {
      .level_1.nav--header > li > a, .level_1.nav--header > li > span {
        padding: 16px 32px;
        font-size: 22px;
        font-size: 1.2222222222rem;
        line-height: 1.4545454545; } }
    .lt-ie9 .level_1.nav--header > li > a, .lt-ie9 .level_1.nav--header > li > span {
      padding: 16px 32px;
      font-size: 22px;
      font-size: 1.2222222222rem;
      line-height: 1.4545454545; }
    .level_1.nav--header > li > a:hover, .level_1.nav--header > li > span:hover {
      color: #fff;
      background-color: #e63128;
      text-decoration: none; }
  .level_1.nav--header span {
    cursor: default; }
  .level_1.nav--header span.trail {
    display: block; }
  .level_1.nav--header ul a, .level_1.nav--header ul span {
    color: #6e6e6d;
    display: block;
    text-align: left; }
    @media screen and (min-width: 1024px) {
      .level_1.nav--header ul a, .level_1.nav--header ul span {
        text-align: center; } }
    .lt-ie9 .level_1.nav--header ul a, .lt-ie9 .level_1.nav--header ul span {
      text-align: center; }
  .level_1.nav--header ul li {
    display: block;
    text-align: left; }
    .level_1.nav--header ul li a, .level_1.nav--header ul li span {
      background-color: #fff;
      padding: 8px 16px; }
      @media screen and (min-width: 1024px) {
        .level_1.nav--header ul li a, .level_1.nav--header ul li span {
          padding: auto; } }
      .lt-ie9 .level_1.nav--header ul li a, .lt-ie9 .level_1.nav--header ul li span {
        padding: auto; }
      .level_1.nav--header ul li a:hover, .level_1.nav--header ul li span:hover {
        color: #fff;
        background-color: #e63128;
        text-decoration: none; }
  .level_1.nav--header > li {
    position: relative; }
  .level_1.nav--header > li ul {
    display: none;
    position: absolute;
    left: 0; }
  .level_1.nav--header > li:hover ul, .level_1.nav--header > li.hover ul {
    display: block; }
  .level_1.nav--header > li.hover, .level_1.nav--header > li:hover {
    border-bottom: none;
    z-index: 999999; }
    .level_1.nav--header > li.hover a, .level_1.nav--header > li.hover span, .level_1.nav--header > li:hover a, .level_1.nav--header > li:hover span {
      position: relative;
      z-index: 999999; }
  .level_1.nav--header > li.hover ul, .level_1.nav--header > li:hover ul {
    background: #fff;
    margin-left: -1px;
    margin-top: -1px;
    z-index: 99999; }
  .level_1.nav--header > li {
    border: 1px solid transparent; }
  .level_1.nav--header > li.hover, .level_1.nav--header > li.hover ul, .level_1.nav--header > li:hover, .level_1.nav--header > li:hover ul {
    border: 1px solid #eee; }

/**
 * Navigation für Newsroom
 */
.nav--kunden {
  text-align: right; }
  .nav--kunden ul {
    font-size: 14px;
    font-size: 0.7777777778rem;
    line-height: 2.2857142857;
    list-style: none;
    margin: 0;
    padding: 0; }
  .nav--kunden a {
    color: #6e6e6d;
    text-decoration: none; }
    .nav--kunden a:hover {
      color: #fff;
      background-color: #e63128;
      box-shadow: 0 0 0 5px #e63128; }
  .nav--kunden .nav__title {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-size: 0.7777777778rem;
    line-height: 2.2857142857; }
  .nav--kunden .nav-toggle {
    background-color: #e63128;
    background-position: center;
    background-size: 70%;
    height: 20px;
    width: 20px; }
    @media screen and (min-width: 721px) {
      .nav--kunden .nav-toggle {
        display: none; } }
    .lt-ie9 .nav--kunden .nav-toggle {
      display: none; }

.nav--active .nav-toggle {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1); }

.nav--footer {
  margin-bottom: 0; }
  .nav--footer li {
    margin-right: 16px; }
    @media screen and (min-width: 1024px) {
      .nav--footer li {
        margin-right: inherit;
        margin-left: 16px; } }

.subnavigation {
  display: none; }
  .subnavigation.active {
    display: block; }
  .subnavigation ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    @media screen and (min-width: 721px) {
      .subnavigation ul {
        text-align: right; } }
  .subnavigation li {
    margin: 20px 0; }
    .subnavigation li:first-child {
      margin-top: 0; }
    @media screen and (min-width: 721px) {
      .subnavigation li {
        display: inline-block; } }
  .subnavigation a {
    padding: 5px 10px;
    text-decoration: none; }
    .subnavigation a:hover {
      background-color: #e63128;
      color: #fff; }

.hero {
  color: #fff; }

.hero .slick-slide img {
  width: 100%; }

.hero.slick-slider {
  margin-bottom: 48px; }

.hero .tagline {
  max-width: 800px;
  display: block;
  margin: 0 auto 30px; }
  @media screen and (max-width: 721px) {
    .hero .tagline {
      padding: 0 20px; } }

.hero__image {
  background-size: cover;
  height: 322px; }

.indicator {
  width: 35px;
  height: 35px;
  display: none;
  background-color: #e63128;
  border-radius: 50%;
  position: relative;
  vertical-align: middle; }
  @media screen and (min-width: 721px) {
    .indicator {
      display: inline-block; } }
  .indicator--left {
    margin-left: 100px; }
    @media screen and (min-width: 1024px) {
      .indicator--left {
        margin-right: 600px; } }
  .indicator--right {
    margin-right: 100px; }
    @media screen and (min-width: 1024px) {
      .indicator--right {
        margin-left: 600px; } }
  .indicator--right:before, .indicator--left:before {
    content: "";
    background-color: #e63128;
    width: 80px;
    height: 2px;
    position: absolute;
    top: 50%; }
  .indicator--left:before {
    left: -75px; }
  .indicator--right:before {
    left: 35px; }

.hero__detail {
  text-transform: uppercase;
  letter-spacing: 1px;
  vertical-align: middle;
  font-size: 15px;
  font-size: 0.8333333333rem; }

.hero .slick-dots {
  margin-bottom: 0;
  bottom: -54px; }

.constrain {
  padding: 0 32px;
  position: relative;
  margin-bottom: 94px; }
  @media screen and (min-width: 481px) {
    .constrain {
      margin-bottom: 120px; } }
  .constrain .constrain {
    margin-bottom: 0; }

.constrain--header {
  margin-bottom: 35px; }

@media screen and (min-width: 1024px) {
  .constrain--scroll-to-top {
    margin-bottom: 128px; } }
.lt-ie9 .constrain--scroll-to-top {
  margin-bottom: 128px; }

.constrain--footer {
  max-width: 980px;
  max-width: 54.44444rem; }

.headline {
  font-family: 'Playfair Display', serif;
  color: #e63128;
  font-weight: 400; }

.headline--secondary {
  font-family: 'Source Sans Pro', sans-serif;
  text-transform: uppercase; }

.headline--seperator, .headline--seperator-red {
  position: relative;
  padding-bottom: 32px; }
  .headline--seperator:before, .headline--seperator-red:before {
    content: "";
    display: block;
    width: 48%;
    left: 26%;
    height: 1px;
    position: absolute;
    bottom: 0;
    background: #ccc; }

.headline--seperator-red {
  padding-bottom: 10.6666666667px; }
  .headline--seperator-red:before {
    height: 2px;
    background: #e63128; }

@media screen and (min-width: 721px) {
  .headline--breeze {
    margin-bottom: 32px; }
    .headline--breeze.headline--seperator {
      padding-bottom: 32px; } }
.lt-ie9 .headline--breeze {
  margin-bottom: 32px; }
  .lt-ie9 .headline--breeze.headline--seperator {
    padding-bottom: 32px; }

@media screen and (min-width: 1024px) {
  .headline--agentur {
    position: relative;
    padding-right: 150px;
    padding-bottom: 32px; } }
.lt-ie9 .headline--agentur {
  position: relative;
  padding-right: 150px;
  padding-bottom: 32px; }
@media screen and (min-width: 1024px) {
  .headline--agentur {
    margin-top: 48px; }
    .headline--agentur:before {
      position: absolute;
      content: '';
      bottom: 0;
      left: 0;
      right: 0;
      border-bottom: 1px solid #c7c7c7;
      z-index: 9999 -1; } }

@media screen and (min-width: 1024px) {
  .headline--agentur-border:before {
    right: -500px; }
 }
.lt-ie9 .headline--agentur-border:before {
  right: -500px; }

@media screen and (min-width: 1024px) {
  .headline--claim h1 {
    padding: 0 160px;
    padding-bottom: 32px; } }

.text--dark-bg {
  color: #fff; }

.text--quote:before {
  content: "\201E"; }
.text--quote:after {
  content: "\201C"; }

.text--highlight {
  color: #e63128; }

#main hr {
  margin: 32px 0;
  border: none;
  border-bottom: 1px solid #ccc; }

.lede {
  font-weight: bold; }

p {
  letter-spacing: -0.01em; }

h1, .heading-1, h2, .heading-2, h3, .heading-3, h4, .heading-4, h5, .heading-5, h6, .heading-6 {
  line-height: 1.3;
  -webkit-font-variant-ligatures: contextual no-historical-ligatures common-ligatures;
  -moz-font-variant-ligatures: contextual no-historical-ligatures common-ligatures;
  font-variant-ligatures: contextual no-historical-ligatures common-ligatures; }

h1, .heading-1 {
  font-size: 32px;
  font-size: 1.7777777778rem; }
  @media screen and (min-width: 1024px) {
    h1, .heading-1 {
      font-size: 35px;
      font-size: 1.9444444444rem; } }
  .lt-ie9 h1, .lt-ie9 .heading-1 {
    font-size: 35px;
    font-size: 1.9444444444rem; }

h2, .heading-2 {
  font-size: 35px;
  font-size: 1.9444444444rem; }
  @media screen and (min-width: 1024px) {
    h2, .heading-2 {
      font-size: 35px;
      font-size: 1.9444444444rem; } }
  .lt-ie9 h2, .lt-ie9 .heading-2 {
    font-size: 35px;
    font-size: 1.9444444444rem; }

h3, .heading-3 {
  font-size: 35px;
  font-size: 1.9444444444rem; }

h4, .heading-4 {
  font-size: 32px;
  font-size: 1.7777777778rem;
  color: #6e6e6d; }

h5, .heading-5 {
  font-size: 28px;
  font-size: 1.5555555556rem; }

h6, .heading-6 {
  font-size: 14px;
  font-size: 0.7777777778rem;
  font-weight: normal;
  letter-spacing: 2px; }

.grid--top .grid__item {
  vertical-align: top; }

.grid--seperator .grid__item {
  position: relative; }
  .grid--seperator .grid__item:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 32px;
    width: 1px;
    background: #FFF; }
  .grid--seperator .grid__item:first-child:before {
    display: none; }

/**
* sonderfall team
* grid ist zwischen $breakLaptop und $breakDesktop reversed
* sonst nicht
*/
@media screen and (min-width: 721px) and (max-width: 1024px) {
  .grid--team {
    direction: rtl;
    text-align: left; }
    .grid--team > .grid__item {
      direction: ltr;
      text-align: left; }
 }

/**
 * bei Endgeräten ohne Hover soll der Text von Anfang an erscheinen
 * die Abfrage läuft über die (Modernizr)Klasse:
 * .touch
 */
.teaser-box {
  background-image: url(../images/bsp-dummy.jpg);
  height: 0;
  padding-bottom: 60%;
  position: relative;
  background-size: 101% auto;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-position: center center;
  /* shame */ }
  .teaser-box:hover {
    background-size: 120% auto; }
  .teaser-box .headline {
    margin-bottom: 5px; }
  .teaser-box .teaser-box__inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }

.center-text {
  display: table;
  width: 100%;
  height: 100%; }

.center-text__inner {
  display: table-cell;
  text-align: center;
  vertical-align: middle; }

.teaser-box--claim {
  background-image: none;
  background-color: #e63128; }
  @media screen and (min-width: 380px) {
    .teaser-box--claim .center-text__inner {
      padding: 32px; } }
  .teaser-box--claim .headline {
    margin-bottom: 0; }

.teaser-box--claim:before {
  content: "";
  background: url(../icons/signet-no-border.svg);
  background-size: 100% 100%;
  display: inline-block;
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 50px;
  height: 52px; }
  @media screen and (min-width: 481px) {
    .teaser-box--claim:before {
      width: 100px;
      height: 104px; } }
  @media screen and (min-width: 1024px) {
    .teaser-box--claim:before {
      right: 10%; } }

.teaser-box__headline, .teaser-box__subtitle {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s; }

.teaser-box__headline {
  -webkit-transform: translateY(25%);
  transform: translateY(25%);
  position: relative; }
  .touch .teaser-box__headline {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  .teaser-box__headline:before {
    position: absolute;
    bottom: -2px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: #fff;
    content: '';
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    .touch .teaser-box__headline:before {
      opacity: 1; }

.teaser-box__subtitle {
  -webkit-transform: translateY(25%);
  transform: translateY(25%);
  opacity: 0;
  text-transform: uppercase; }
  .touch .teaser-box__subtitle {
    opacity: 1;
    -webkit-transform: translateY(10%);
    transform: translateY(10%); }

.teaser-box:hover .teaser-box__headline, .teaser-box:hover .teaser-box__subtitle {
  -webkit-transform: translate(0);
  transform: translate(0); }

.teaser-box:hover .teaser-box__headline:before {
  opacity: 1; }

.teaser-box:hover .teaser-box__subtitle {
  opacity: 1; }

.teaser-box__headline .headline {
  font-size: 28px;
  font-size: 1.5555555556rem;
  line-height: 1.1428571429; }
  @media screen and (min-width: 1024px) {
    .teaser-box__headline .headline {
      font-size: 35px;
      font-size: 1.9444444444rem;
      line-height: 1.8285714286; } }

.icon--signet {
  width: 70px;
  height: 70px;
  background-size: 100% auto;
  position: relative; }
  @media screen and (min-width: 1024px) {
    .icon--signet {
      width: 100px;
      height: 100px; } }

.signet {
  position: relative; }
  .signet:before {
    content: '';
    position: absolute;
    height: 1px;
    background-color: #ccc;
    top: 50%;
    left: 20%;
    right: 20%; }

.icon--xing, .icon--linkedin {
  height: 30px;
  width: 30px; }

.news-text {
  max-width: 680px; }

.news-item {
  border-bottom: 1px solid #c7c7c7;
  position: relative;
  margin-bottom: 96px; }
  .news-item figure {
    margin: 0; }

.info {
  border-bottom: 2px solid #e63128;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-size: 0.7777777778rem;
  line-height: 2.2857142857; }

time {
  float: right; }

.link--more {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 100%;
  color: #fff;
  background-color: #000;
  padding: 8px 64px; }
  .link--more:hover {
    background-color: #e63128;
    color: #fff;
    text-decoration: none; }

.nav-seperator:before {
  content: '';
  height: 100%;
  width: 1px;
  background: #c7c7c7;
  position: absolute;
  display: block;
  left: -30px;
  top: 0; }

.link--unstyled {
  display: block;
  color: inherit;
  text-decoration: none; }
  .link--unstyled:hover {
    color: inherit;
    text-decoration: none; }

.media--desk .media__img {
  float: none;
  margin-bottom: 32px; }
  @media screen and (min-width: 1024px) {
    .media--desk .media__img {
      float: left;
      margin-bottom: 0; } }

.customer-intro {
  color: #fff;
  background: #e63128;
  padding: 64px 64px; }
  .customer-intro .headline {
    color: #fff; }

@media screen and (min-width: 1024px) {
  .customer-info .info {
    margin-bottom: 0; }
 }

.customer-task {
  border: 1px solid #c7c7c7;
  position: relative; }
  .customer-task h2 {
    border-bottom: 2px solid #e63128;
    padding: 30px 0; }
  .customer-task__inner {
    padding: 0 40px; }
  @media screen and (min-width: 1024px) {
    .customer-task:before, .customer-task:after {
      content: '';
      width: 1px;
      height: 100%;
      background: #c7c7c7;
      position: absolute;
      top: 0;
      z-index: -1; }

    .customer-task:after {
      right: 33.33333333%; }

    .customer-task:before {
      left: 33.33333333%; }
 }

.customer-logo {
  text-align: center;
  margin-bottom: 32px; }
  .customer-logo img {
    display: inline-block;
    vertical-align: bottom;
    padding: 32px; }

.lightbox__inner {
  background-position: center;
  position: relative; }
  .lightbox__inner img {
    display: block; }
  .lightbox__inner:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #e63128;
    display: none;
    background-position: center;
    opacity: 0;
    display: block;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }
  .lightbox__inner:hover:after {
    opacity: 0.8; }

.image-info {
  border-top: 1px solid #c7c7c7;
  position: relative;
  margin-top: 16px;
  padding: 0 40px 0 0; }

.download-img {
  display: block;
  text-indent: -9999em;
  background-color: #000;
  background-position: center;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease; }
  .download-img:hover {
    background-color: #e63128; }

.button {
  font-size: 18px;
  font-size: 1rem;
  padding: 0 48px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  letter-spacing: -0.5px;
  line-height: 48px; }

.button--big {
  padding: 8px 64px; }

.formbody {
  text-align: center; }

label {
  display: none; }

textarea {
  width: 100%;
  padding: 96px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  border: 1px solid #c7c7c7;
  box-shadow: inset 1px 1px 3px 0px #ccc;
  resize: none;
  outline: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  font-size: 22px;
  font-size: 1.2222222222rem;
  margin-bottom: 64px;
  -webkit-transition: height 0.3s;
  transition: height 0.3s; }

.hidden-area:not(.hidden-area--active) *:not(.submit_container) {
  display: none; }

.hidden-area {
  -webkit-transition: 0.3s;
  transition: 0.3s; }

.hidden-area--active {
  padding: 32px 0;
  background: #e63128;
  color: #fff; }
  .hidden-area--active .headline {
    color: #fff; }
  .hidden-area--active input[type=email] {
    color: #191919;
    margin: 0 auto 32px;
    width: 80%; }
  .hidden-area--active input[type=submit] {
    background: #e63128;
    border: 1px solid #fff; }
    .hidden-area--active input[type=submit]:hover {
      background: #fff;
      color: #e63128; }

fieldset {
  border: 0; }

input[type=email] {
  margin-bottom: 32px;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  border: 1px solid #c7c7c7;
  box-shadow: inset 1px 1px 3px 0px #ccc; }
  @media screen and (min-width: 721px) {
    input[type=email] {
      width: 70%; } }

input[type=submit] {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  font-smoothing: antialiased; }

input[type=submit]:focus, input[type=email]:focus, textarea:focus {
  outline: 0; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000001;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000002;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1000004; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1000003; }

.mfp-preloader a {
  color: #cccccc; }

.mfp-preloader a:hover {
  color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1000005;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover, .mfp-close:focus {
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px; }

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px; }

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444; }

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  .mfp-img-mobile .mfp-figure {
    /* The shadow behind the image */ }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; }
 }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; }
 }

.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

.mfp-figure {
  position: relative; }

.mfp-bg {
  background: #fff;
  filter: alpha(opacity=100);
  opacity: 1; }

.mfp-figure:after {
  display: none; }

.mfp-counter, .mfp-close {
  color: #000 !important; }

.mfp-close {
  border-bottom: 2px solid #e63128 !important;
  padding-right: 0 !important;
  right: 0 !important;
  top: -20px;
  color: #e63128 !important;
  filter: alpha(opacity=100);
  opacity: 1; }
  .mfp-close:active {
    top: -19px; }

.mfp-image-holder .mfp-content {
  max-width: 1024px; }

.mfp-arrow:before {
  border: 0 !important; }

.mfp-arrow:after {
  border: 0 !important; }

button.mfp-arrow {
  background-color: #191919;
  background-position: center center;
  opacity: 1;
  height: 90px; }

@media screen and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.5);
    transform: scale(0.5); } }

body.mfp-zoom-out-cur {
  cursor: default; }

.customer-tile__outer {
  border-left: 1px solid #c7c7c7;
  border-top: 1px solid #c7c7c7;
  background-color: #6e6e6d; }

.customer-tile {
  position: relative;
  background-color: #fff;
  border-right: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  text-align: center;
  color: #e63128;
  height: 170px;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  font-size: 22px;
  font-size: 1.2222222222rem;
  line-height: 1.4545454545;
  display: block; }
  .customer-tile:before {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    content: '';
    left: -1px;
    top: -1px;
    right: -1px;
    bottom: -1px;
    z-index: 9999; }
  .customer-tile:hover:before {
    background: #e63128; }
  .customer-tile:hover .customer-name {
    position: relative;
    color: #fff;
    z-index: 10000; }

.customer-tile--fake:after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  content: '';
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  z-index: 0;
  background: #EFEFEF;
  border: 1px solid #c7c7c7; }
.customer-tile--fake:hover:before {
  display: none; }

.customer-name {
  padding: 0 60px; }

.splitted-list {
  margin-top: 64px; }
  .splitted-list li {
    position: relative;
    width: 100%;
    display: inline-block;
    margin-right: -3px; }
    @media screen and (min-width: 1024px) {
      .splitted-list li {
        width: 50%; } }
    .splitted-list li:before {
      content: '\2022';
      position: absolute;
      left: -15px;
      color: #e63128; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 9999; }

.slick-slider:before, .slick-slider:after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5%;
  content: '';
  z-index: 10000; }

.slider--images img {
  margin: 0; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  z-index: 9999; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-list, .slick-track, .slick-slide, .slick-slide img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  zoom: 1; }

.slick-track:before, .slick-track:after {
  content: "";
  display: table; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

/* Arrows */
.slick-prev, .slick-next {
  position: absolute;
  display: block;
  height: 52px;
  width: 52px;
  border-radius: 50%;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background-color: #191919;
  background-position: center center;
  color: transparent;
  top: 50%;
  margin-top: -26px;
  padding: 0;
  border: none;
  outline: none;
  z-index: 10001; }

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  outline: none;
  color: transparent; }

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  opacity: 1; }

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: 0.25; }

.slick-prev:before, .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -15px; }

.slider--images .slick-prev {
  left: 100px; }

.slick-next {
  right: -15px; }

.slider--images .slick-next {
  right: 100px; }

/* Dots */
.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -64px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%; }

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer; }

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer; }

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none; }

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1; }

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\2022";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 40px;
  line-height: 20px;
  text-align: center;
  color: #191919;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-dots li.slick-active button:before {
  color: #e63128; }

[dir="rtl"] .slick-next {
  right: auto;
  left: -25px; }

[dir="rtl"] .slick-next:before {
  content: "\2190"; }

[dir="rtl"] .slick-prev {
  right: -25px;
  left: auto; }

[dir="rtl"] .slick-prev:before {
  content: "\2192"; }

[dir="rtl"] .slick-slide {
  float: right; }

/* Custom Overrides */
.slick-slide {
  text-align: center; }

.slick-slide img {
  display: inline-block; }

.slick-dots {
  margin-left: 0; }

button.slick-prev:hover, button.slick-next:hover {
  -webkit-animation: pop 1005ms linear both;
  animation: pop 1005ms linear both;
  background-color: #e63128; }

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

/* Generated with Bounce.js. Edit at http://goo.gl/gUHcbZ */
@-webkit-keyframes pop {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  3.333333% {
    -webkit-transform: matrix3d(1.09178, 0, 0, 0, 0, 1.09178, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.09178, 0, 0, 0, 0, 1.09178, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  6.666667% {
    -webkit-transform: matrix3d(1.1166, 0, 0, 0, 0, 1.1166, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.1166, 0, 0, 0, 0, 1.1166, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  10% {
    -webkit-transform: matrix3d(1.09351, 0, 0, 0, 0, 1.09351, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.09351, 0, 0, 0, 0, 1.09351, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  13.333333% {
    -webkit-transform: matrix3d(1.05598, 0, 0, 0, 0, 1.05598, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.05598, 0, 0, 0, 0, 1.05598, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  16.666667% {
    -webkit-transform: matrix3d(1.02303, 0, 0, 0, 0, 1.02303, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.02303, 0, 0, 0, 0, 1.02303, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  20% {
    -webkit-transform: matrix3d(1.00173, 0, 0, 0, 0, 1.00173, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00173, 0, 0, 0, 0, 1.00173, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  23.333333% {
    -webkit-transform: matrix3d(0.99181, 0, 0, 0, 0, 0.99181, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99181, 0, 0, 0, 0, 0.99181, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  26.666667% {
    -webkit-transform: matrix3d(0.98981, 0, 0, 0, 0, 0.98981, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.98981, 0, 0, 0, 0, 0.98981, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  30% {
    -webkit-transform: matrix3d(0.99191, 0, 0, 0, 0, 0.99191, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99191, 0, 0, 0, 0, 0.99191, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  33.333333% {
    -webkit-transform: matrix3d(0.9952, 0, 0, 0, 0, 0.9952, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.9952, 0, 0, 0, 0, 0.9952, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  36.666667% {
    -webkit-transform: matrix3d(0.99806, 0, 0, 0, 0, 0.99806, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99806, 0, 0, 0, 0, 0.99806, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  40% {
    -webkit-transform: matrix3d(0.99989, 0, 0, 0, 0, 0.99989, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99989, 0, 0, 0, 0, 0.99989, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  43.333333% {
    -webkit-transform: matrix3d(1.00073, 0, 0, 0, 0, 1.00073, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00073, 0, 0, 0, 0, 1.00073, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  46.666667% {
    -webkit-transform: matrix3d(1.00089, 0, 0, 0, 0, 1.00089, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00089, 0, 0, 0, 0, 1.00089, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  50% {
    -webkit-transform: matrix3d(1.0007, 0, 0, 0, 0, 1.0007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.0007, 0, 0, 0, 0, 1.0007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  53.333333% {
    -webkit-transform: matrix3d(1.00041, 0, 0, 0, 0, 1.00041, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00041, 0, 0, 0, 0, 1.00041, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  56.666667% {
    -webkit-transform: matrix3d(1.00016, 0, 0, 0, 0, 1.00016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00016, 0, 0, 0, 0, 1.00016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  60% {
    -webkit-transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  63.333333% {
    -webkit-transform: matrix3d(0.99993, 0, 0, 0, 0, 0.99993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99993, 0, 0, 0, 0, 0.99993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  66.666667% {
    -webkit-transform: matrix3d(0.99992, 0, 0, 0, 0, 0.99992, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99992, 0, 0, 0, 0, 0.99992, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  70% {
    -webkit-transform: matrix3d(0.99994, 0, 0, 0, 0, 0.99994, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99994, 0, 0, 0, 0, 0.99994, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  73.333333% {
    -webkit-transform: matrix3d(0.99996, 0, 0, 0, 0, 0.99996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99996, 0, 0, 0, 0, 0.99996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  76.666667% {
    -webkit-transform: matrix3d(0.99999, 0, 0, 0, 0, 0.99999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99999, 0, 0, 0, 0, 0.99999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  80% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  83.333333% {
    -webkit-transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  86.666667% {
    -webkit-transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  90% {
    -webkit-transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  93.333333% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  96.666667% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } }

/* Generated with Bounce.js. Edit at http://goo.gl/gUHcbZ */
@keyframes pop {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  3.333333% {
    -webkit-transform: matrix3d(1.09178, 0, 0, 0, 0, 1.09178, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.09178, 0, 0, 0, 0, 1.09178, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  6.666667% {
    -webkit-transform: matrix3d(1.1166, 0, 0, 0, 0, 1.1166, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.1166, 0, 0, 0, 0, 1.1166, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  10% {
    -webkit-transform: matrix3d(1.09351, 0, 0, 0, 0, 1.09351, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.09351, 0, 0, 0, 0, 1.09351, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  13.333333% {
    -webkit-transform: matrix3d(1.05598, 0, 0, 0, 0, 1.05598, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.05598, 0, 0, 0, 0, 1.05598, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  16.666667% {
    -webkit-transform: matrix3d(1.02303, 0, 0, 0, 0, 1.02303, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.02303, 0, 0, 0, 0, 1.02303, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  20% {
    -webkit-transform: matrix3d(1.00173, 0, 0, 0, 0, 1.00173, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00173, 0, 0, 0, 0, 1.00173, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  23.333333% {
    -webkit-transform: matrix3d(0.99181, 0, 0, 0, 0, 0.99181, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99181, 0, 0, 0, 0, 0.99181, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  26.666667% {
    -webkit-transform: matrix3d(0.98981, 0, 0, 0, 0, 0.98981, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.98981, 0, 0, 0, 0, 0.98981, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  30% {
    -webkit-transform: matrix3d(0.99191, 0, 0, 0, 0, 0.99191, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99191, 0, 0, 0, 0, 0.99191, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  33.333333% {
    -webkit-transform: matrix3d(0.9952, 0, 0, 0, 0, 0.9952, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.9952, 0, 0, 0, 0, 0.9952, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  36.666667% {
    -webkit-transform: matrix3d(0.99806, 0, 0, 0, 0, 0.99806, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99806, 0, 0, 0, 0, 0.99806, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  40% {
    -webkit-transform: matrix3d(0.99989, 0, 0, 0, 0, 0.99989, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99989, 0, 0, 0, 0, 0.99989, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  43.333333% {
    -webkit-transform: matrix3d(1.00073, 0, 0, 0, 0, 1.00073, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00073, 0, 0, 0, 0, 1.00073, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  46.666667% {
    -webkit-transform: matrix3d(1.00089, 0, 0, 0, 0, 1.00089, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00089, 0, 0, 0, 0, 1.00089, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  50% {
    -webkit-transform: matrix3d(1.0007, 0, 0, 0, 0, 1.0007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.0007, 0, 0, 0, 0, 1.0007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  53.333333% {
    -webkit-transform: matrix3d(1.00041, 0, 0, 0, 0, 1.00041, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00041, 0, 0, 0, 0, 1.00041, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  56.666667% {
    -webkit-transform: matrix3d(1.00016, 0, 0, 0, 0, 1.00016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00016, 0, 0, 0, 0, 1.00016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  60% {
    -webkit-transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  63.333333% {
    -webkit-transform: matrix3d(0.99993, 0, 0, 0, 0, 0.99993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99993, 0, 0, 0, 0, 0.99993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  66.666667% {
    -webkit-transform: matrix3d(0.99992, 0, 0, 0, 0, 0.99992, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99992, 0, 0, 0, 0, 0.99992, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  70% {
    -webkit-transform: matrix3d(0.99994, 0, 0, 0, 0, 0.99994, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99994, 0, 0, 0, 0, 0.99994, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  73.333333% {
    -webkit-transform: matrix3d(0.99996, 0, 0, 0, 0, 0.99996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99996, 0, 0, 0, 0, 0.99996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  76.666667% {
    -webkit-transform: matrix3d(0.99999, 0, 0, 0, 0, 0.99999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99999, 0, 0, 0, 0, 0.99999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  80% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  83.333333% {
    -webkit-transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  86.666667% {
    -webkit-transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  90% {
    -webkit-transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00001, 0, 0, 0, 0, 1.00001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  93.333333% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  96.666667% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }

  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } }

.pagination a, .pagination span {
  width: 26px;
  height: 26px;
  margin: 0 5px;
  color: #6e6e6d;
  line-height: 24px;
  text-align: center; }
.pagination a:hover {
  background-color: #e63128;
  color: #fff;
  text-decoration: none; }
.pagination li {
  border-right: 1px solid #c7c7c7; }
  .pagination li:last-child {
    border-right: none; }
.pagination span {
  display: inline-block;
  background-color: #191919;
  color: #fff; }

.team__desk-image {
  position: relative;
  z-index: 9999; }

@media screen and (min-width: 721px) and (max-width: 1024px) {
  .team-image-mobile {
    padding-left: 20%; } }

.reason-table p {
  border: 1px solid #c7c7c7;
  margin: -1px 0 0;
  padding: 30px 30px 30px 100px;
  position: relative; }
  @media screen and (min-width: 481px) {
    .reason-table p {
      padding: 30px 30px 30px 145px; } }
  .reason-table p:before {
    content: '';
    width: 70px;
    min-height: 70px;
    background: #e63128;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-position: center;
    border-right: 1px solid #c7c7c7; }
    @media screen and (min-width: 481px) {
      .reason-table p:before {
        width: 115px;
        min-height: 115px; } }

.border-list {
  margin-top: 64px; }
  .border-list ul {
    border: 1px solid #c7c7c7;
    width: 100%;
    max-width: 360px;
    margin: auto;
    list-style: none; }
  .border-list li {
    padding-left: 30px;
    line-height: 42px;
    border-bottom: 1px solid #c7c7c7;
    margin-bottom: -1px; }
    .border-list li:before {
      left: 13px !important; }

.footer {
  background-color: #191919;
  color: #fff;
  padding: 128px 16px;
  text-align: left;
  overflow: hidden; }
  @media screen and (min-width: 1024px) {
    .footer {
      padding: 128px 64px; } }
  .footer .constrain {
    margin-bottom: 0; }
  .footer a {
    color: #fff; }
    .footer a:hover {
      text-decoration: underline;
      color: #e63128; }

.icon--xing {
  margin-right: 5px; }

.partner {
  text-align: center;
  margin: 20px 0; }
  @media screen and (min-width: 721px) {
    .partner {
      margin: 0 0 20px;
      text-align: right; } }
  .partner a {
    margin: 10px 0;
    display: block; }

.tooltipContainer {
  display: none;
  position: fixed;
  background: #FFF;
  bottom: 20px;
  right: 20px;
  color: #000;
  font-size: 13px;
  padding: 5px 10px; }
  @media screen and (min-width: 1024px) {
    .tooltipContainer {
      display: block; } }
  .tooltipContainer:after {
    content: '';
    bottom: -6px;
    right: 10px;
    width: 0;
    height: 0;
    border-top: 6px solid #FFF;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    display: block; }

@media screen and (min-width: 481px) {
  .width-tab--0 {
    width: 0% !important;
    display: none; }

  .width-tab--1of1, .width-tab--2of2, .width-tab--3of3, .width-tab--4of4, .width-tab--5of5, .width-tab--6of6 {
    width: 100% !important;
    display: inline-block; }

  .width-tab--1of2, .width-tab--2of4, .width-tab--3of6, .width-tab--4of8, .width-tab--5of10, .width-tab--6of12 {
    width: 50% !important;
    display: inline-block; }

  .width-tab--1of3, .width-tab--2of6, .width-tab--3of9, .width-tab--4of12 {
    width: 33.33333% !important;
    display: inline-block; }

  .width-tab--2of3, .width-tab--4of6, .width-tab--6of9, .width-tab--8of12 {
    width: 66.66666% !important;
    display: inline-block; }

  .width-tab--1of4, .width-tab--2of8, .width-tab--3of12 {
    width: 25% !important;
    display: inline-block; }

  .width-tab--3of4, .width-tab--6of8, .width-tab--9of12 {
    width: 75% !important;
    display: inline-block; }

  .width-tab--1of5, .width-tab--2of10 {
    width: 20% !important;
    display: inline-block; }

  .width-tab--2of5, .width-tab--4of10 {
    width: 40% !important;
    display: inline-block; }

  .width-tab--3of5, .width-tab--6of10 {
    width: 60% !important;
    display: inline-block; }

  .width-tab--4of5, .width-tab--8of10 {
    width: 80% !important;
    display: inline-block; }

  .width-tab--1of6, .width-tab--2of12 {
    width: 16.66666% !important;
    display: inline-block; }

  .width-tab--5of6, .width-tab--10of12 {
    width: 83.33333% !important;
    display: inline-block; }

  .width-tab--1of8 {
    width: 12.5% !important;
    display: inline-block; }

  .width-tab--3of8 {
    width: 37.5% !important;
    display: inline-block; }

  .width-tab--5of8 {
    width: 62.5% !important;
    display: inline-block; }

  .width-tab--7of8 {
    width: 87.5% !important;
    display: inline-block; }

  .width-tab--1of9 {
    width: 11.1111111% !important;
    display: inline-block; }

  .width-tab--2of9 {
    width: 22.2222222% !important;
    display: inline-block; }

  .width-tab--4of9 {
    width: 44.4444444% !important;
    display: inline-block; }

  .width-tab--5of9 {
    width: 55.5555555% !important;
    display: inline-block; }

  .width-tab--7of9 {
    width: 77.7777777% !important;
    display: inline-block; }

  .width-tab--8of9 {
    width: 88.8888888% !important;
    display: inline-block; }

  .width-tab--1of10 {
    width: 10% !important;
    display: inline-block; }

  .width-tab--3of10 {
    width: 30% !important;
    display: inline-block; }

  .width-tab--7of10 {
    width: 70% !important;
    display: inline-block; }

  .width-tab--9of10 {
    width: 90% !important;
    display: inline-block; }

  .width-tab--1of12 {
    width: 8.3333333% !important;
    display: inline-block; }

  .width-tab--5of12 {
    width: 41.6666666% !important;
    display: inline-block; }

  .width-tab--7of12 {
    width: 58.3333333% !important;
    display: inline-block; }

  .width-tab--11of12 {
    width: 91.6666666% !important;
    display: inline-block; }
 }

.lt-ie9 .width-tab--0 {
  width: 0% !important;
  display: none; }
.lt-ie9 .width-tab--1of1, .lt-ie9 .width-tab--2of2, .lt-ie9 .width-tab--3of3, .lt-ie9 .width-tab--4of4, .lt-ie9 .width-tab--5of5, .lt-ie9 .width-tab--6of6 {
  width: 100% !important;
  display: inline-block; }
.lt-ie9 .width-tab--1of2, .lt-ie9 .width-tab--2of4, .lt-ie9 .width-tab--3of6, .lt-ie9 .width-tab--4of8, .lt-ie9 .width-tab--5of10, .lt-ie9 .width-tab--6of12 {
  width: 50% !important;
  display: inline-block; }
.lt-ie9 .width-tab--1of3, .lt-ie9 .width-tab--2of6, .lt-ie9 .width-tab--3of9, .lt-ie9 .width-tab--4of12 {
  width: 33.33333% !important;
  display: inline-block; }
.lt-ie9 .width-tab--2of3, .lt-ie9 .width-tab--4of6, .lt-ie9 .width-tab--6of9, .lt-ie9 .width-tab--8of12 {
  width: 66.66666% !important;
  display: inline-block; }
.lt-ie9 .width-tab--1of4, .lt-ie9 .width-tab--2of8, .lt-ie9 .width-tab--3of12 {
  width: 25% !important;
  display: inline-block; }
.lt-ie9 .width-tab--3of4, .lt-ie9 .width-tab--6of8, .lt-ie9 .width-tab--9of12 {
  width: 75% !important;
  display: inline-block; }
.lt-ie9 .width-tab--1of5, .lt-ie9 .width-tab--2of10 {
  width: 20% !important;
  display: inline-block; }
.lt-ie9 .width-tab--2of5, .lt-ie9 .width-tab--4of10 {
  width: 40% !important;
  display: inline-block; }
.lt-ie9 .width-tab--3of5, .lt-ie9 .width-tab--6of10 {
  width: 60% !important;
  display: inline-block; }
.lt-ie9 .width-tab--4of5, .lt-ie9 .width-tab--8of10 {
  width: 80% !important;
  display: inline-block; }
.lt-ie9 .width-tab--1of6, .lt-ie9 .width-tab--2of12 {
  width: 16.66666% !important;
  display: inline-block; }
.lt-ie9 .width-tab--5of6, .lt-ie9 .width-tab--10of12 {
  width: 83.33333% !important;
  display: inline-block; }
.lt-ie9 .width-tab--1of8 {
  width: 12.5% !important;
  display: inline-block; }
.lt-ie9 .width-tab--3of8 {
  width: 37.5% !important;
  display: inline-block; }
.lt-ie9 .width-tab--5of8 {
  width: 62.5% !important;
  display: inline-block; }
.lt-ie9 .width-tab--7of8 {
  width: 87.5% !important;
  display: inline-block; }
.lt-ie9 .width-tab--1of9 {
  width: 11.1111111% !important;
  display: inline-block; }
.lt-ie9 .width-tab--2of9 {
  width: 22.2222222% !important;
  display: inline-block; }
.lt-ie9 .width-tab--4of9 {
  width: 44.4444444% !important;
  display: inline-block; }
.lt-ie9 .width-tab--5of9 {
  width: 55.5555555% !important;
  display: inline-block; }
.lt-ie9 .width-tab--7of9 {
  width: 77.7777777% !important;
  display: inline-block; }
.lt-ie9 .width-tab--8of9 {
  width: 88.8888888% !important;
  display: inline-block; }
.lt-ie9 .width-tab--1of10 {
  width: 10% !important;
  display: inline-block; }
.lt-ie9 .width-tab--3of10 {
  width: 30% !important;
  display: inline-block; }
.lt-ie9 .width-tab--7of10 {
  width: 70% !important;
  display: inline-block; }
.lt-ie9 .width-tab--9of10 {
  width: 90% !important;
  display: inline-block; }
.lt-ie9 .width-tab--1of12 {
  width: 8.3333333% !important;
  display: inline-block; }
.lt-ie9 .width-tab--5of12 {
  width: 41.6666666% !important;
  display: inline-block; }
.lt-ie9 .width-tab--7of12 {
  width: 58.3333333% !important;
  display: inline-block; }
.lt-ie9 .width-tab--11of12 {
  width: 91.6666666% !important;
  display: inline-block; }

@media screen and (min-width: 721px) {
  .width-lap--0 {
    width: 0% !important;
    display: none; }

  .width-lap--1of1, .width-lap--2of2, .width-lap--3of3, .width-lap--4of4, .width-lap--5of5, .width-lap--6of6 {
    width: 100% !important;
    display: inline-block; }

  .width-lap--1of2, .width-lap--2of4, .width-lap--3of6, .width-lap--4of8, .width-lap--5of10, .width-lap--6of12 {
    width: 50% !important;
    display: inline-block; }

  .width-lap--1of3, .width-lap--2of6, .width-lap--3of9, .width-lap--4of12 {
    width: 33.33333% !important;
    display: inline-block; }

  .width-lap--2of3, .width-lap--4of6, .width-lap--6of9, .width-lap--8of12 {
    width: 66.66666% !important;
    display: inline-block; }

  .width-lap--1of4, .width-lap--2of8, .width-lap--3of12 {
    width: 25% !important;
    display: inline-block; }

  .width-lap--3of4, .width-lap--6of8, .width-lap--9of12 {
    width: 75% !important;
    display: inline-block; }

  .width-lap--1of5, .width-lap--2of10 {
    width: 20% !important;
    display: inline-block; }

  .width-lap--2of5, .width-lap--4of10 {
    width: 40% !important;
    display: inline-block; }

  .width-lap--3of5, .width-lap--6of10 {
    width: 60% !important;
    display: inline-block; }

  .width-lap--4of5, .width-lap--8of10 {
    width: 80% !important;
    display: inline-block; }

  .width-lap--1of6, .width-lap--2of12 {
    width: 16.66666% !important;
    display: inline-block; }

  .width-lap--5of6, .width-lap--10of12 {
    width: 83.33333% !important;
    display: inline-block; }

  .width-lap--1of8 {
    width: 12.5% !important;
    display: inline-block; }

  .width-lap--3of8 {
    width: 37.5% !important;
    display: inline-block; }

  .width-lap--5of8 {
    width: 62.5% !important;
    display: inline-block; }

  .width-lap--7of8 {
    width: 87.5% !important;
    display: inline-block; }

  .width-lap--1of9 {
    width: 11.1111111% !important;
    display: inline-block; }

  .width-lap--2of9 {
    width: 22.2222222% !important;
    display: inline-block; }

  .width-lap--4of9 {
    width: 44.4444444% !important;
    display: inline-block; }

  .width-lap--5of9 {
    width: 55.5555555% !important;
    display: inline-block; }

  .width-lap--7of9 {
    width: 77.7777777% !important;
    display: inline-block; }

  .width-lap--8of9 {
    width: 88.8888888% !important;
    display: inline-block; }

  .width-lap--1of10 {
    width: 10% !important;
    display: inline-block; }

  .width-lap--3of10 {
    width: 30% !important;
    display: inline-block; }

  .width-lap--7of10 {
    width: 70% !important;
    display: inline-block; }

  .width-lap--9of10 {
    width: 90% !important;
    display: inline-block; }

  .width-lap--1of12 {
    width: 8.3333333% !important;
    display: inline-block; }

  .width-lap--5of12 {
    width: 41.6666666% !important;
    display: inline-block; }

  .width-lap--7of12 {
    width: 58.3333333% !important;
    display: inline-block; }

  .width-lap--11of12 {
    width: 91.6666666% !important;
    display: inline-block; }
 }

.lt-ie9 .width-lap--0 {
  width: 0% !important;
  display: none; }
.lt-ie9 .width-lap--1of1, .lt-ie9 .width-lap--2of2, .lt-ie9 .width-lap--3of3, .lt-ie9 .width-lap--4of4, .lt-ie9 .width-lap--5of5, .lt-ie9 .width-lap--6of6 {
  width: 100% !important;
  display: inline-block; }
.lt-ie9 .width-lap--1of2, .lt-ie9 .width-lap--2of4, .lt-ie9 .width-lap--3of6, .lt-ie9 .width-lap--4of8, .lt-ie9 .width-lap--5of10, .lt-ie9 .width-lap--6of12 {
  width: 50% !important;
  display: inline-block; }
.lt-ie9 .width-lap--1of3, .lt-ie9 .width-lap--2of6, .lt-ie9 .width-lap--3of9, .lt-ie9 .width-lap--4of12 {
  width: 33.33333% !important;
  display: inline-block; }
.lt-ie9 .width-lap--2of3, .lt-ie9 .width-lap--4of6, .lt-ie9 .width-lap--6of9, .lt-ie9 .width-lap--8of12 {
  width: 66.66666% !important;
  display: inline-block; }
.lt-ie9 .width-lap--1of4, .lt-ie9 .width-lap--2of8, .lt-ie9 .width-lap--3of12 {
  width: 25% !important;
  display: inline-block; }
.lt-ie9 .width-lap--3of4, .lt-ie9 .width-lap--6of8, .lt-ie9 .width-lap--9of12 {
  width: 75% !important;
  display: inline-block; }
.lt-ie9 .width-lap--1of5, .lt-ie9 .width-lap--2of10 {
  width: 20% !important;
  display: inline-block; }
.lt-ie9 .width-lap--2of5, .lt-ie9 .width-lap--4of10 {
  width: 40% !important;
  display: inline-block; }
.lt-ie9 .width-lap--3of5, .lt-ie9 .width-lap--6of10 {
  width: 60% !important;
  display: inline-block; }
.lt-ie9 .width-lap--4of5, .lt-ie9 .width-lap--8of10 {
  width: 80% !important;
  display: inline-block; }
.lt-ie9 .width-lap--1of6, .lt-ie9 .width-lap--2of12 {
  width: 16.66666% !important;
  display: inline-block; }
.lt-ie9 .width-lap--5of6, .lt-ie9 .width-lap--10of12 {
  width: 83.33333% !important;
  display: inline-block; }
.lt-ie9 .width-lap--1of8 {
  width: 12.5% !important;
  display: inline-block; }
.lt-ie9 .width-lap--3of8 {
  width: 37.5% !important;
  display: inline-block; }
.lt-ie9 .width-lap--5of8 {
  width: 62.5% !important;
  display: inline-block; }
.lt-ie9 .width-lap--7of8 {
  width: 87.5% !important;
  display: inline-block; }
.lt-ie9 .width-lap--1of9 {
  width: 11.1111111% !important;
  display: inline-block; }
.lt-ie9 .width-lap--2of9 {
  width: 22.2222222% !important;
  display: inline-block; }
.lt-ie9 .width-lap--4of9 {
  width: 44.4444444% !important;
  display: inline-block; }
.lt-ie9 .width-lap--5of9 {
  width: 55.5555555% !important;
  display: inline-block; }
.lt-ie9 .width-lap--7of9 {
  width: 77.7777777% !important;
  display: inline-block; }
.lt-ie9 .width-lap--8of9 {
  width: 88.8888888% !important;
  display: inline-block; }
.lt-ie9 .width-lap--1of10 {
  width: 10% !important;
  display: inline-block; }
.lt-ie9 .width-lap--3of10 {
  width: 30% !important;
  display: inline-block; }
.lt-ie9 .width-lap--7of10 {
  width: 70% !important;
  display: inline-block; }
.lt-ie9 .width-lap--9of10 {
  width: 90% !important;
  display: inline-block; }
.lt-ie9 .width-lap--1of12 {
  width: 8.3333333% !important;
  display: inline-block; }
.lt-ie9 .width-lap--5of12 {
  width: 41.6666666% !important;
  display: inline-block; }
.lt-ie9 .width-lap--7of12 {
  width: 58.3333333% !important;
  display: inline-block; }
.lt-ie9 .width-lap--11of12 {
  width: 91.6666666% !important;
  display: inline-block; }

@media screen and (min-width: 1024px) {
  .width-desk--0 {
    width: 0% !important;
    display: none; }

  .width-desk--1of1, .width-desk--2of2, .width-desk--3of3, .width-desk--4of4, .width-desk--5of5, .width-desk--6of6 {
    width: 100% !important;
    display: inline-block; }

  .width-desk--1of2, .width-desk--2of4, .width-desk--3of6, .width-desk--4of8, .width-desk--5of10, .width-desk--6of12 {
    width: 50% !important;
    display: inline-block; }

  .width-desk--1of3, .width-desk--2of6, .width-desk--3of9, .width-desk--4of12 {
    width: 33.33333% !important;
    display: inline-block; }

  .width-desk--2of3, .width-desk--4of6, .width-desk--6of9, .width-desk--8of12 {
    width: 66.66666% !important;
    display: inline-block; }

  .width-desk--1of4, .width-desk--2of8, .width-desk--3of12 {
    width: 25% !important;
    display: inline-block; }

  .width-desk--3of4, .width-desk--6of8, .width-desk--9of12 {
    width: 75% !important;
    display: inline-block; }

  .width-desk--1of5, .width-desk--2of10 {
    width: 20% !important;
    display: inline-block; }

  .width-desk--2of5, .width-desk--4of10 {
    width: 40% !important;
    display: inline-block; }

  .width-desk--3of5, .width-desk--6of10 {
    width: 60% !important;
    display: inline-block; }

  .width-desk--4of5, .width-desk--8of10 {
    width: 80% !important;
    display: inline-block; }

  .width-desk--1of6, .width-desk--2of12 {
    width: 16.66666% !important;
    display: inline-block; }

  .width-desk--5of6, .width-desk--10of12 {
    width: 83.33333% !important;
    display: inline-block; }

  .width-desk--1of8 {
    width: 12.5% !important;
    display: inline-block; }

  .width-desk--3of8 {
    width: 37.5% !important;
    display: inline-block; }

  .width-desk--5of8 {
    width: 62.5% !important;
    display: inline-block; }

  .width-desk--7of8 {
    width: 87.5% !important;
    display: inline-block; }

  .width-desk--1of9 {
    width: 11.1111111% !important;
    display: inline-block; }

  .width-desk--2of9 {
    width: 22.2222222% !important;
    display: inline-block; }

  .width-desk--4of9 {
    width: 44.4444444% !important;
    display: inline-block; }

  .width-desk--5of9 {
    width: 55.5555555% !important;
    display: inline-block; }

  .width-desk--7of9 {
    width: 77.7777777% !important;
    display: inline-block; }

  .width-desk--8of9 {
    width: 88.8888888% !important;
    display: inline-block; }

  .width-desk--1of10 {
    width: 10% !important;
    display: inline-block; }

  .width-desk--3of10 {
    width: 30% !important;
    display: inline-block; }

  .width-desk--7of10 {
    width: 70% !important;
    display: inline-block; }

  .width-desk--9of10 {
    width: 90% !important;
    display: inline-block; }

  .width-desk--1of12 {
    width: 8.3333333% !important;
    display: inline-block; }

  .width-desk--5of12 {
    width: 41.6666666% !important;
    display: inline-block; }

  .width-desk--7of12 {
    width: 58.3333333% !important;
    display: inline-block; }

  .width-desk--11of12 {
    width: 91.6666666% !important;
    display: inline-block; }
 }

.lt-ie9 .width-desk--0 {
  width: 0% !important;
  display: none; }
.lt-ie9 .width-desk--1of1, .lt-ie9 .width-desk--2of2, .lt-ie9 .width-desk--3of3, .lt-ie9 .width-desk--4of4, .lt-ie9 .width-desk--5of5, .lt-ie9 .width-desk--6of6 {
  width: 100% !important;
  display: inline-block; }
.lt-ie9 .width-desk--1of2, .lt-ie9 .width-desk--2of4, .lt-ie9 .width-desk--3of6, .lt-ie9 .width-desk--4of8, .lt-ie9 .width-desk--5of10, .lt-ie9 .width-desk--6of12 {
  width: 50% !important;
  display: inline-block; }
.lt-ie9 .width-desk--1of3, .lt-ie9 .width-desk--2of6, .lt-ie9 .width-desk--3of9, .lt-ie9 .width-desk--4of12 {
  width: 33.33333% !important;
  display: inline-block; }
.lt-ie9 .width-desk--2of3, .lt-ie9 .width-desk--4of6, .lt-ie9 .width-desk--6of9, .lt-ie9 .width-desk--8of12 {
  width: 66.66666% !important;
  display: inline-block; }
.lt-ie9 .width-desk--1of4, .lt-ie9 .width-desk--2of8, .lt-ie9 .width-desk--3of12 {
  width: 25% !important;
  display: inline-block; }
.lt-ie9 .width-desk--3of4, .lt-ie9 .width-desk--6of8, .lt-ie9 .width-desk--9of12 {
  width: 75% !important;
  display: inline-block; }
.lt-ie9 .width-desk--1of5, .lt-ie9 .width-desk--2of10 {
  width: 20% !important;
  display: inline-block; }
.lt-ie9 .width-desk--2of5, .lt-ie9 .width-desk--4of10 {
  width: 40% !important;
  display: inline-block; }
.lt-ie9 .width-desk--3of5, .lt-ie9 .width-desk--6of10 {
  width: 60% !important;
  display: inline-block; }
.lt-ie9 .width-desk--4of5, .lt-ie9 .width-desk--8of10 {
  width: 80% !important;
  display: inline-block; }
.lt-ie9 .width-desk--1of6, .lt-ie9 .width-desk--2of12 {
  width: 16.66666% !important;
  display: inline-block; }
.lt-ie9 .width-desk--5of6, .lt-ie9 .width-desk--10of12 {
  width: 83.33333% !important;
  display: inline-block; }
.lt-ie9 .width-desk--1of8 {
  width: 12.5% !important;
  display: inline-block; }
.lt-ie9 .width-desk--3of8 {
  width: 37.5% !important;
  display: inline-block; }
.lt-ie9 .width-desk--5of8 {
  width: 62.5% !important;
  display: inline-block; }
.lt-ie9 .width-desk--7of8 {
  width: 87.5% !important;
  display: inline-block; }
.lt-ie9 .width-desk--1of9 {
  width: 11.1111111% !important;
  display: inline-block; }
.lt-ie9 .width-desk--2of9 {
  width: 22.2222222% !important;
  display: inline-block; }
.lt-ie9 .width-desk--4of9 {
  width: 44.4444444% !important;
  display: inline-block; }
.lt-ie9 .width-desk--5of9 {
  width: 55.5555555% !important;
  display: inline-block; }
.lt-ie9 .width-desk--7of9 {
  width: 77.7777777% !important;
  display: inline-block; }
.lt-ie9 .width-desk--8of9 {
  width: 88.8888888% !important;
  display: inline-block; }
.lt-ie9 .width-desk--1of10 {
  width: 10% !important;
  display: inline-block; }
.lt-ie9 .width-desk--3of10 {
  width: 30% !important;
  display: inline-block; }
.lt-ie9 .width-desk--7of10 {
  width: 70% !important;
  display: inline-block; }
.lt-ie9 .width-desk--9of10 {
  width: 90% !important;
  display: inline-block; }
.lt-ie9 .width-desk--1of12 {
  width: 8.3333333% !important;
  display: inline-block; }
.lt-ie9 .width-desk--5of12 {
  width: 41.6666666% !important;
  display: inline-block; }
.lt-ie9 .width-desk--7of12 {
  width: 58.3333333% !important;
  display: inline-block; }
.lt-ie9 .width-desk--11of12 {
  width: 91.6666666% !important;
  display: inline-block; }

@media screen and (min-width: 1200px) {
  .width-desk-wide--0 {
    width: 0% !important;
    display: none; }

  .width-desk-wide--1of1, .width-desk-wide--2of2, .width-desk-wide--3of3, .width-desk-wide--4of4, .width-desk-wide--5of5, .width-desk-wide--6of6 {
    width: 100% !important;
    display: inline-block; }

  .width-desk-wide--1of2, .width-desk-wide--2of4, .width-desk-wide--3of6, .width-desk-wide--4of8, .width-desk-wide--5of10, .width-desk-wide--6of12 {
    width: 50% !important;
    display: inline-block; }

  .width-desk-wide--1of3, .width-desk-wide--2of6, .width-desk-wide--3of9, .width-desk-wide--4of12 {
    width: 33.33333% !important;
    display: inline-block; }

  .width-desk-wide--2of3, .width-desk-wide--4of6, .width-desk-wide--6of9, .width-desk-wide--8of12 {
    width: 66.66666% !important;
    display: inline-block; }

  .width-desk-wide--1of4, .width-desk-wide--2of8, .width-desk-wide--3of12 {
    width: 25% !important;
    display: inline-block; }

  .width-desk-wide--3of4, .width-desk-wide--6of8, .width-desk-wide--9of12 {
    width: 75% !important;
    display: inline-block; }

  .width-desk-wide--1of5, .width-desk-wide--2of10 {
    width: 20% !important;
    display: inline-block; }

  .width-desk-wide--2of5, .width-desk-wide--4of10 {
    width: 40% !important;
    display: inline-block; }

  .width-desk-wide--3of5, .width-desk-wide--6of10 {
    width: 60% !important;
    display: inline-block; }

  .width-desk-wide--4of5, .width-desk-wide--8of10 {
    width: 80% !important;
    display: inline-block; }

  .width-desk-wide--1of6, .width-desk-wide--2of12 {
    width: 16.66666% !important;
    display: inline-block; }

  .width-desk-wide--5of6, .width-desk-wide--10of12 {
    width: 83.33333% !important;
    display: inline-block; }

  .width-desk-wide--1of8 {
    width: 12.5% !important;
    display: inline-block; }

  .width-desk-wide--3of8 {
    width: 37.5% !important;
    display: inline-block; }

  .width-desk-wide--5of8 {
    width: 62.5% !important;
    display: inline-block; }

  .width-desk-wide--7of8 {
    width: 87.5% !important;
    display: inline-block; }

  .width-desk-wide--1of9 {
    width: 11.1111111% !important;
    display: inline-block; }

  .width-desk-wide--2of9 {
    width: 22.2222222% !important;
    display: inline-block; }

  .width-desk-wide--4of9 {
    width: 44.4444444% !important;
    display: inline-block; }

  .width-desk-wide--5of9 {
    width: 55.5555555% !important;
    display: inline-block; }

  .width-desk-wide--7of9 {
    width: 77.7777777% !important;
    display: inline-block; }

  .width-desk-wide--8of9 {
    width: 88.8888888% !important;
    display: inline-block; }

  .width-desk-wide--1of10 {
    width: 10% !important;
    display: inline-block; }

  .width-desk-wide--3of10 {
    width: 30% !important;
    display: inline-block; }

  .width-desk-wide--7of10 {
    width: 70% !important;
    display: inline-block; }

  .width-desk-wide--9of10 {
    width: 90% !important;
    display: inline-block; }

  .width-desk-wide--1of12 {
    width: 8.3333333% !important;
    display: inline-block; }

  .width-desk-wide--5of12 {
    width: 41.6666666% !important;
    display: inline-block; }

  .width-desk-wide--7of12 {
    width: 58.3333333% !important;
    display: inline-block; }

  .width-desk-wide--11of12 {
    width: 91.6666666% !important;
    display: inline-block; }
 }

.lt-ie9 .width-desk-wide--0 {
  width: 0% !important;
  display: none; }
.lt-ie9 .width-desk-wide--1of1, .lt-ie9 .width-desk-wide--2of2, .lt-ie9 .width-desk-wide--3of3, .lt-ie9 .width-desk-wide--4of4, .lt-ie9 .width-desk-wide--5of5, .lt-ie9 .width-desk-wide--6of6 {
  width: 100% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--1of2, .lt-ie9 .width-desk-wide--2of4, .lt-ie9 .width-desk-wide--3of6, .lt-ie9 .width-desk-wide--4of8, .lt-ie9 .width-desk-wide--5of10, .lt-ie9 .width-desk-wide--6of12 {
  width: 50% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--1of3, .lt-ie9 .width-desk-wide--2of6, .lt-ie9 .width-desk-wide--3of9, .lt-ie9 .width-desk-wide--4of12 {
  width: 33.33333% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--2of3, .lt-ie9 .width-desk-wide--4of6, .lt-ie9 .width-desk-wide--6of9, .lt-ie9 .width-desk-wide--8of12 {
  width: 66.66666% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--1of4, .lt-ie9 .width-desk-wide--2of8, .lt-ie9 .width-desk-wide--3of12 {
  width: 25% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--3of4, .lt-ie9 .width-desk-wide--6of8, .lt-ie9 .width-desk-wide--9of12 {
  width: 75% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--1of5, .lt-ie9 .width-desk-wide--2of10 {
  width: 20% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--2of5, .lt-ie9 .width-desk-wide--4of10 {
  width: 40% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--3of5, .lt-ie9 .width-desk-wide--6of10 {
  width: 60% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--4of5, .lt-ie9 .width-desk-wide--8of10 {
  width: 80% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--1of6, .lt-ie9 .width-desk-wide--2of12 {
  width: 16.66666% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--5of6, .lt-ie9 .width-desk-wide--10of12 {
  width: 83.33333% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--1of8 {
  width: 12.5% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--3of8 {
  width: 37.5% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--5of8 {
  width: 62.5% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--7of8 {
  width: 87.5% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--1of9 {
  width: 11.1111111% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--2of9 {
  width: 22.2222222% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--4of9 {
  width: 44.4444444% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--5of9 {
  width: 55.5555555% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--7of9 {
  width: 77.7777777% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--8of9 {
  width: 88.8888888% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--1of10 {
  width: 10% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--3of10 {
  width: 30% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--7of10 {
  width: 70% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--9of10 {
  width: 90% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--1of12 {
  width: 8.3333333% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--5of12 {
  width: 41.6666666% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--7of12 {
  width: 58.3333333% !important;
  display: inline-block; }
.lt-ie9 .width-desk-wide--11of12 {
  width: 91.6666666% !important;
  display: inline-block; }

@media screen and (min-width: 481px) {
  .text-tab--left {
    text-align: left; }

  .text-tab--right {
    text-align: right; }

  .text-tab--center {
    text-align: center; }
 }

.lt-ie9 .text-tab--left {
  text-align: left; }
.lt-ie9 .text-tab--right {
  text-align: right; }
.lt-ie9 .text-tab--center {
  text-align: center; }

@media screen and (min-width: 721px) {
  .text-lap--left {
    text-align: left; }

  .text-lap--right {
    text-align: right; }

  .text-lap--center {
    text-align: center; }
 }

.lt-ie9 .text-lap--left {
  text-align: left; }
.lt-ie9 .text-lap--right {
  text-align: right; }
.lt-ie9 .text-lap--center {
  text-align: center; }

@media screen and (min-width: 1024px) {
  .text-desk--left {
    text-align: left; }

  .text-desk--right {
    text-align: right; }

  .text-desk--center {
    text-align: center; }
 }

.lt-ie9 .text-desk--left {
  text-align: left; }
.lt-ie9 .text-desk--right {
  text-align: right; }
.lt-ie9 .text-desk--center {
  text-align: center; }

@media screen and (min-width: 1200px) {
  .text-desk-wide--left {
    text-align: left; }

  .text-desk-wide--right {
    text-align: right; }

  .text-desk-wide--center {
    text-align: center; }
 }

.lt-ie9 .text-desk-wide--left {
  text-align: left; }
.lt-ie9 .text-desk-wide--right {
  text-align: right; }
.lt-ie9 .text-desk-wide--center {
  text-align: center; }

@media screen and (min-width: 481px) {
  .space-tab--top-none {
    margin-top: 0px;
    margin-top: 0rem; }

  .space-tab--left-none {
    margin-left: 0px;
    margin-left: 0rem; }

  .space-tab--right-none {
    margin-right: 0px;
    margin-right: 0rem; }

  .space-tab--bottom-none {
    margin-bottom: 0px;
    margin-bottom: 0rem; }

  .space-tab--top-quarter {
    margin-top: 8px;
    margin-top: 0.44444rem; }

  .space-tab--left-quarter {
    margin-left: 8px;
    margin-left: 0.44444rem; }

  .space-tab--right-quarter {
    margin-right: 8px;
    margin-right: 0.44444rem; }

  .space-tab--bottom-quarter {
    margin-bottom: 8px;
    margin-bottom: 0.44444rem; }

  .space-tab--top-third {
    margin-top: 10.6666666666px;
    margin-top: 0.59259rem; }

  .space-tab--left-third {
    margin-left: 10.6666666666px;
    margin-left: 0.59259rem; }

  .space-tab--right-third {
    margin-right: 10.6666666666px;
    margin-right: 0.59259rem; }

  .space-tab--bottom-third {
    margin-bottom: 10.6666666666px;
    margin-bottom: 0.59259rem; }

  .space-tab--top-half {
    margin-top: 16px;
    margin-top: 0.88889rem; }

  .space-tab--left-half {
    margin-left: 16px;
    margin-left: 0.88889rem; }

  .space-tab--right-half {
    margin-right: 16px;
    margin-right: 0.88889rem; }

  .space-tab--bottom-half {
    margin-bottom: 16px;
    margin-bottom: 0.88889rem; }

  .space-tab--top {
    margin-top: 32px;
    margin-top: 1.77778rem; }

  .space-tab--left {
    margin-left: 32px;
    margin-left: 1.77778rem; }

  .space-tab--right {
    margin-right: 32px;
    margin-right: 1.77778rem; }

  .space-tab--bottom {
    margin-bottom: 32px;
    margin-bottom: 1.77778rem; }

  .space-tab--top-double {
    margin-top: 64px;
    margin-top: 3.55556rem; }

  .space-tab--left-double {
    margin-left: 64px;
    margin-left: 3.55556rem; }

  .space-tab--right-double {
    margin-right: 64px;
    margin-right: 3.55556rem; }

  .space-tab--bottom-double {
    margin-bottom: 64px;
    margin-bottom: 3.55556rem; }

  .space-tab--top-triple {
    margin-top: 96px;
    margin-top: 5.33333rem; }

  .space-tab--left-triple {
    margin-left: 96px;
    margin-left: 5.33333rem; }

  .space-tab--right-triple {
    margin-right: 96px;
    margin-right: 5.33333rem; }

  .space-tab--bottom-triple {
    margin-bottom: 96px;
    margin-bottom: 5.33333rem; }
 }

.lt-ie9 .space-tab--top-none {
  margin-top: 0px;
  margin-top: 0rem; }
.lt-ie9 .space-tab--left-none {
  margin-left: 0px;
  margin-left: 0rem; }
.lt-ie9 .space-tab--right-none {
  margin-right: 0px;
  margin-right: 0rem; }
.lt-ie9 .space-tab--bottom-none {
  margin-bottom: 0px;
  margin-bottom: 0rem; }
.lt-ie9 .space-tab--top-quarter {
  margin-top: 8px;
  margin-top: 0.44444rem; }
.lt-ie9 .space-tab--left-quarter {
  margin-left: 8px;
  margin-left: 0.44444rem; }
.lt-ie9 .space-tab--right-quarter {
  margin-right: 8px;
  margin-right: 0.44444rem; }
.lt-ie9 .space-tab--bottom-quarter {
  margin-bottom: 8px;
  margin-bottom: 0.44444rem; }
.lt-ie9 .space-tab--top-third {
  margin-top: 10.6666666666px;
  margin-top: 0.59259rem; }
.lt-ie9 .space-tab--left-third {
  margin-left: 10.6666666666px;
  margin-left: 0.59259rem; }
.lt-ie9 .space-tab--right-third {
  margin-right: 10.6666666666px;
  margin-right: 0.59259rem; }
.lt-ie9 .space-tab--bottom-third {
  margin-bottom: 10.6666666666px;
  margin-bottom: 0.59259rem; }
.lt-ie9 .space-tab--top-half {
  margin-top: 16px;
  margin-top: 0.88889rem; }
.lt-ie9 .space-tab--left-half {
  margin-left: 16px;
  margin-left: 0.88889rem; }
.lt-ie9 .space-tab--right-half {
  margin-right: 16px;
  margin-right: 0.88889rem; }
.lt-ie9 .space-tab--bottom-half {
  margin-bottom: 16px;
  margin-bottom: 0.88889rem; }
.lt-ie9 .space-tab--top {
  margin-top: 32px;
  margin-top: 1.77778rem; }
.lt-ie9 .space-tab--left {
  margin-left: 32px;
  margin-left: 1.77778rem; }
.lt-ie9 .space-tab--right {
  margin-right: 32px;
  margin-right: 1.77778rem; }
.lt-ie9 .space-tab--bottom {
  margin-bottom: 32px;
  margin-bottom: 1.77778rem; }
.lt-ie9 .space-tab--top-double {
  margin-top: 64px;
  margin-top: 3.55556rem; }
.lt-ie9 .space-tab--left-double {
  margin-left: 64px;
  margin-left: 3.55556rem; }
.lt-ie9 .space-tab--right-double {
  margin-right: 64px;
  margin-right: 3.55556rem; }
.lt-ie9 .space-tab--bottom-double {
  margin-bottom: 64px;
  margin-bottom: 3.55556rem; }
.lt-ie9 .space-tab--top-triple {
  margin-top: 96px;
  margin-top: 5.33333rem; }
.lt-ie9 .space-tab--left-triple {
  margin-left: 96px;
  margin-left: 5.33333rem; }
.lt-ie9 .space-tab--right-triple {
  margin-right: 96px;
  margin-right: 5.33333rem; }
.lt-ie9 .space-tab--bottom-triple {
  margin-bottom: 96px;
  margin-bottom: 5.33333rem; }

@media screen and (min-width: 721px) {
  .space-lap--top-none {
    margin-top: 0px;
    margin-top: 0rem; }

  .space-lap--left-none {
    margin-left: 0px;
    margin-left: 0rem; }

  .space-lap--right-none {
    margin-right: 0px;
    margin-right: 0rem; }

  .space-lap--bottom-none {
    margin-bottom: 0px;
    margin-bottom: 0rem; }

  .space-lap--top-quarter {
    margin-top: 8px;
    margin-top: 0.44444rem; }

  .space-lap--left-quarter {
    margin-left: 8px;
    margin-left: 0.44444rem; }

  .space-lap--right-quarter {
    margin-right: 8px;
    margin-right: 0.44444rem; }

  .space-lap--bottom-quarter {
    margin-bottom: 8px;
    margin-bottom: 0.44444rem; }

  .space-lap--top-third {
    margin-top: 10.6666666666px;
    margin-top: 0.59259rem; }

  .space-lap--left-third {
    margin-left: 10.6666666666px;
    margin-left: 0.59259rem; }

  .space-lap--right-third {
    margin-right: 10.6666666666px;
    margin-right: 0.59259rem; }

  .space-lap--bottom-third {
    margin-bottom: 10.6666666666px;
    margin-bottom: 0.59259rem; }

  .space-lap--top-half {
    margin-top: 16px;
    margin-top: 0.88889rem; }

  .space-lap--left-half {
    margin-left: 16px;
    margin-left: 0.88889rem; }

  .space-lap--right-half {
    margin-right: 16px;
    margin-right: 0.88889rem; }

  .space-lap--bottom-half {
    margin-bottom: 16px;
    margin-bottom: 0.88889rem; }

  .space-lap--top {
    margin-top: 32px;
    margin-top: 1.77778rem; }

  .space-lap--left {
    margin-left: 32px;
    margin-left: 1.77778rem; }

  .space-lap--right {
    margin-right: 32px;
    margin-right: 1.77778rem; }

  .space-lap--bottom {
    margin-bottom: 32px;
    margin-bottom: 1.77778rem; }

  .space-lap--top-double {
    margin-top: 64px;
    margin-top: 3.55556rem; }

  .space-lap--left-double {
    margin-left: 64px;
    margin-left: 3.55556rem; }

  .space-lap--right-double {
    margin-right: 64px;
    margin-right: 3.55556rem; }

  .space-lap--bottom-double {
    margin-bottom: 64px;
    margin-bottom: 3.55556rem; }

  .space-lap--top-triple {
    margin-top: 96px;
    margin-top: 5.33333rem; }

  .space-lap--left-triple {
    margin-left: 96px;
    margin-left: 5.33333rem; }

  .space-lap--right-triple {
    margin-right: 96px;
    margin-right: 5.33333rem; }

  .space-lap--bottom-triple {
    margin-bottom: 96px;
    margin-bottom: 5.33333rem; }
 }

.lt-ie9 .space-lap--top-none {
  margin-top: 0px;
  margin-top: 0rem; }
.lt-ie9 .space-lap--left-none {
  margin-left: 0px;
  margin-left: 0rem; }
.lt-ie9 .space-lap--right-none {
  margin-right: 0px;
  margin-right: 0rem; }
.lt-ie9 .space-lap--bottom-none {
  margin-bottom: 0px;
  margin-bottom: 0rem; }
.lt-ie9 .space-lap--top-quarter {
  margin-top: 8px;
  margin-top: 0.44444rem; }
.lt-ie9 .space-lap--left-quarter {
  margin-left: 8px;
  margin-left: 0.44444rem; }
.lt-ie9 .space-lap--right-quarter {
  margin-right: 8px;
  margin-right: 0.44444rem; }
.lt-ie9 .space-lap--bottom-quarter {
  margin-bottom: 8px;
  margin-bottom: 0.44444rem; }
.lt-ie9 .space-lap--top-third {
  margin-top: 10.6666666666px;
  margin-top: 0.59259rem; }
.lt-ie9 .space-lap--left-third {
  margin-left: 10.6666666666px;
  margin-left: 0.59259rem; }
.lt-ie9 .space-lap--right-third {
  margin-right: 10.6666666666px;
  margin-right: 0.59259rem; }
.lt-ie9 .space-lap--bottom-third {
  margin-bottom: 10.6666666666px;
  margin-bottom: 0.59259rem; }
.lt-ie9 .space-lap--top-half {
  margin-top: 16px;
  margin-top: 0.88889rem; }
.lt-ie9 .space-lap--left-half {
  margin-left: 16px;
  margin-left: 0.88889rem; }
.lt-ie9 .space-lap--right-half {
  margin-right: 16px;
  margin-right: 0.88889rem; }
.lt-ie9 .space-lap--bottom-half {
  margin-bottom: 16px;
  margin-bottom: 0.88889rem; }
.lt-ie9 .space-lap--top {
  margin-top: 32px;
  margin-top: 1.77778rem; }
.lt-ie9 .space-lap--left {
  margin-left: 32px;
  margin-left: 1.77778rem; }
.lt-ie9 .space-lap--right {
  margin-right: 32px;
  margin-right: 1.77778rem; }
.lt-ie9 .space-lap--bottom {
  margin-bottom: 32px;
  margin-bottom: 1.77778rem; }
.lt-ie9 .space-lap--top-double {
  margin-top: 64px;
  margin-top: 3.55556rem; }
.lt-ie9 .space-lap--left-double {
  margin-left: 64px;
  margin-left: 3.55556rem; }
.lt-ie9 .space-lap--right-double {
  margin-right: 64px;
  margin-right: 3.55556rem; }
.lt-ie9 .space-lap--bottom-double {
  margin-bottom: 64px;
  margin-bottom: 3.55556rem; }
.lt-ie9 .space-lap--top-triple {
  margin-top: 96px;
  margin-top: 5.33333rem; }
.lt-ie9 .space-lap--left-triple {
  margin-left: 96px;
  margin-left: 5.33333rem; }
.lt-ie9 .space-lap--right-triple {
  margin-right: 96px;
  margin-right: 5.33333rem; }
.lt-ie9 .space-lap--bottom-triple {
  margin-bottom: 96px;
  margin-bottom: 5.33333rem; }

@media screen and (min-width: 1024px) {
  .space-desk--top-none {
    margin-top: 0px;
    margin-top: 0rem; }

  .space-desk--left-none {
    margin-left: 0px;
    margin-left: 0rem; }

  .space-desk--right-none {
    margin-right: 0px;
    margin-right: 0rem; }

  .space-desk--bottom-none {
    margin-bottom: 0px;
    margin-bottom: 0rem; }

  .space-desk--top-quarter {
    margin-top: 8px;
    margin-top: 0.44444rem; }

  .space-desk--left-quarter {
    margin-left: 8px;
    margin-left: 0.44444rem; }

  .space-desk--right-quarter {
    margin-right: 8px;
    margin-right: 0.44444rem; }

  .space-desk--bottom-quarter {
    margin-bottom: 8px;
    margin-bottom: 0.44444rem; }

  .space-desk--top-third {
    margin-top: 10.6666666666px;
    margin-top: 0.59259rem; }

  .space-desk--left-third {
    margin-left: 10.6666666666px;
    margin-left: 0.59259rem; }

  .space-desk--right-third {
    margin-right: 10.6666666666px;
    margin-right: 0.59259rem; }

  .space-desk--bottom-third {
    margin-bottom: 10.6666666666px;
    margin-bottom: 0.59259rem; }

  .space-desk--top-half {
    margin-top: 16px;
    margin-top: 0.88889rem; }

  .space-desk--left-half {
    margin-left: 16px;
    margin-left: 0.88889rem; }

  .space-desk--right-half {
    margin-right: 16px;
    margin-right: 0.88889rem; }

  .space-desk--bottom-half {
    margin-bottom: 16px;
    margin-bottom: 0.88889rem; }

  .space-desk--top {
    margin-top: 32px;
    margin-top: 1.77778rem; }

  .space-desk--left {
    margin-left: 32px;
    margin-left: 1.77778rem; }

  .space-desk--right {
    margin-right: 32px;
    margin-right: 1.77778rem; }

  .space-desk--bottom {
    margin-bottom: 32px;
    margin-bottom: 1.77778rem; }

  .space-desk--top-double {
    margin-top: 64px;
    margin-top: 3.55556rem; }

  .space-desk--left-double {
    margin-left: 64px;
    margin-left: 3.55556rem; }

  .space-desk--right-double {
    margin-right: 64px;
    margin-right: 3.55556rem; }

  .space-desk--bottom-double {
    margin-bottom: 64px;
    margin-bottom: 3.55556rem; }

  .space-desk--top-triple {
    margin-top: 96px;
    margin-top: 5.33333rem; }

  .space-desk--left-triple {
    margin-left: 96px;
    margin-left: 5.33333rem; }

  .space-desk--right-triple {
    margin-right: 96px;
    margin-right: 5.33333rem; }

  .space-desk--bottom-triple {
    margin-bottom: 96px;
    margin-bottom: 5.33333rem; }
 }

.lt-ie9 .space-desk--top-none {
  margin-top: 0px;
  margin-top: 0rem; }
.lt-ie9 .space-desk--left-none {
  margin-left: 0px;
  margin-left: 0rem; }
.lt-ie9 .space-desk--right-none {
  margin-right: 0px;
  margin-right: 0rem; }
.lt-ie9 .space-desk--bottom-none {
  margin-bottom: 0px;
  margin-bottom: 0rem; }
.lt-ie9 .space-desk--top-quarter {
  margin-top: 8px;
  margin-top: 0.44444rem; }
.lt-ie9 .space-desk--left-quarter {
  margin-left: 8px;
  margin-left: 0.44444rem; }
.lt-ie9 .space-desk--right-quarter {
  margin-right: 8px;
  margin-right: 0.44444rem; }
.lt-ie9 .space-desk--bottom-quarter {
  margin-bottom: 8px;
  margin-bottom: 0.44444rem; }
.lt-ie9 .space-desk--top-third {
  margin-top: 10.6666666666px;
  margin-top: 0.59259rem; }
.lt-ie9 .space-desk--left-third {
  margin-left: 10.6666666666px;
  margin-left: 0.59259rem; }
.lt-ie9 .space-desk--right-third {
  margin-right: 10.6666666666px;
  margin-right: 0.59259rem; }
.lt-ie9 .space-desk--bottom-third {
  margin-bottom: 10.6666666666px;
  margin-bottom: 0.59259rem; }
.lt-ie9 .space-desk--top-half {
  margin-top: 16px;
  margin-top: 0.88889rem; }
.lt-ie9 .space-desk--left-half {
  margin-left: 16px;
  margin-left: 0.88889rem; }
.lt-ie9 .space-desk--right-half {
  margin-right: 16px;
  margin-right: 0.88889rem; }
.lt-ie9 .space-desk--bottom-half {
  margin-bottom: 16px;
  margin-bottom: 0.88889rem; }
.lt-ie9 .space-desk--top {
  margin-top: 32px;
  margin-top: 1.77778rem; }
.lt-ie9 .space-desk--left {
  margin-left: 32px;
  margin-left: 1.77778rem; }
.lt-ie9 .space-desk--right {
  margin-right: 32px;
  margin-right: 1.77778rem; }
.lt-ie9 .space-desk--bottom {
  margin-bottom: 32px;
  margin-bottom: 1.77778rem; }
.lt-ie9 .space-desk--top-double {
  margin-top: 64px;
  margin-top: 3.55556rem; }
.lt-ie9 .space-desk--left-double {
  margin-left: 64px;
  margin-left: 3.55556rem; }
.lt-ie9 .space-desk--right-double {
  margin-right: 64px;
  margin-right: 3.55556rem; }
.lt-ie9 .space-desk--bottom-double {
  margin-bottom: 64px;
  margin-bottom: 3.55556rem; }
.lt-ie9 .space-desk--top-triple {
  margin-top: 96px;
  margin-top: 5.33333rem; }
.lt-ie9 .space-desk--left-triple {
  margin-left: 96px;
  margin-left: 5.33333rem; }
.lt-ie9 .space-desk--right-triple {
  margin-right: 96px;
  margin-right: 5.33333rem; }
.lt-ie9 .space-desk--bottom-triple {
  margin-bottom: 96px;
  margin-bottom: 5.33333rem; }

@media screen and (min-width: 1200px) {
  .space-desk-wide--top-none {
    margin-top: 0px;
    margin-top: 0rem; }

  .space-desk-wide--left-none {
    margin-left: 0px;
    margin-left: 0rem; }

  .space-desk-wide--right-none {
    margin-right: 0px;
    margin-right: 0rem; }

  .space-desk-wide--bottom-none {
    margin-bottom: 0px;
    margin-bottom: 0rem; }

  .space-desk-wide--top-quarter {
    margin-top: 8px;
    margin-top: 0.44444rem; }

  .space-desk-wide--left-quarter {
    margin-left: 8px;
    margin-left: 0.44444rem; }

  .space-desk-wide--right-quarter {
    margin-right: 8px;
    margin-right: 0.44444rem; }

  .space-desk-wide--bottom-quarter {
    margin-bottom: 8px;
    margin-bottom: 0.44444rem; }

  .space-desk-wide--top-third {
    margin-top: 10.6666666666px;
    margin-top: 0.59259rem; }

  .space-desk-wide--left-third {
    margin-left: 10.6666666666px;
    margin-left: 0.59259rem; }

  .space-desk-wide--right-third {
    margin-right: 10.6666666666px;
    margin-right: 0.59259rem; }

  .space-desk-wide--bottom-third {
    margin-bottom: 10.6666666666px;
    margin-bottom: 0.59259rem; }

  .space-desk-wide--top-half {
    margin-top: 16px;
    margin-top: 0.88889rem; }

  .space-desk-wide--left-half {
    margin-left: 16px;
    margin-left: 0.88889rem; }

  .space-desk-wide--right-half {
    margin-right: 16px;
    margin-right: 0.88889rem; }

  .space-desk-wide--bottom-half {
    margin-bottom: 16px;
    margin-bottom: 0.88889rem; }

  .space-desk-wide--top {
    margin-top: 32px;
    margin-top: 1.77778rem; }

  .space-desk-wide--left {
    margin-left: 32px;
    margin-left: 1.77778rem; }

  .space-desk-wide--right {
    margin-right: 32px;
    margin-right: 1.77778rem; }

  .space-desk-wide--bottom {
    margin-bottom: 32px;
    margin-bottom: 1.77778rem; }

  .space-desk-wide--top-double {
    margin-top: 64px;
    margin-top: 3.55556rem; }

  .space-desk-wide--left-double {
    margin-left: 64px;
    margin-left: 3.55556rem; }

  .space-desk-wide--right-double {
    margin-right: 64px;
    margin-right: 3.55556rem; }

  .space-desk-wide--bottom-double {
    margin-bottom: 64px;
    margin-bottom: 3.55556rem; }

  .space-desk-wide--top-triple {
    margin-top: 96px;
    margin-top: 5.33333rem; }

  .space-desk-wide--left-triple {
    margin-left: 96px;
    margin-left: 5.33333rem; }

  .space-desk-wide--right-triple {
    margin-right: 96px;
    margin-right: 5.33333rem; }

  .space-desk-wide--bottom-triple {
    margin-bottom: 96px;
    margin-bottom: 5.33333rem; }
 }

.lt-ie9 .space-desk-wide--top-none {
  margin-top: 0px;
  margin-top: 0rem; }
.lt-ie9 .space-desk-wide--left-none {
  margin-left: 0px;
  margin-left: 0rem; }
.lt-ie9 .space-desk-wide--right-none {
  margin-right: 0px;
  margin-right: 0rem; }
.lt-ie9 .space-desk-wide--bottom-none {
  margin-bottom: 0px;
  margin-bottom: 0rem; }
.lt-ie9 .space-desk-wide--top-quarter {
  margin-top: 8px;
  margin-top: 0.44444rem; }
.lt-ie9 .space-desk-wide--left-quarter {
  margin-left: 8px;
  margin-left: 0.44444rem; }
.lt-ie9 .space-desk-wide--right-quarter {
  margin-right: 8px;
  margin-right: 0.44444rem; }
.lt-ie9 .space-desk-wide--bottom-quarter {
  margin-bottom: 8px;
  margin-bottom: 0.44444rem; }
.lt-ie9 .space-desk-wide--top-third {
  margin-top: 10.6666666666px;
  margin-top: 0.59259rem; }
.lt-ie9 .space-desk-wide--left-third {
  margin-left: 10.6666666666px;
  margin-left: 0.59259rem; }
.lt-ie9 .space-desk-wide--right-third {
  margin-right: 10.6666666666px;
  margin-right: 0.59259rem; }
.lt-ie9 .space-desk-wide--bottom-third {
  margin-bottom: 10.6666666666px;
  margin-bottom: 0.59259rem; }
.lt-ie9 .space-desk-wide--top-half {
  margin-top: 16px;
  margin-top: 0.88889rem; }
.lt-ie9 .space-desk-wide--left-half {
  margin-left: 16px;
  margin-left: 0.88889rem; }
.lt-ie9 .space-desk-wide--right-half {
  margin-right: 16px;
  margin-right: 0.88889rem; }
.lt-ie9 .space-desk-wide--bottom-half {
  margin-bottom: 16px;
  margin-bottom: 0.88889rem; }
.lt-ie9 .space-desk-wide--top {
  margin-top: 32px;
  margin-top: 1.77778rem; }
.lt-ie9 .space-desk-wide--left {
  margin-left: 32px;
  margin-left: 1.77778rem; }
.lt-ie9 .space-desk-wide--right {
  margin-right: 32px;
  margin-right: 1.77778rem; }
.lt-ie9 .space-desk-wide--bottom {
  margin-bottom: 32px;
  margin-bottom: 1.77778rem; }
.lt-ie9 .space-desk-wide--top-double {
  margin-top: 64px;
  margin-top: 3.55556rem; }
.lt-ie9 .space-desk-wide--left-double {
  margin-left: 64px;
  margin-left: 3.55556rem; }
.lt-ie9 .space-desk-wide--right-double {
  margin-right: 64px;
  margin-right: 3.55556rem; }
.lt-ie9 .space-desk-wide--bottom-double {
  margin-bottom: 64px;
  margin-bottom: 3.55556rem; }
.lt-ie9 .space-desk-wide--top-triple {
  margin-top: 96px;
  margin-top: 5.33333rem; }
.lt-ie9 .space-desk-wide--left-triple {
  margin-left: 96px;
  margin-left: 5.33333rem; }
.lt-ie9 .space-desk-wide--right-triple {
  margin-right: 96px;
  margin-right: 5.33333rem; }
.lt-ie9 .space-desk-wide--bottom-triple {
  margin-bottom: 96px;
  margin-bottom: 5.33333rem; }

.lt-ie9 #team .width-desk--1of3 {
  width: 50% !important; }
.lt-ie9 #team .hide--until-desktop {
  display: none !important; }
.lt-ie9 .footer .headline {
  font-size: 28px;
  font-size: 1.5555555556rem; }
.lt-ie9 .teaser-box--claim .headline {
  font-size: 28px;
  font-size: 1.5555555556rem; }
.lt-ie9 .customer-intro .headline {
  font-size: 32px;
  font-size: 1.7777777778rem; }

/**
 * IE9
 */
.ie9 input.enter-email {
  margin-bottom: 32px;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  border: 1px solid #c7c7c7;
  box-shadow: inset 1px 1px 3px 0px #ccc; }
  @media screen and (min-width: 721px) {
    .ie9 input.enter-email {
      width: 70%; } }

.invisible {
  width: 0;
  height: 0;
  text-indent: -99999px;
  display: block;
  overflow: hidden; }

@media screen and (min-width: 1024px) {
  .text--right-desk {
    text-align: right; } }

.align--bottom {
  vertical-align: bottom; }

@media screen and (min-width: 1024px) {
  .hide--desktop {
    display: none; } }

@media screen and (max-width: 1023px) {
  .hide--until-desktop {
    display: none; } }

.align--middle {
  vertical-align: middle; }

.seperator {
  border-bottom: 1px solid #c7c7c7;
  display: block; }

/* .left {
  @include media(\$breakLaptop) {
    padding-right: \$baseUnit;
  }
} */
@media screen and (min-width: 1024px) {
  .border-right--desk {
    border-right: 1px solid #c7c7c7; } }
.lt-ie9 .border-right--desk {
  border-right: 1px solid #c7c7c7; }

.download-link {
  color: #6e6e6d; }

.constrain .constrain {
  padding: 0; }

#main ul > li {
  list-style: none;
  position: relative; }
  #main ul > li:before {
    content: '\2022';
    position: absolute;
    left: -15px;
    color: #e63128; }

.slick-slider li:before {
  display: none; }
