/**
 * style.scss
 *
 * Author: Marian Friedmann
 *
 */
/**
 * basicss overrides
 *
 * any defaults in basicss/basicss/_settings.scss
 * may be overridden...
 *
 * e.g. $prototyping: true;
 */
/**
 * colors
 */
/**
 * fonts
 */
@font-face {
  font-family: 'AbsolutStd';
  src: url('../fonts/absolutstdbook-webfont.eot');
  src: url('../fonts/absolutstdbook-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/absolutstdbook-webfont.woff2') format('woff2'), url('../fonts/absolutstdbook-webfont.woff') format('woff'), url('../fonts/absolutstdbook-webfont.ttf') format('truetype'), url('../fonts/absolutstdbook-webfont.svg#absolut_standardbook') format('svg');
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'AbsolutStd';
  src: url('../fonts/absolutstdbookit-webfont.eot');
  src: url('../fonts/absolutstdbookit-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/absolutstdbookit-webfont.woff2') format('woff2'), url('../fonts/absolutstdbookit-webfont.woff') format('woff'), url('../fonts/absolutstdbookit-webfont.ttf') format('truetype'), url('../fonts/absolutstdbookit-webfont.svg#absolut_standardbook_italic') format('svg');
  font-weight: normal;
  font-style: italic; }

/**
 * font size
 */
/**
 * 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 28px;
  margin: 0 0 1.55556rem; }

ul, ol, dd {
  margin-left: 28px;
  margin-left: 1.55556rem; }

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

/**
 * _typo.scss
 *
 * Author: Marian Friedmann
 *
 */
html {
  font-family: "AbsolutStd", sans-serif;
  font-size: 1.125em;
  line-height: 1.5555555556; }

h1, .heading-1 {
  font-size: 48px;
  font-size: 2.6666666667rem;
  line-height: 1.1666666667; }

h2, .heading-2 {
  font-size: 36px;
  font-size: 2rem;
  line-height: 1.5555555556; }

h3, .heading-3 {
  font-size: 32px;
  font-size: 1.7777777778rem;
  line-height: 1.75; }

h4, .heading-4 {
  font-size: 24px;
  font-size: 1.3333333333rem;
  line-height: 1.1666666667; }

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

h6, .heading-6 {
  font-size: 16px;
  font-size: 0.8888888889rem;
  line-height: 1.75; }

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

a:hover {
  color: #005ba6;
  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: -28px;
  margin-left: -1.55556rem; }

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

/**
 * 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: -14px;
  margin-left: -0.77778rem; }
  .grid--small > .grid__item {
    padding-left: 14px;
    padding-left: 0.77778rem; }

.grid--large {
  margin-left: -56px;
  margin-left: -3.11111rem; }
  .grid--large > .grid__item {
    padding-left: 56px;
    padding-left: 3.11111rem; }

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

.btn:hover {
  background-color: #005ba6;
  color: #fff;
  text-decoration: none; }

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

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

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

/**
 * _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 28px 0;
  margin: 0 0 1.55556rem 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: 7px;
  padding-left: 0.38889rem; }
  .nav--parallel > li:before {
    content: "\007C";
    margin-right: 7px;
    margin-right: 0.38889rem; }
  .nav--parallel > li:first-child {
    padding: 0; }
    .nav--parallel > li:first-child:before {
      display: 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: 28px;
  height: 28px;
  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: 7px;
  margin-top: 0.38889rem; }

.space--left-quarter {
  margin-left: 7px;
  margin-left: 0.38889rem; }

.space--right-quarter {
  margin-right: 7px;
  margin-right: 0.38889rem; }

.space--bottom-quarter {
  margin-bottom: 7px;
  margin-bottom: 0.38889rem; }

.space--top-third {
  margin-top: 9.3333333332px;
  margin-top: 0.51852rem; }

.space--left-third {
  margin-left: 9.3333333332px;
  margin-left: 0.51852rem; }

.space--right-third {
  margin-right: 9.3333333332px;
  margin-right: 0.51852rem; }

.space--bottom-third {
  margin-bottom: 9.3333333332px;
  margin-bottom: 0.51852rem; }

.space--top-half {
  margin-top: 14px;
  margin-top: 0.77778rem; }

.space--left-half {
  margin-left: 14px;
  margin-left: 0.77778rem; }

.space--right-half {
  margin-right: 14px;
  margin-right: 0.77778rem; }

.space--bottom-half {
  margin-bottom: 14px;
  margin-bottom: 0.77778rem; }

.space--top {
  margin-top: 28px;
  margin-top: 1.55556rem; }

.space--left {
  margin-left: 28px;
  margin-left: 1.55556rem; }

.space--right {
  margin-right: 28px;
  margin-right: 1.55556rem; }

.space--bottom {
  margin-bottom: 28px;
  margin-bottom: 1.55556rem; }

.space--top-double {
  margin-top: 56px;
  margin-top: 3.11111rem; }

.space--left-double {
  margin-left: 56px;
  margin-left: 3.11111rem; }

.space--right-double {
  margin-right: 56px;
  margin-right: 3.11111rem; }

.space--bottom-double {
  margin-bottom: 56px;
  margin-bottom: 3.11111rem; }

.space--top-triple {
  margin-top: 84px;
  margin-top: 4.66667rem; }

.space--left-triple {
  margin-left: 84px;
  margin-left: 4.66667rem; }

.space--right-triple {
  margin-right: 84px;
  margin-right: 4.66667rem; }

.space--bottom-triple {
  margin-bottom: 84px;
  margin-bottom: 4.66667rem; }

@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: 7px;
    margin-top: 0.38889rem; }
  .space-tab--left-quarter {
    margin-left: 7px;
    margin-left: 0.38889rem; }
  .space-tab--right-quarter {
    margin-right: 7px;
    margin-right: 0.38889rem; }
  .space-tab--bottom-quarter {
    margin-bottom: 7px;
    margin-bottom: 0.38889rem; }
  .space-tab--top-third {
    margin-top: 9.3333333332px;
    margin-top: 0.51852rem; }
  .space-tab--left-third {
    margin-left: 9.3333333332px;
    margin-left: 0.51852rem; }
  .space-tab--right-third {
    margin-right: 9.3333333332px;
    margin-right: 0.51852rem; }
  .space-tab--bottom-third {
    margin-bottom: 9.3333333332px;
    margin-bottom: 0.51852rem; }
  .space-tab--top-half {
    margin-top: 14px;
    margin-top: 0.77778rem; }
  .space-tab--left-half {
    margin-left: 14px;
    margin-left: 0.77778rem; }
  .space-tab--right-half {
    margin-right: 14px;
    margin-right: 0.77778rem; }
  .space-tab--bottom-half {
    margin-bottom: 14px;
    margin-bottom: 0.77778rem; }
  .space-tab--top {
    margin-top: 28px;
    margin-top: 1.55556rem; }
  .space-tab--left {
    margin-left: 28px;
    margin-left: 1.55556rem; }
  .space-tab--right {
    margin-right: 28px;
    margin-right: 1.55556rem; }
  .space-tab--bottom {
    margin-bottom: 28px;
    margin-bottom: 1.55556rem; }
  .space-tab--top-double {
    margin-top: 56px;
    margin-top: 3.11111rem; }
  .space-tab--left-double {
    margin-left: 56px;
    margin-left: 3.11111rem; }
  .space-tab--right-double {
    margin-right: 56px;
    margin-right: 3.11111rem; }
  .space-tab--bottom-double {
    margin-bottom: 56px;
    margin-bottom: 3.11111rem; }
  .space-tab--top-triple {
    margin-top: 84px;
    margin-top: 4.66667rem; }
  .space-tab--left-triple {
    margin-left: 84px;
    margin-left: 4.66667rem; }
  .space-tab--right-triple {
    margin-right: 84px;
    margin-right: 4.66667rem; }
  .space-tab--bottom-triple {
    margin-bottom: 84px;
    margin-bottom: 4.66667rem; } }

@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: 7px;
    margin-top: 0.38889rem; }
  .space-lap--left-quarter {
    margin-left: 7px;
    margin-left: 0.38889rem; }
  .space-lap--right-quarter {
    margin-right: 7px;
    margin-right: 0.38889rem; }
  .space-lap--bottom-quarter {
    margin-bottom: 7px;
    margin-bottom: 0.38889rem; }
  .space-lap--top-third {
    margin-top: 9.3333333332px;
    margin-top: 0.51852rem; }
  .space-lap--left-third {
    margin-left: 9.3333333332px;
    margin-left: 0.51852rem; }
  .space-lap--right-third {
    margin-right: 9.3333333332px;
    margin-right: 0.51852rem; }
  .space-lap--bottom-third {
    margin-bottom: 9.3333333332px;
    margin-bottom: 0.51852rem; }
  .space-lap--top-half {
    margin-top: 14px;
    margin-top: 0.77778rem; }
  .space-lap--left-half {
    margin-left: 14px;
    margin-left: 0.77778rem; }
  .space-lap--right-half {
    margin-right: 14px;
    margin-right: 0.77778rem; }
  .space-lap--bottom-half {
    margin-bottom: 14px;
    margin-bottom: 0.77778rem; }
  .space-lap--top {
    margin-top: 28px;
    margin-top: 1.55556rem; }
  .space-lap--left {
    margin-left: 28px;
    margin-left: 1.55556rem; }
  .space-lap--right {
    margin-right: 28px;
    margin-right: 1.55556rem; }
  .space-lap--bottom {
    margin-bottom: 28px;
    margin-bottom: 1.55556rem; }
  .space-lap--top-double {
    margin-top: 56px;
    margin-top: 3.11111rem; }
  .space-lap--left-double {
    margin-left: 56px;
    margin-left: 3.11111rem; }
  .space-lap--right-double {
    margin-right: 56px;
    margin-right: 3.11111rem; }
  .space-lap--bottom-double {
    margin-bottom: 56px;
    margin-bottom: 3.11111rem; }
  .space-lap--top-triple {
    margin-top: 84px;
    margin-top: 4.66667rem; }
  .space-lap--left-triple {
    margin-left: 84px;
    margin-left: 4.66667rem; }
  .space-lap--right-triple {
    margin-right: 84px;
    margin-right: 4.66667rem; }
  .space-lap--bottom-triple {
    margin-bottom: 84px;
    margin-bottom: 4.66667rem; } }

@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: 7px;
    margin-top: 0.38889rem; }
  .space-desk--left-quarter {
    margin-left: 7px;
    margin-left: 0.38889rem; }
  .space-desk--right-quarter {
    margin-right: 7px;
    margin-right: 0.38889rem; }
  .space-desk--bottom-quarter {
    margin-bottom: 7px;
    margin-bottom: 0.38889rem; }
  .space-desk--top-third {
    margin-top: 9.3333333332px;
    margin-top: 0.51852rem; }
  .space-desk--left-third {
    margin-left: 9.3333333332px;
    margin-left: 0.51852rem; }
  .space-desk--right-third {
    margin-right: 9.3333333332px;
    margin-right: 0.51852rem; }
  .space-desk--bottom-third {
    margin-bottom: 9.3333333332px;
    margin-bottom: 0.51852rem; }
  .space-desk--top-half {
    margin-top: 14px;
    margin-top: 0.77778rem; }
  .space-desk--left-half {
    margin-left: 14px;
    margin-left: 0.77778rem; }
  .space-desk--right-half {
    margin-right: 14px;
    margin-right: 0.77778rem; }
  .space-desk--bottom-half {
    margin-bottom: 14px;
    margin-bottom: 0.77778rem; }
  .space-desk--top {
    margin-top: 28px;
    margin-top: 1.55556rem; }
  .space-desk--left {
    margin-left: 28px;
    margin-left: 1.55556rem; }
  .space-desk--right {
    margin-right: 28px;
    margin-right: 1.55556rem; }
  .space-desk--bottom {
    margin-bottom: 28px;
    margin-bottom: 1.55556rem; }
  .space-desk--top-double {
    margin-top: 56px;
    margin-top: 3.11111rem; }
  .space-desk--left-double {
    margin-left: 56px;
    margin-left: 3.11111rem; }
  .space-desk--right-double {
    margin-right: 56px;
    margin-right: 3.11111rem; }
  .space-desk--bottom-double {
    margin-bottom: 56px;
    margin-bottom: 3.11111rem; }
  .space-desk--top-triple {
    margin-top: 84px;
    margin-top: 4.66667rem; }
  .space-desk--left-triple {
    margin-left: 84px;
    margin-left: 4.66667rem; }
  .space-desk--right-triple {
    margin-right: 84px;
    margin-right: 4.66667rem; }
  .space-desk--bottom-triple {
    margin-bottom: 84px;
    margin-bottom: 4.66667rem; } }

@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: 7px;
    margin-top: 0.38889rem; }
  .space-desk-wide--left-quarter {
    margin-left: 7px;
    margin-left: 0.38889rem; }
  .space-desk-wide--right-quarter {
    margin-right: 7px;
    margin-right: 0.38889rem; }
  .space-desk-wide--bottom-quarter {
    margin-bottom: 7px;
    margin-bottom: 0.38889rem; }
  .space-desk-wide--top-third {
    margin-top: 9.3333333332px;
    margin-top: 0.51852rem; }
  .space-desk-wide--left-third {
    margin-left: 9.3333333332px;
    margin-left: 0.51852rem; }
  .space-desk-wide--right-third {
    margin-right: 9.3333333332px;
    margin-right: 0.51852rem; }
  .space-desk-wide--bottom-third {
    margin-bottom: 9.3333333332px;
    margin-bottom: 0.51852rem; }
  .space-desk-wide--top-half {
    margin-top: 14px;
    margin-top: 0.77778rem; }
  .space-desk-wide--left-half {
    margin-left: 14px;
    margin-left: 0.77778rem; }
  .space-desk-wide--right-half {
    margin-right: 14px;
    margin-right: 0.77778rem; }
  .space-desk-wide--bottom-half {
    margin-bottom: 14px;
    margin-bottom: 0.77778rem; }
  .space-desk-wide--top {
    margin-top: 28px;
    margin-top: 1.55556rem; }
  .space-desk-wide--left {
    margin-left: 28px;
    margin-left: 1.55556rem; }
  .space-desk-wide--right {
    margin-right: 28px;
    margin-right: 1.55556rem; }
  .space-desk-wide--bottom {
    margin-bottom: 28px;
    margin-bottom: 1.55556rem; }
  .space-desk-wide--top-double {
    margin-top: 56px;
    margin-top: 3.11111rem; }
  .space-desk-wide--left-double {
    margin-left: 56px;
    margin-left: 3.11111rem; }
  .space-desk-wide--right-double {
    margin-right: 56px;
    margin-right: 3.11111rem; }
  .space-desk-wide--bottom-double {
    margin-bottom: 56px;
    margin-bottom: 3.11111rem; }
  .space-desk-wide--top-triple {
    margin-top: 84px;
    margin-top: 4.66667rem; }
  .space-desk-wide--left-triple {
    margin-left: 84px;
    margin-left: 4.66667rem; }
  .space-desk-wide--right-triple {
    margin-right: 84px;
    margin-right: 4.66667rem; }
  .space-desk-wide--bottom-triple {
    margin-bottom: 84px;
    margin-bottom: 4.66667rem; } }

/**
 * _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';
 */
.nav--primary a:hover {
  text-decoration: none;
  color: #fff; }
.nav--primary, .nav--primary a {
  color: #dedad7; }
.nav--primary a {
  margin-bottom: 14px;
  display: block; }
.nav--primary li {
  font-size: 21px;
  font-size: 1.1666666667rem;
  line-height: 1.3333333333; }
.nav--primary li ul {
  list-style: none;
  margin-top: -14px;
  margin-left: 7px; }
.nav--primary li li {
  font-size: 18px;
  font-size: 1rem;
  line-height: 1.5555555556; }
@media screen and (min-width: 721px) {
  .nav--primary {
    margin-top: 56px; } }

.nav--secondary {
  margin-bottom: 0;
  font-size: 14px;
  font-size: 0.7777777778rem;
  line-height: 2; }
  .nav--secondary a:hover {
    text-decoration: none;
    color: #fff; }
  .nav--secondary, .nav--secondary a {
    color: #fff; }
  .nav--secondary > li {
    display: block; }
  .nav--secondary > li {
    display: inline-block;
    padding-left: 7px;
    padding-left: 0.38889rem; }
    .nav--secondary > li:before {
      content: "\007C" "\0020";
      margin-right: 7px;
      margin-right: 0.38889rem; }
    .nav--secondary > li:first-child {
      padding: 0; }
      .nav--secondary > li:first-child:before {
        display: none; }

html {
  background: #8D8175;
  color: #626262;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.page-wrap {
  max-width: 1300px; }

.page-white {
  background: #fff;
  position: relative; }
  @media screen and (min-width: 721px) {
    .page-white {
      padding-top: 42px;
      min-height: 400px;
      padding-right: 5%; }
      .page-white--spaced {
        padding-left: 15% !important; } }

.page-dark {
  background: #8D8175;
  position: relative;
  min-height: 28px; }

.page-inner {
  padding: 28px; }

.logo-wrap {
  position: relative; }

.logo {
  position: absolute;
  z-index: 100;
  width: 100px;
  height: 72px;
  left: 19px;
  top: 19px;
  background-size: 100% auto;
  display: block; }
  @media screen and (min-width: 721px) {
    .logo {
      width: 120px;
      height: 80px;
      left: inherit;
      top: inherit;
      bottom: -40px;
      right: 28px; } }
  @media screen and (min-width: 1024px) {
    .logo {
      width: 170px;
      height: 110px;
      bottom: -55px; } }
  @media screen and (min-width: 1200px) {
    .logo {
      width: 187px;
      height: 121px;
      bottom: -60px; } }

.nav-toggle-wrap {
  position: relative; }

.nav-toggle {
  position: absolute;
  z-index: 100;
  width: 50px;
  height: 50px;
  top: 28px;
  right: 28px;
  border: 0;
  background-color: transparent;
  display: block; }
  @media screen and (min-width: 721px) {
    .nav-toggle {
      display: none; } }

.headline {
  color: #E1441B;
  font-weight: normal;
  font-size: 18px;
  font-size: 1rem;
  line-height: 1.5555555556; }

.headline--upper {
  text-transform: uppercase; }

.invisible {
  position: absolute;
  top: -999999em;
  left: auto;
  width: 1px;
  height: 1px;
  overflow: hidden; }

.hero {
  height: 0;
  padding-bottom: 38%; }

.boxed-text {
  overflow: hidden;
  margin-bottom: 28px; }
  .boxed-text__image {
    margin-bottom: 28px;
    margin-right: -28px; }
    .boxed-text__image img {
      display: block; }
  .boxed-text__text {
    padding-bottom: 0; }
    @media screen and (min-width: 481px) {
      .boxed-text__text {
        padding-left: 28px; } }

.formbody {
  max-width: 480px;
  border: 1px solid #dedad7;
  padding: 28px;
  background: #f5f4f3; }
  .formbody input[type=text], .formbody input[type=tel], .formbody input[type=email], .formbody textarea, .formbody .radio_container, .formbody .checkbox_container {
    width: 100%;
    margin-bottom: 28px;
    border: 1px solid #c0c0c0; }
  .formbody input[type=text], .formbody input[type=tel], .formbody input[type=email], .formbody textarea {
    padding: 0 5px; }
  .formbody .radio_container, .formbody .checkbox_container {
    padding: 28px; }
    .formbody .radio_container > span, .formbody .checkbox_container > span {
      display: block; }
  .formbody .radio_container input, .formbody .checkbox_container input {
    margin-right: 5px;
    vertical-align: 0.05em; }
  .formbody .submit_container {
    text-align: right; }
    .formbody .submit_container input {
      background: #8D8175;
      border: none;
      color: #fff; }
  .formbody .widget.error p {
    margin-bottom: 0;
    color: #E1441B;
    font-size: 14px;
    font-size: 0.7777777778rem;
    line-height: 2; }
  .formbody .widget.error input, .formbody .widget.error textarea, .formbody .widget.error .radio_container, .formbody .widget.error .checkbox_container {
    border-color: #E1441B; }
