@charset "UTF-8";
/*
    Created on : 12.05.2015, 09:34:00
*/
/**
 * Contao Open Source CMS
 *
 * Copyright (c) 2005-2015 Leo Feyer
 *
 * @license LGPL-3.0+
 */
/**
 * Reset the margin and padding of the block elements
 */
body, div, h1, h2, h3, h4, h5, h6, p, blockquote, pre, code, ol, ul, li, dl, dt, dd, figure, table, th, td, form, fieldset, legend, input, textarea {
  margin: 0;
  padding: 0; }

/**
 * Basic element formatting
 */
table {
  border-spacing: 0;
  border-collapse: collapse; }

caption, th, td {
  text-align: left;
  text-align: start;
  /* see #4596 */
  vertical-align: top; }

abbr, acronym {
  font-variant: normal;
  border-bottom: 1px dotted #666;
  cursor: help; }

blockquote, q {
  quotes: none; }

fieldset, img {
  border: 0; }

ul {
  list-style-type: none; }

sup {
  vertical-align: text-top; }

sub {
  vertical-align: text-bottom; }

del {
  text-decoration: line-through; }

ins {
  text-decoration: none; }

header, footer, nav, section, aside, article, figure, figcaption {
  /* display:block; */ }

/**
 * Default font settings
 */
body {
  font: 12px/1 sans-serif;
  color: #000; }

input, button, textarea, select {
  font-family: inherit;
  font-size: 99%;
  font-weight: inherit; }

pre, code {
  font-family: Monaco,monospace; }

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

h1 {
  font-size: 1.8333em;
  /* 22px */ }

h2 {
  font-size: 1.6667em;
  /* 20px */ }

h3 {
  font-size: 1.5em;
  /* 18px */ }

h4 {
  font-size: 1.3333em;
  /* 16px */ }


table {
  font-size: inherit; }

caption, th, b {
  font-weight: bold; }

a {
  color: #1a3153;}

/**
 * Default margins
 */
/*h1,h2,h3,h4,h5,h6 {
    margin-top:1em;
}
h1,h2,h3,h4,h5,h6,p,pre,blockquote,table,ol,ul,form {
    margin-bottom:12px;  Should match the font size 
}*/
/*
    Created on : 03.02.2015, 08:44:48
    Description: Some SASS mixins
*/
.clearfix, .inside {
  zoom: 1; }
  .clearfix::after, .inside::after, .clearfix::before, .inside::before {
    content: "";
    display: table; }
  .clearfix::after, .inside::after {
    clear: both; }

.fg-white {
  color: #fff; }

.bg-white {
  background-color: #fff; }

.fg-black {
  color: #000; }

.bg-black {
  background-color: #000; }

/*
    Created on : 17.04.2015, 09:34:00
    Descroption: Custom Contao 3.x Grid with fixed with
                 http://css-tricks.com/snippets/css/media-queries-for-standard-devices/
                 Default Breaks...
                 @768 for portrait > sm
                 @1024 for landscape > md
                 @1280 for desktops > lg
                 Percenatgegrid uses bootstrap-like classes col-xs-*, col-sm-*...

                 Add some more breakoint by extent $arrBreakpoints
                 08.07.2016: Fixed clear-floating
                 23.09.2016: tuned grid, fixed col-xx-hide
*/
/*
 Created on : 22.07.2015, 16:12:20
 Changes :
 07.10.2015 - included percentage grid and rename old one to generatePixelGrid
 28.10.2015 - introduced prefixes
 27.01.2016 - added/fixed boxed behavior
 17.02.2016 - removes pixel-based grid calculation
 15.04.2016 - replace with css-calc
 24.06.2016 - remove junk
 23.09.2016 - tuned
*/
/* STOP edit here! */
/*$computedMarginLeft: percentage($marginLeft / $maxPageWidth);*/
/*$computedMarginRight: percentage($marginRight / $maxPageWidth);*/
.grid {
  min-width: 320px;
  margin-left: auto;
  margin-right: auto; }
  .grid-fluid {
    max-width: 100% !important; }

*[class*="col-"] {
  /*display: inline;*/
  box-sizing: border-box;
  float: left;
  margin-left: 15px;
  margin-right: 15px; }
  *[class*="col-"][class*="push-"], *[class*="col-"][class*="pull-"] {
    position: relative; }

.mod_article[class*="col-"] {
  margin-left: 0;
  margin-right: 0;
  /*padding: { 
          left: $computedMarginLeft;
          right: $computedMarginRight;
      }*/ }

.row {
  clear: left;
  margin-left: -15px;
  margin-right: -15px; }

.col-xs-0 {
  width: calc(100% * 0 / 12 - 31px); }
  .col-xs-0.mod_article, .col-xs-0.no-margin {
    width: calc(100% * 0 / 12); }
  .col-xs-0.no-margin-left, .col-xs-0.no-margin-right {
    width: calc(100% * 0 / 12 - 16px); }

.offset-xs-0 {
  margin-left: calc(100% * 0 / 12 + 16px); }
  .offset-xs-0.mod_article {
    margin-left: calc(100% * 0 / 12); }

.push-xs-0 {
  left: calc(100% * 0 / 12); }

.pull-xs-0 {
  right: calc(100% * 0 / 12); }

.col-xs-1 {
  width: calc(100% * 1 / 12 - 31px); }
  .col-xs-1.mod_article, .col-xs-1.no-margin {
    width: calc(100% * 1 / 12); }
  .col-xs-1.no-margin-left, .col-xs-1.no-margin-right {
    width: calc(100% * 1 / 12 - 16px); }

.offset-xs-1 {
  margin-left: calc(100% * 1 / 12 + 16px); }
  .offset-xs-1.mod_article {
    margin-left: calc(100% * 1 / 12); }

.push-xs-1 {
  left: calc(100% * 1 / 12); }

.pull-xs-1 {
  right: calc(100% * 1 / 12); }

.col-xs-2 {
  width: calc(100% * 2 / 12 - 31px); }
  .col-xs-2.mod_article, .col-xs-2.no-margin {
    width: calc(100% * 2 / 12); }
  .col-xs-2.no-margin-left, .col-xs-2.no-margin-right {
    width: calc(100% * 2 / 12 - 16px); }

.offset-xs-2 {
  margin-left: calc(100% * 2 / 12 + 16px); }
  .offset-xs-2.mod_article {
    margin-left: calc(100% * 2 / 12); }

.push-xs-2 {
  left: calc(100% * 2 / 12); }

.pull-xs-2 {
  right: calc(100% * 2 / 12); }

.col-xs-3 {
  width: calc(100% * 3 / 12 - 31px); }
  .col-xs-3.mod_article, .col-xs-3.no-margin {
    width: calc(100% * 3 / 12); }
  .col-xs-3.no-margin-left, .col-xs-3.no-margin-right {
    width: calc(100% * 3 / 12 - 16px); }

.offset-xs-3 {
  margin-left: calc(100% * 3 / 12 + 16px); }
  .offset-xs-3.mod_article {
    margin-left: calc(100% * 3 / 12); }

.push-xs-3 {
  left: calc(100% * 3 / 12); }

.pull-xs-3 {
  right: calc(100% * 3 / 12); }

.col-xs-4 {
  width: calc(100% * 4 / 12 - 31px); }
  .col-xs-4.mod_article, .col-xs-4.no-margin {
    width: calc(100% * 4 / 12); }
  .col-xs-4.no-margin-left, .col-xs-4.no-margin-right {
    width: calc(100% * 4 / 12 - 16px); }

.offset-xs-4 {
  margin-left: calc(100% * 4 / 12 + 16px); }
  .offset-xs-4.mod_article {
    margin-left: calc(100% * 4 / 12); }

.push-xs-4 {
  left: calc(100% * 4 / 12); }

.pull-xs-4 {
  right: calc(100% * 4 / 12); }

.col-xs-5 {
  width: calc(100% * 5 / 12 - 31px); }
  .col-xs-5.mod_article, .col-xs-5.no-margin {
    width: calc(100% * 5 / 12); }
  .col-xs-5.no-margin-left, .col-xs-5.no-margin-right {
    width: calc(100% * 5 / 12 - 16px); }

.offset-xs-5 {
  margin-left: calc(100% * 5 / 12 + 16px); }
  .offset-xs-5.mod_article {
    margin-left: calc(100% * 5 / 12); }

.push-xs-5 {
  left: calc(100% * 5 / 12); }

.pull-xs-5 {
  right: calc(100% * 5 / 12); }

.col-xs-6 {
  width: calc(100% * 6 / 12 - 31px); }
  .col-xs-6.mod_article, .col-xs-6.no-margin {
    width: calc(100% * 6 / 12); }
  .col-xs-6.no-margin-left, .col-xs-6.no-margin-right {
    width: calc(100% * 6 / 12 - 16px); }

.offset-xs-6 {
  margin-left: calc(100% * 6 / 12 + 16px); }
  .offset-xs-6.mod_article {
    margin-left: calc(100% * 6 / 12); }

.push-xs-6 {
  left: calc(100% * 6 / 12); }

.pull-xs-6 {
  right: calc(100% * 6 / 12); }

.col-xs-7 {
  width: calc(100% * 7 / 12 - 31px); }
  .col-xs-7.mod_article, .col-xs-7.no-margin {
    width: calc(100% * 7 / 12); }
  .col-xs-7.no-margin-left, .col-xs-7.no-margin-right {
    width: calc(100% * 7 / 12 - 16px); }

.offset-xs-7 {
  margin-left: calc(100% * 7 / 12 + 16px); }
  .offset-xs-7.mod_article {
    margin-left: calc(100% * 7 / 12); }

.push-xs-7 {
  left: calc(100% * 7 / 12); }

.pull-xs-7 {
  right: calc(100% * 7 / 12); }

.col-xs-8 {
  width: calc(100% * 8 / 12 - 31px); }
  .col-xs-8.mod_article, .col-xs-8.no-margin {
    width: calc(100% * 8 / 12); }
  .col-xs-8.no-margin-left, .col-xs-8.no-margin-right {
    width: calc(100% * 8 / 12 - 16px); }

.offset-xs-8 {
  margin-left: calc(100% * 8 / 12 + 16px); }
  .offset-xs-8.mod_article {
    margin-left: calc(100% * 8 / 12); }

.push-xs-8 {
  left: calc(100% * 8 / 12); }

.pull-xs-8 {
  right: calc(100% * 8 / 12); }

.col-xs-9 {
  width: calc(100% * 9 / 12 - 31px); }
  .col-xs-9.mod_article, .col-xs-9.no-margin {
    width: calc(100% * 9 / 12); }
  .col-xs-9.no-margin-left, .col-xs-9.no-margin-right {
    width: calc(100% * 9 / 12 - 16px); }

.offset-xs-9 {
  margin-left: calc(100% * 9 / 12 + 16px); }
  .offset-xs-9.mod_article {
    margin-left: calc(100% * 9 / 12); }

.push-xs-9 {
  left: calc(100% * 9 / 12); }

.pull-xs-9 {
  right: calc(100% * 9 / 12); }

.col-xs-10 {
  width: calc(100% * 10 / 12 - 31px); }
  .col-xs-10.mod_article, .col-xs-10.no-margin {
    width: calc(100% * 10 / 12); }
  .col-xs-10.no-margin-left, .col-xs-10.no-margin-right {
    width: calc(100% * 10 / 12 - 16px); }

.offset-xs-10 {
  margin-left: calc(100% * 10 / 12 + 16px); }
  .offset-xs-10.mod_article {
    margin-left: calc(100% * 10 / 12); }

.push-xs-10 {
  left: calc(100% * 10 / 12); }

.pull-xs-10 {
  right: calc(100% * 10 / 12); }

.col-xs-11 {
  width: calc(100% * 11 / 12 - 31px); }
  .col-xs-11.mod_article, .col-xs-11.no-margin {
    width: calc(100% * 11 / 12); }
  .col-xs-11.no-margin-left, .col-xs-11.no-margin-right {
    width: calc(100% * 11 / 12 - 16px); }

.offset-xs-11 {
  margin-left: calc(100% * 11 / 12 + 16px); }
  .offset-xs-11.mod_article {
    margin-left: calc(100% * 11 / 12); }

.push-xs-11 {
  left: calc(100% * 11 / 12); }

.pull-xs-11 {
  right: calc(100% * 11 / 12); }

.col-xs-12 {
  width: calc(100% * 12 / 12 - 31px); }
  .col-xs-12.mod_article, .col-xs-12.no-margin {
    width: calc(100% * 12 / 12); }
  .col-xs-12.no-margin-left, .col-xs-12.no-margin-right {
    width: calc(100% * 12 / 12 - 16px); }

.offset-xs-12 {
  margin-left: calc(100% * 12 / 12 + 16px); }
  .offset-xs-12.mod_article {
    margin-left: calc(100% * 12 / 12); }

.push-xs-12 {
  left: calc(100% * 12 / 12); }

.pull-xs-12 {
  right: calc(100% * 12 / 12); }

@media screen and (max-width: 479px) {
  .col-xs-12 {
    clear: left; } }
@media screen and (min-width: 481px) {
  .col-xsm-0 {
    width: calc(100% * 0 / 12 - 31px); }
    .col-xsm-0.mod_article, .col-xsm-0.no-margin {
      width: calc(100% * 0 / 12); }
    .col-xsm-0.no-margin-left, .col-xsm-0.no-margin-right {
      width: calc(100% * 0 / 12 - 16px); }

  .offset-xsm-0 {
    margin-left: calc(100% * 0 / 12 + 16px); }
    .offset-xsm-0.mod_article {
      margin-left: calc(100% * 0 / 12); }

  .push-xsm-0 {
    left: calc(100% * 0 / 12); }

  .pull-xsm-0 {
    right: calc(100% * 0 / 12); }

  .col-xsm-1 {
    width: calc(100% * 1 / 12 - 31px); }
    .col-xsm-1.mod_article, .col-xsm-1.no-margin {
      width: calc(100% * 1 / 12); }
    .col-xsm-1.no-margin-left, .col-xsm-1.no-margin-right {
      width: calc(100% * 1 / 12 - 16px); }

  .offset-xsm-1 {
    margin-left: calc(100% * 1 / 12 + 16px); }
    .offset-xsm-1.mod_article {
      margin-left: calc(100% * 1 / 12); }

  .push-xsm-1 {
    left: calc(100% * 1 / 12); }

  .pull-xsm-1 {
    right: calc(100% * 1 / 12); }

  .col-xsm-2 {
    width: calc(100% * 2 / 12 - 31px); }
    .col-xsm-2.mod_article, .col-xsm-2.no-margin {
      width: calc(100% * 2 / 12); }
    .col-xsm-2.no-margin-left, .col-xsm-2.no-margin-right {
      width: calc(100% * 2 / 12 - 16px); }

  .offset-xsm-2 {
    margin-left: calc(100% * 2 / 12 + 16px); }
    .offset-xsm-2.mod_article {
      margin-left: calc(100% * 2 / 12); }

  .push-xsm-2 {
    left: calc(100% * 2 / 12); }

  .pull-xsm-2 {
    right: calc(100% * 2 / 12); }

  .col-xsm-3 {
    width: calc(100% * 3 / 12 - 31px); }
    .col-xsm-3.mod_article, .col-xsm-3.no-margin {
      width: calc(100% * 3 / 12); }
    .col-xsm-3.no-margin-left, .col-xsm-3.no-margin-right {
      width: calc(100% * 3 / 12 - 16px); }

  .offset-xsm-3 {
    margin-left: calc(100% * 3 / 12 + 16px); }
    .offset-xsm-3.mod_article {
      margin-left: calc(100% * 3 / 12); }

  .push-xsm-3 {
    left: calc(100% * 3 / 12); }

  .pull-xsm-3 {
    right: calc(100% * 3 / 12); }

  .col-xsm-4 {
    width: calc(100% * 4 / 12 - 31px); }
    .col-xsm-4.mod_article, .col-xsm-4.no-margin {
      width: calc(100% * 4 / 12); }
    .col-xsm-4.no-margin-left, .col-xsm-4.no-margin-right {
      width: calc(100% * 4 / 12 - 16px); }

  .offset-xsm-4 {
    margin-left: calc(100% * 4 / 12 + 16px); }
    .offset-xsm-4.mod_article {
      margin-left: calc(100% * 4 / 12); }

  .push-xsm-4 {
    left: calc(100% * 4 / 12); }

  .pull-xsm-4 {
    right: calc(100% * 4 / 12); }

  .col-xsm-5 {
    width: calc(100% * 5 / 12 - 31px); }
    .col-xsm-5.mod_article, .col-xsm-5.no-margin {
      width: calc(100% * 5 / 12); }
    .col-xsm-5.no-margin-left, .col-xsm-5.no-margin-right {
      width: calc(100% * 5 / 12 - 16px); }

  .offset-xsm-5 {
    margin-left: calc(100% * 5 / 12 + 16px); }
    .offset-xsm-5.mod_article {
      margin-left: calc(100% * 5 / 12); }

  .push-xsm-5 {
    left: calc(100% * 5 / 12); }

  .pull-xsm-5 {
    right: calc(100% * 5 / 12); }

  .col-xsm-6 {
    width: calc(100% * 6 / 12 - 31px); }
    .col-xsm-6.mod_article, .col-xsm-6.no-margin {
      width: calc(100% * 6 / 12); }
    .col-xsm-6.no-margin-left, .col-xsm-6.no-margin-right {
      width: calc(100% * 6 / 12 - 16px); }

  .offset-xsm-6 {
    margin-left: calc(100% * 6 / 12 + 16px); }
    .offset-xsm-6.mod_article {
      margin-left: calc(100% * 6 / 12); }

  .push-xsm-6 {
    left: calc(100% * 6 / 12); }

  .pull-xsm-6 {
    right: calc(100% * 6 / 12); }

  .col-xsm-7 {
    width: calc(100% * 7 / 12 - 31px); }
    .col-xsm-7.mod_article, .col-xsm-7.no-margin {
      width: calc(100% * 7 / 12); }
    .col-xsm-7.no-margin-left, .col-xsm-7.no-margin-right {
      width: calc(100% * 7 / 12 - 16px); }

  .offset-xsm-7 {
    margin-left: calc(100% * 7 / 12 + 16px); }
    .offset-xsm-7.mod_article {
      margin-left: calc(100% * 7 / 12); }

  .push-xsm-7 {
    left: calc(100% * 7 / 12); }

  .pull-xsm-7 {
    right: calc(100% * 7 / 12); }

  .col-xsm-8 {
    width: calc(100% * 8 / 12 - 31px); }
    .col-xsm-8.mod_article, .col-xsm-8.no-margin {
      width: calc(100% * 8 / 12); }
    .col-xsm-8.no-margin-left, .col-xsm-8.no-margin-right {
      width: calc(100% * 8 / 12 - 16px); }

  .offset-xsm-8 {
    margin-left: calc(100% * 8 / 12 + 16px); }
    .offset-xsm-8.mod_article {
      margin-left: calc(100% * 8 / 12); }

  .push-xsm-8 {
    left: calc(100% * 8 / 12); }

  .pull-xsm-8 {
    right: calc(100% * 8 / 12); }

  .col-xsm-9 {
    width: calc(100% * 9 / 12 - 31px); }
    .col-xsm-9.mod_article, .col-xsm-9.no-margin {
      width: calc(100% * 9 / 12); }
    .col-xsm-9.no-margin-left, .col-xsm-9.no-margin-right {
      width: calc(100% * 9 / 12 - 16px); }

  .offset-xsm-9 {
    margin-left: calc(100% * 9 / 12 + 16px); }
    .offset-xsm-9.mod_article {
      margin-left: calc(100% * 9 / 12); }

  .push-xsm-9 {
    left: calc(100% * 9 / 12); }

  .pull-xsm-9 {
    right: calc(100% * 9 / 12); }

  .col-xsm-10 {
    width: calc(100% * 10 / 12 - 31px); }
    .col-xsm-10.mod_article, .col-xsm-10.no-margin {
      width: calc(100% * 10 / 12); }
    .col-xsm-10.no-margin-left, .col-xsm-10.no-margin-right {
      width: calc(100% * 10 / 12 - 16px); }

  .offset-xsm-10 {
    margin-left: calc(100% * 10 / 12 + 16px); }
    .offset-xsm-10.mod_article {
      margin-left: calc(100% * 10 / 12); }

  .push-xsm-10 {
    left: calc(100% * 10 / 12); }

  .pull-xsm-10 {
    right: calc(100% * 10 / 12); }

  .col-xsm-11 {
    width: calc(100% * 11 / 12 - 31px); }
    .col-xsm-11.mod_article, .col-xsm-11.no-margin {
      width: calc(100% * 11 / 12); }
    .col-xsm-11.no-margin-left, .col-xsm-11.no-margin-right {
      width: calc(100% * 11 / 12 - 16px); }

  .offset-xsm-11 {
    margin-left: calc(100% * 11 / 12 + 16px); }
    .offset-xsm-11.mod_article {
      margin-left: calc(100% * 11 / 12); }

  .push-xsm-11 {
    left: calc(100% * 11 / 12); }

  .pull-xsm-11 {
    right: calc(100% * 11 / 12); }

  .col-xsm-12 {
    width: calc(100% * 12 / 12 - 31px); }
    .col-xsm-12.mod_article, .col-xsm-12.no-margin {
      width: calc(100% * 12 / 12); }
    .col-xsm-12.no-margin-left, .col-xsm-12.no-margin-right {
      width: calc(100% * 12 / 12 - 16px); }

  .offset-xsm-12 {
    margin-left: calc(100% * 12 / 12 + 16px); }
    .offset-xsm-12.mod_article {
      margin-left: calc(100% * 12 / 12); }

  .push-xsm-12 {
    left: calc(100% * 12 / 12); }

  .pull-xsm-12 {
    right: calc(100% * 12 / 12); }

  .grid {
    max-width: 480px; } }
@media screen and (min-width: 481px) and (max-width: 768px) {
  .col-xsm-12 {
    clear: left; } }
@media screen and (min-width: 481px) {
  .col-xsm-hide {
    display: none; } }
@media screen and (min-width: 769px) {
  .col-sm-0 {
    width: calc(100% * 0 / 12 - 31px); }
    .col-sm-0.mod_article, .col-sm-0.no-margin {
      width: calc(100% * 0 / 12); }
    .col-sm-0.no-margin-left, .col-sm-0.no-margin-right {
      width: calc(100% * 0 / 12 - 16px); }

  .offset-sm-0 {
    margin-left: calc(100% * 0 / 12 + 16px); }
    .offset-sm-0.mod_article {
      margin-left: calc(100% * 0 / 12); }

  .push-sm-0 {
    left: calc(100% * 0 / 12); }

  .pull-sm-0 {
    right: calc(100% * 0 / 12); }

  .col-sm-1 {
    width: calc(100% * 1 / 12 - 31px); }
    .col-sm-1.mod_article, .col-sm-1.no-margin {
      width: calc(100% * 1 / 12); }
    .col-sm-1.no-margin-left, .col-sm-1.no-margin-right {
      width: calc(100% * 1 / 12 - 16px); }

  .offset-sm-1 {
    margin-left: calc(100% * 1 / 12 + 16px); }
    .offset-sm-1.mod_article {
      margin-left: calc(100% * 1 / 12); }

  .push-sm-1 {
    left: calc(100% * 1 / 12); }

  .pull-sm-1 {
    right: calc(100% * 1 / 12); }

  .col-sm-2 {
    width: calc(100% * 2 / 12 - 31px); }
    .col-sm-2.mod_article, .col-sm-2.no-margin {
      width: calc(100% * 2 / 12); }
    .col-sm-2.no-margin-left, .col-sm-2.no-margin-right {
      width: calc(100% * 2 / 12 - 16px); }

  .offset-sm-2 {
    margin-left: calc(100% * 2 / 12 + 16px); }
    .offset-sm-2.mod_article {
      margin-left: calc(100% * 2 / 12); }

  .push-sm-2 {
    left: calc(100% * 2 / 12); }

  .pull-sm-2 {
    right: calc(100% * 2 / 12); }

  .col-sm-3 {
    width: calc(100% * 3 / 12 - 31px); }
    .col-sm-3.mod_article, .col-sm-3.no-margin {
      width: calc(100% * 3 / 12); }
    .col-sm-3.no-margin-left, .col-sm-3.no-margin-right {
      width: calc(100% * 3 / 12 - 16px); }

  .offset-sm-3 {
    margin-left: calc(100% * 3 / 12 + 16px); }
    .offset-sm-3.mod_article {
      margin-left: calc(100% * 3 / 12); }

  .push-sm-3 {
    left: calc(100% * 3 / 12); }

  .pull-sm-3 {
    right: calc(100% * 3 / 12); }

  .col-sm-4 {
    width: calc(100% * 4 / 12 - 31px); }
    .col-sm-4.mod_article, .col-sm-4.no-margin {
      width: calc(100% * 4 / 12); }
    .col-sm-4.no-margin-left, .col-sm-4.no-margin-right {
      width: calc(100% * 4 / 12 - 16px); }

  .offset-sm-4 {
    margin-left: calc(100% * 4 / 12 + 16px); }
    .offset-sm-4.mod_article {
      margin-left: calc(100% * 4 / 12); }

  .push-sm-4 {
    left: calc(100% * 4 / 12); }

  .pull-sm-4 {
    right: calc(100% * 4 / 12); }

  .col-sm-5 {
    width: calc(100% * 5 / 12 - 31px); }
    .col-sm-5.mod_article, .col-sm-5.no-margin {
      width: calc(100% * 5 / 12); }
    .col-sm-5.no-margin-left, .col-sm-5.no-margin-right {
      width: calc(100% * 5 / 12 - 16px); }

  .offset-sm-5 {
    margin-left: calc(100% * 5 / 12 + 16px); }
    .offset-sm-5.mod_article {
      margin-left: calc(100% * 5 / 12); }

  .push-sm-5 {
    left: calc(100% * 5 / 12); }

  .pull-sm-5 {
    right: calc(100% * 5 / 12); }

  .col-sm-6 {
    width: calc(100% * 6 / 12 - 31px); }
    .col-sm-6.mod_article, .col-sm-6.no-margin {
      width: calc(100% * 6 / 12); }
    .col-sm-6.no-margin-left, .col-sm-6.no-margin-right {
      width: calc(100% * 6 / 12 - 16px); }

  .offset-sm-6 {
    margin-left: calc(100% * 6 / 12 + 16px); }
    .offset-sm-6.mod_article {
      margin-left: calc(100% * 6 / 12); }

  .push-sm-6 {
    left: calc(100% * 6 / 12); }

  .pull-sm-6 {
    right: calc(100% * 6 / 12); }

  .col-sm-7 {
    width: calc(100% * 7 / 12 - 31px); }
    .col-sm-7.mod_article, .col-sm-7.no-margin {
      width: calc(100% * 7 / 12); }
    .col-sm-7.no-margin-left, .col-sm-7.no-margin-right {
      width: calc(100% * 7 / 12 - 16px); }

  .offset-sm-7 {
    margin-left: calc(100% * 7 / 12 + 16px); }
    .offset-sm-7.mod_article {
      margin-left: calc(100% * 7 / 12); }

  .push-sm-7 {
    left: calc(100% * 7 / 12); }

  .pull-sm-7 {
    right: calc(100% * 7 / 12); }

  .col-sm-8 {
    width: calc(100% * 8 / 12 - 31px); }
    .col-sm-8.mod_article, .col-sm-8.no-margin {
      width: calc(100% * 8 / 12); }
    .col-sm-8.no-margin-left, .col-sm-8.no-margin-right {
      width: calc(100% * 8 / 12 - 16px); }

  .offset-sm-8 {
    margin-left: calc(100% * 8 / 12 + 16px); }
    .offset-sm-8.mod_article {
      margin-left: calc(100% * 8 / 12); }

  .push-sm-8 {
    left: calc(100% * 8 / 12); }

  .pull-sm-8 {
    right: calc(100% * 8 / 12); }

  .col-sm-9 {
    width: calc(100% * 9 / 12 - 31px); }
    .col-sm-9.mod_article, .col-sm-9.no-margin {
      width: calc(100% * 9 / 12); }
    .col-sm-9.no-margin-left, .col-sm-9.no-margin-right {
      width: calc(100% * 9 / 12 - 16px); }

  .offset-sm-9 {
    margin-left: calc(100% * 9 / 12 + 16px); }
    .offset-sm-9.mod_article {
      margin-left: calc(100% * 9 / 12); }

  .push-sm-9 {
    left: calc(100% * 9 / 12); }

  .pull-sm-9 {
    right: calc(100% * 9 / 12); }

  .col-sm-10 {
    width: calc(100% * 10 / 12 - 31px); }
    .col-sm-10.mod_article, .col-sm-10.no-margin {
      width: calc(100% * 10 / 12); }
    .col-sm-10.no-margin-left, .col-sm-10.no-margin-right {
      width: calc(100% * 10 / 12 - 16px); }

  .offset-sm-10 {
    margin-left: calc(100% * 10 / 12 + 16px); }
    .offset-sm-10.mod_article {
      margin-left: calc(100% * 10 / 12); }

  .push-sm-10 {
    left: calc(100% * 10 / 12); }

  .pull-sm-10 {
    right: calc(100% * 10 / 12); }

  .col-sm-11 {
    width: calc(100% * 11 / 12 - 31px); }
    .col-sm-11.mod_article, .col-sm-11.no-margin {
      width: calc(100% * 11 / 12); }
    .col-sm-11.no-margin-left, .col-sm-11.no-margin-right {
      width: calc(100% * 11 / 12 - 16px); }

  .offset-sm-11 {
    margin-left: calc(100% * 11 / 12 + 16px); }
    .offset-sm-11.mod_article {
      margin-left: calc(100% * 11 / 12); }

  .push-sm-11 {
    left: calc(100% * 11 / 12); }

  .pull-sm-11 {
    right: calc(100% * 11 / 12); }

  .col-sm-12 {
    width: calc(100% * 12 / 12 - 31px); }
    .col-sm-12.mod_article, .col-sm-12.no-margin {
      width: calc(100% * 12 / 12); }
    .col-sm-12.no-margin-left, .col-sm-12.no-margin-right {
      width: calc(100% * 12 / 12 - 16px); }

  .offset-sm-12 {
    margin-left: calc(100% * 12 / 12 + 16px); }
    .offset-sm-12.mod_article {
      margin-left: calc(100% * 12 / 12); }

  .push-sm-12 {
    left: calc(100% * 12 / 12); }

  .pull-sm-12 {
    right: calc(100% * 12 / 12); }

  .grid {
    max-width: 768px; } }
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .col-sm-12 {
    clear: left; } }
@media screen and (min-width: 769px) {
  .col-sm-hide {
    display: none; } }
@media screen and (min-width: 1025px) {
  .col-md-0 {
    width: calc(100% * 0 / 12 - 31px); }
    .col-md-0.mod_article, .col-md-0.no-margin {
      width: calc(100% * 0 / 12); }
    .col-md-0.no-margin-left, .col-md-0.no-margin-right {
      width: calc(100% * 0 / 12 - 16px); }

  .offset-md-0 {
    margin-left: calc(100% * 0 / 12 + 16px); }
    .offset-md-0.mod_article {
      margin-left: calc(100% * 0 / 12); }

  .push-md-0 {
    left: calc(100% * 0 / 12); }

  .pull-md-0 {
    right: calc(100% * 0 / 12); }

  .col-md-1 {
    width: calc(100% * 1 / 12 - 31px); }
    .col-md-1.mod_article, .col-md-1.no-margin {
      width: calc(100% * 1 / 12); }
    .col-md-1.no-margin-left, .col-md-1.no-margin-right {
      width: calc(100% * 1 / 12 - 16px); }

  .offset-md-1 {
    margin-left: calc(100% * 1 / 12 + 15px); }
    .offset-md-1.mod_article {
      margin-left: calc(100% * 1 / 12); }

  .push-md-1 {
    left: calc(100% * 1 / 12); }

  .pull-md-1 {
    right: calc(100% * 1 / 12); }

  .col-md-2 {
    width: calc(100% * 2 / 12 - 31px); }
    .col-md-2.mod_article, .col-md-2.no-margin {
      width: calc(100% * 2 / 12); }
    .col-md-2.no-margin-left, .col-md-2.no-margin-right {
      width: calc(100% * 2 / 12 - 16px); }

  .offset-md-2 {
    margin-left: calc(100% * 2 / 12 + 16px); }
    .offset-md-2.mod_article {
      margin-left: calc(100% * 2 / 12); }

  .push-md-2 {
    left: calc(100% * 2 / 12); }

  .pull-md-2 {
    right: calc(100% * 2 / 12); }

  .col-md-3 {
    width: calc(100% * 3 / 12 - 31px); }
    .col-md-3.mod_article, .col-md-3.no-margin {
      width: calc(100% * 3 / 12); }
    .col-md-3.no-margin-left, .col-md-3.no-margin-right {
      width: calc(100% * 3 / 12 - 16px); }

  .offset-md-3 {
    margin-left: calc(100% * 3 / 12 + 16px); }
    .offset-md-3.mod_article {
      margin-left: calc(100% * 3 / 12); }

  .push-md-3 {
    left: calc(100% * 3 / 12); }

  .pull-md-3 {
    right: calc(100% * 3 / 12); }

  .col-md-4 {
    width: calc(100% * 4 / 12 - 31px); }
    .col-md-4.mod_article, .col-md-4.no-margin {
      width: calc(100% * 4 / 12); }
    .col-md-4.no-margin-left, .col-md-4.no-margin-right {
      width: calc(100% * 4 / 12 - 16px); }

  .offset-md-4 {
    margin-left: calc(100% * 4 / 12 + 16px); }
    .offset-md-4.mod_article {
      margin-left: calc(100% * 4 / 12); }

  .push-md-4 {
    left: calc(100% * 4 / 12); }

  .pull-md-4 {
    right: calc(100% * 4 / 12); }

  .col-md-5 {
    width: calc(100% * 5 / 12 - 31px); }
    .col-md-5.mod_article, .col-md-5.no-margin {
      width: calc(100% * 5 / 12); }
    .col-md-5.no-margin-left, .col-md-5.no-margin-right {
      width: calc(100% * 5 / 12 - 16px); }

  .offset-md-5 {
    margin-left: calc(100% * 5 / 12 + 16px); }
    .offset-md-5.mod_article {
      margin-left: calc(100% * 5 / 12); }

  .push-md-5 {
    left: calc(100% * 5 / 12); }

  .pull-md-5 {
    right: calc(100% * 5 / 12); }

  .col-md-6 {
    width: calc(100% * 6 / 12 - 31px); }
    .col-md-6.mod_article, .col-md-6.no-margin {
      width: calc(100% * 6 / 12); }
    .col-md-6.no-margin-left, .col-md-6.no-margin-right {
      width: calc(100% * 6 / 12 - 16px); }

  .offset-md-6 {
    margin-left: calc(100% * 6 / 12 + 16px); }
    .offset-md-6.mod_article {
      margin-left: calc(100% * 6 / 12); }

  .push-md-6 {
    left: calc(100% * 6 / 12); }

  .pull-md-6 {
    right: calc(100% * 6 / 12); }

  .col-md-7 {
    width: calc(100% * 7 / 12 - 31px); }
    .col-md-7.mod_article, .col-md-7.no-margin {
      width: calc(100% * 7 / 12); }
    .col-md-7.no-margin-left, .col-md-7.no-margin-right {
      width: calc(100% * 7 / 12 - 16px); }

  .offset-md-7 {
    margin-left: calc(100% * 7 / 12 + 16px); }
    .offset-md-7.mod_article {
      margin-left: calc(100% * 7 / 12); }

  .push-md-7 {
    left: calc(100% * 7 / 12); }

  .pull-md-7 {
    right: calc(100% * 7 / 12); }

  .col-md-8 {
    width: calc(100% * 8 / 12 - 31px); }
    .col-md-8.mod_article, .col-md-8.no-margin {
      width: calc(100% * 8 / 12); }
    .col-md-8.no-margin-left, .col-md-8.no-margin-right {
      width: calc(100% * 8 / 12 - 16px); }

  .offset-md-8 {
    margin-left: calc(100% * 8 / 12 + 16px); }
    .offset-md-8.mod_article {
      margin-left: calc(100% * 8 / 12); }

  .push-md-8 {
    left: calc(100% * 8 / 12); }

  .pull-md-8 {
    right: calc(100% * 8 / 12); }

  .col-md-9 {
    width: calc(100% * 9 / 12 - 31px); }
    .col-md-9.mod_article, .col-md-9.no-margin {
      width: calc(100% * 9 / 12); }
    .col-md-9.no-margin-left, .col-md-9.no-margin-right {
      width: calc(100% * 9 / 12 - 16px); }

  .offset-md-9 {
    margin-left: calc(100% * 9 / 12 + 16px); }
    .offset-md-9.mod_article {
      margin-left: calc(100% * 9 / 12); }

  .push-md-9 {
    left: calc(100% * 9 / 12); }

  .pull-md-9 {
    right: calc(100% * 9 / 12); }

  .col-md-10 {
    width: calc(100% * 10 / 12 - 31px); }
    .col-md-10.mod_article, .col-md-10.no-margin {
      width: calc(100% * 10 / 12); }
    .col-md-10.no-margin-left, .col-md-10.no-margin-right {
      width: calc(100% * 10 / 12 - 16px); }

  .offset-md-10 {
    margin-left: calc(100% * 10 / 12 + 16px); }
    .offset-md-10.mod_article {
      margin-left: calc(100% * 10 / 12); }

  .push-md-10 {
    left: calc(100% * 10 / 12); }

  .pull-md-10 {
    right: calc(100% * 10 / 12); }

  .col-md-11 {
    width: calc(100% * 11 / 12 - 31px); }
    .col-md-11.mod_article, .col-md-11.no-margin {
      width: calc(100% * 11 / 12); }
    .col-md-11.no-margin-left, .col-md-11.no-margin-right {
      width: calc(100% * 11 / 12 - 16px); }

  .offset-md-11 {
    margin-left: calc(100% * 11 / 12 + 16px); }
    .offset-md-11.mod_article {
      margin-left: calc(100% * 11 / 12); }

  .push-md-11 {
    left: calc(100% * 11 / 12); }

  .pull-md-11 {
    right: calc(100% * 11 / 12); }

  .col-md-12 {
    width: calc(100% * 12 / 12 - 31px); }
    .col-md-12.mod_article, .col-md-12.no-margin {
      width: calc(100% * 12 / 12); }
    .col-md-12.no-margin-left, .col-md-12.no-margin-right {
      width: calc(100% * 12 / 12 - 16px); }

  .offset-md-12 {
    margin-left: calc(100% * 12 / 12 + 16px); }
    .offset-md-12.mod_article {
      margin-left: calc(100% * 12 / 12); }

  .push-md-12 {
    left: calc(100% * 12 / 12); }

  .pull-md-12 {
    right: calc(100% * 12 / 12); }

  .grid {
    max-width: 1024px; } }
@media screen and (min-width: 1025px) and (max-width: 1170px) {
  .col-md-12 {
    clear: left; } }
@media screen and (min-width: 1025px) {
  .col-md-hide {
    display: none; } }
@media screen and (min-width: 1171px) {
  .col-lg-0 {
    width: calc(100% * 0 / 12 - 31px); }
    .col-lg-0.mod_article, .col-lg-0.no-margin {
      width: calc(100% * 0 / 12); }
    .col-lg-0.no-margin-left, .col-lg-0.no-margin-right {
      width: calc(100% * 0 / 12 - 16px); }

  .offset-lg-0 {
    margin-left: calc(100% * 0 / 12 + 16px); }
    .offset-lg-0.mod_article {
      margin-left: calc(100% * 0 / 12); }

  .push-lg-0 {
    left: calc(100% * 0 / 12); }

  .pull-lg-0 {
    right: calc(100% * 0 / 12); }

  .col-lg-1 {
    width: calc(100% * 1 / 12 - 31px); }
    .col-lg-1.mod_article, .col-lg-1.no-margin {
      width: calc(100% * 1 / 12); }
    .col-lg-1.no-margin-left, .col-lg-1.no-margin-right {
      width: calc(100% * 1 / 12 - 16px); }

  .offset-lg-1 {
    margin-left: calc(100% * 1 / 12 + 16px); }
    .offset-lg-1.mod_article {
      margin-left: calc(100% * 1 / 12); }

  .push-lg-1 {
    left: calc(100% * 1 / 12); }

  .pull-lg-1 {
    right: calc(100% * 1 / 12); }

  .col-lg-2 {
    width: calc(100% * 2 / 12 - 31px); }
    .col-lg-2.mod_article, .col-lg-2.no-margin {
      width: calc(100% * 2 / 12); }
    .col-lg-2.no-margin-left, .col-lg-2.no-margin-right {
      width: calc(100% * 2 / 12 - 16px); }

  .offset-lg-2 {
    margin-left: calc(100% * 2 / 12 + 16px); }
    .offset-lg-2.mod_article {
      margin-left: calc(100% * 2 / 12); }

  .push-lg-2 {
    left: calc(100% * 2 / 12); }

  .pull-lg-2 {
    right: calc(100% * 2 / 12); }

  .col-lg-3 {
    width: calc(100% * 3 / 12 - 31px); }
    .col-lg-3.mod_article, .col-lg-3.no-margin {
      width: calc(100% * 3 / 12); }
    .col-lg-3.no-margin-left, .col-lg-3.no-margin-right {
      width: calc(100% * 3 / 12 - 16px); }

  .offset-lg-3 {
    margin-left: calc(100% * 3 / 12 + 16px); }
    .offset-lg-3.mod_article {
      margin-left: calc(100% * 3 / 12); }

  .push-lg-3 {
    left: calc(100% * 3 / 12); }

  .pull-lg-3 {
    right: calc(100% * 3 / 12); }

  .col-lg-4 {
    width: calc(100% * 4 / 12 - 31px); }
    .col-lg-4.mod_article, .col-lg-4.no-margin {
      width: calc(100% * 4 / 12); }
    .col-lg-4.no-margin-left, .col-lg-4.no-margin-right {
      width: calc(100% * 4 / 12 - 16px); }

  .offset-lg-4 {
    margin-left: calc(100% * 4 / 12 + 16px); }
    .offset-lg-4.mod_article {
      margin-left: calc(100% * 4 / 12); }

  .push-lg-4 {
    left: calc(100% * 4 / 12); }

  .pull-lg-4 {
    right: calc(100% * 4 / 12); }

  .col-lg-5 {
    width: calc(100% * 5 / 12 - 31px); }
    .col-lg-5.mod_article, .col-lg-5.no-margin {
      width: calc(100% * 5 / 12); }
    .col-lg-5.no-margin-left, .col-lg-5.no-margin-right {
      width: calc(100% * 5 / 12 - 16px); }

  .offset-lg-5 {
    margin-left: calc(100% * 5 / 12 + 16px); }
    .offset-lg-5.mod_article {
      margin-left: calc(100% * 5 / 12); }

  .push-lg-5 {
    left: calc(100% * 5 / 12); }

  .pull-lg-5 {
    right: calc(100% * 5 / 12); }

  .col-lg-6 {
    width: calc(100% * 6 / 12 - 31px); }
    .col-lg-6.mod_article, .col-lg-6.no-margin {
      width: calc(100% * 6 / 12); }
    .col-lg-6.no-margin-left, .col-lg-6.no-margin-right {
      width: calc(100% * 6 / 12 - 16px); }

  .offset-lg-6 {
    margin-left: calc(100% * 6 / 12 + 16px); }
    .offset-lg-6.mod_article {
      margin-left: calc(100% * 6 / 12); }

  .push-lg-6 {
    left: calc(100% * 6 / 12); }

  .pull-lg-6 {
    right: calc(100% * 6 / 12); }

  .col-lg-7 {
    width: calc(100% * 7 / 12 - 31px); }
    .col-lg-7.mod_article, .col-lg-7.no-margin {
      width: calc(100% * 7 / 12); }
    .col-lg-7.no-margin-left, .col-lg-7.no-margin-right {
      width: calc(100% * 7 / 12 - 16px); }

  .offset-lg-7 {
    margin-left: calc(100% * 7 / 12 + 16px); }
    .offset-lg-7.mod_article {
      margin-left: calc(100% * 7 / 12); }

  .push-lg-7 {
    left: calc(100% * 7 / 12); }

  .pull-lg-7 {
    right: calc(100% * 7 / 12); }

  .col-lg-8 {
    width: calc(100% * 8 / 12 - 31px); }
    .col-lg-8.mod_article, .col-lg-8.no-margin {
      width: calc(100% * 8 / 12); }
    .col-lg-8.no-margin-left, .col-lg-8.no-margin-right {
      width: calc(100% * 8 / 12 - 16px); }

  .offset-lg-8 {
    margin-left: calc(100% * 8 / 12 + 16px); }
    .offset-lg-8.mod_article {
      margin-left: calc(100% * 8 / 12); }

  .push-lg-8 {
    left: calc(100% * 8 / 12); }

  .pull-lg-8 {
    right: calc(100% * 8 / 12); }

  .col-lg-9 {
    width: calc(100% * 9 / 12 - 31px); }
    .col-lg-9.mod_article, .col-lg-9.no-margin {
      width: calc(100% * 9 / 12); }
    .col-lg-9.no-margin-left, .col-lg-9.no-margin-right {
      width: calc(100% * 9 / 12 - 16px); }

  .offset-lg-9 {
    margin-left: calc(100% * 9 / 12 + 16px); }
    .offset-lg-9.mod_article {
      margin-left: calc(100% * 9 / 12); }

  .push-lg-9 {
    left: calc(100% * 9 / 12); }

  .pull-lg-9 {
    right: calc(100% * 9 / 12); }

  .col-lg-10 {
    width: calc(100% * 10 / 12 - 31px); }
    .col-lg-10.mod_article, .col-lg-10.no-margin {
      width: calc(100% * 10 / 12); }
    .col-lg-10.no-margin-left, .col-lg-10.no-margin-right {
      width: calc(100% * 10 / 12 - 16px); }

  .offset-lg-10 {
    margin-left: calc(100% * 10 / 12 + 16px); }
    .offset-lg-10.mod_article {
      margin-left: calc(100% * 10 / 12); }

  .push-lg-10 {
    left: calc(100% * 10 / 12); }

  .pull-lg-10 {
    right: calc(100% * 10 / 12); }

  .col-lg-11 {
    width: calc(100% * 11 / 12 - 31px); }
    .col-lg-11.mod_article, .col-lg-11.no-margin {
      width: calc(100% * 11 / 12); }
    .col-lg-11.no-margin-left, .col-lg-11.no-margin-right {
      width: calc(100% * 11 / 12 - 16px); }

  .offset-lg-11 {
    margin-left: calc(100% * 11 / 12 + 16px); }
    .offset-lg-11.mod_article {
      margin-left: calc(100% * 11 / 12); }

  .push-lg-11 {
    left: calc(100% * 11 / 12); }

  .pull-lg-11 {
    right: calc(100% * 11 / 12); }

  .col-lg-12 {
    width: calc(100% * 12 / 12 - 31px); }
    .col-lg-12.mod_article, .col-lg-12.no-margin {
      width: calc(100% * 12 / 12); }
    .col-lg-12.no-margin-left, .col-lg-12.no-margin-right {
      width: calc(100% * 12 / 12 - 16px); }

  .offset-lg-12 {
    margin-left: calc(100% * 12 / 12 + 16px); }
    .offset-lg-12.mod_article {
      margin-left: calc(100% * 12 / 12); }

  .push-lg-12 {
    left: calc(100% * 12 / 12); }

  .pull-lg-12 {
    right: calc(100% * 12 / 12); }

  .grid {
    max-width: 1170px; } }
@media screen and (min-width: 1171px) and (max-width: 1280px) {
  .col-lg-12 {
    clear: left; } }
@media screen and (min-width: 1171px) {
  .col-lg-hide {
    display: none; } }
@media screen and (min-width: 1281px) {
  .col-xl-0 {
    width: calc(100% * 0 / 12 - 31px); }
    .col-xl-0.mod_article, .col-xl-0.no-margin {
      width: calc(100% * 0 / 12); }
    .col-xl-0.no-margin-left, .col-xl-0.no-margin-right {
      width: calc(100% * 0 / 12 - 16px); }

  .offset-xl-0 {
    margin-left: calc(100% * 0 / 12 + 16px); }
    .offset-xl-0.mod_article {
      margin-left: calc(100% * 0 / 12); }

  .push-xl-0 {
    left: calc(100% * 0 / 12); }

  .pull-xl-0 {
    right: calc(100% * 0 / 12); }

  .col-xl-1 {
    width: calc(100% * 1 / 12 - 31px); }
    .col-xl-1.mod_article, .col-xl-1.no-margin {
      width: calc(100% * 1 / 12); }
    .col-xl-1.no-margin-left, .col-xl-1.no-margin-right {
      width: calc(100% * 1 / 12 - 16px); }

  .offset-xl-1 {
    margin-left: calc(100% * 1 / 12 + 16px); }
    .offset-xl-1.mod_article {
      margin-left: calc(100% * 1 / 12); }

  .push-xl-1 {
    left: calc(100% * 1 / 12); }

  .pull-xl-1 {
    right: calc(100% * 1 / 12); }

  .col-xl-2 {
    width: calc(100% * 2 / 12 - 31px); }
    .col-xl-2.mod_article, .col-xl-2.no-margin {
      width: calc(100% * 2 / 12); }
    .col-xl-2.no-margin-left, .col-xl-2.no-margin-right {
      width: calc(100% * 2 / 12 - 16px); }

  .offset-xl-2 {
    margin-left: calc(100% * 2 / 12 + 16px); }
    .offset-xl-2.mod_article {
      margin-left: calc(100% * 2 / 12); }

  .push-xl-2 {
    left: calc(100% * 2 / 12); }

  .pull-xl-2 {
    right: calc(100% * 2 / 12); }

  .col-xl-3 {
    width: calc(100% * 3 / 12 - 31px); }
    .col-xl-3.mod_article, .col-xl-3.no-margin {
      width: calc(100% * 3 / 12); }
    .col-xl-3.no-margin-left, .col-xl-3.no-margin-right {
      width: calc(100% * 3 / 12 - 16px); }

  .offset-xl-3 {
    margin-left: calc(100% * 3 / 12 + 16px); }
    .offset-xl-3.mod_article {
      margin-left: calc(100% * 3 / 12); }

  .push-xl-3 {
    left: calc(100% * 3 / 12); }

  .pull-xl-3 {
    right: calc(100% * 3 / 12); }

  .col-xl-4 {
    width: calc(100% * 4 / 12 - 31px); }
    .col-xl-4.mod_article, .col-xl-4.no-margin {
      width: calc(100% * 4 / 12); }
    .col-xl-4.no-margin-left, .col-xl-4.no-margin-right {
      width: calc(100% * 4 / 12 - 16px); }

  .offset-xl-4 {
    margin-left: calc(100% * 4 / 12 + 16px); }
    .offset-xl-4.mod_article {
      margin-left: calc(100% * 4 / 12); }

  .push-xl-4 {
    left: calc(100% * 4 / 12); }

  .pull-xl-4 {
    right: calc(100% * 4 / 12); }

  .col-xl-5 {
    width: calc(100% * 5 / 12 - 31px); }
    .col-xl-5.mod_article, .col-xl-5.no-margin {
      width: calc(100% * 5 / 12); }
    .col-xl-5.no-margin-left, .col-xl-5.no-margin-right {
      width: calc(100% * 5 / 12 - 16px); }

  .offset-xl-5 {
    margin-left: calc(100% * 5 / 12 + 16px); }
    .offset-xl-5.mod_article {
      margin-left: calc(100% * 5 / 12); }

  .push-xl-5 {
    left: calc(100% * 5 / 12); }

  .pull-xl-5 {
    right: calc(100% * 5 / 12); }

  .col-xl-6 {
    width: calc(100% * 6 / 12 - 31px); }
    .col-xl-6.mod_article, .col-xl-6.no-margin {
      width: calc(100% * 6 / 12); }
    .col-xl-6.no-margin-left, .col-xl-6.no-margin-right {
      width: calc(100% * 6 / 12 - 16px); }

  .offset-xl-6 {
    margin-left: calc(100% * 6 / 12 + 16px); }
    .offset-xl-6.mod_article {
      margin-left: calc(100% * 6 / 12); }

  .push-xl-6 {
    left: calc(100% * 6 / 12); }

  .pull-xl-6 {
    right: calc(100% * 6 / 12); }

  .col-xl-7 {
    width: calc(100% * 7 / 12 - 31px); }
    .col-xl-7.mod_article, .col-xl-7.no-margin {
      width: calc(100% * 7 / 12); }
    .col-xl-7.no-margin-left, .col-xl-7.no-margin-right {
      width: calc(100% * 7 / 12 - 16px); }

  .offset-xl-7 {
    margin-left: calc(100% * 7 / 12 + 16px); }
    .offset-xl-7.mod_article {
      margin-left: calc(100% * 7 / 12); }

  .push-xl-7 {
    left: calc(100% * 7 / 12); }

  .pull-xl-7 {
    right: calc(100% * 7 / 12); }

  .col-xl-8 {
    width: calc(100% * 8 / 12 - 31px); }
    .col-xl-8.mod_article, .col-xl-8.no-margin {
      width: calc(100% * 8 / 12); }
    .col-xl-8.no-margin-left, .col-xl-8.no-margin-right {
      width: calc(100% * 8 / 12 - 16px); }

  .offset-xl-8 {
    margin-left: calc(100% * 8 / 12 + 16px); }
    .offset-xl-8.mod_article {
      margin-left: calc(100% * 8 / 12); }

  .push-xl-8 {
    left: calc(100% * 8 / 12); }

  .pull-xl-8 {
    right: calc(100% * 8 / 12); }

  .col-xl-9 {
    width: calc(100% * 9 / 12 - 31px); }
    .col-xl-9.mod_article, .col-xl-9.no-margin {
      width: calc(100% * 9 / 12); }
    .col-xl-9.no-margin-left, .col-xl-9.no-margin-right {
      width: calc(100% * 9 / 12 - 16px); }

  .offset-xl-9 {
    margin-left: calc(100% * 9 / 12 + 16px); }
    .offset-xl-9.mod_article {
      margin-left: calc(100% * 9 / 12); }

  .push-xl-9 {
    left: calc(100% * 9 / 12); }

  .pull-xl-9 {
    right: calc(100% * 9 / 12); }

  .col-xl-10 {
    width: calc(100% * 10 / 12 - 31px); }
    .col-xl-10.mod_article, .col-xl-10.no-margin {
      width: calc(100% * 10 / 12); }
    .col-xl-10.no-margin-left, .col-xl-10.no-margin-right {
      width: calc(100% * 10 / 12 - 16px); }

  .offset-xl-10 {
    margin-left: calc(100% * 10 / 12 + 16px); }
    .offset-xl-10.mod_article {
      margin-left: calc(100% * 10 / 12); }

  .push-xl-10 {
    left: calc(100% * 10 / 12); }

  .pull-xl-10 {
    right: calc(100% * 10 / 12); }

  .col-xl-11 {
    width: calc(100% * 11 / 12 - 31px); }
    .col-xl-11.mod_article, .col-xl-11.no-margin {
      width: calc(100% * 11 / 12); }
    .col-xl-11.no-margin-left, .col-xl-11.no-margin-right {
      width: calc(100% * 11 / 12 - 16px); }

  .offset-xl-11 {
    margin-left: calc(100% * 11 / 12 + 16px); }
    .offset-xl-11.mod_article {
      margin-left: calc(100% * 11 / 12); }

  .push-xl-11 {
    left: calc(100% * 11 / 12); }

  .pull-xl-11 {
    right: calc(100% * 11 / 12); }

  .col-xl-12 {
    width: calc(100% * 12 / 12 - 31px); }
    .col-xl-12.mod_article, .col-xl-12.no-margin {
      width: calc(100% * 12 / 12); }
    .col-xl-12.no-margin-left, .col-xl-12.no-margin-right {
      width: calc(100% * 12 / 12 - 16px); }

  .offset-xl-12 {
    margin-left: calc(100% * 12 / 12 + 16px); }
    .offset-xl-12.mod_article {
      margin-left: calc(100% * 12 / 12); }

  .push-xl-12 {
    left: calc(100% * 12 / 12); }

  .pull-xl-12 {
    right: calc(100% * 12 / 12); }

  .grid {
    max-width: 1280px; } }
@media screen and (min-width: 1281px) {
  .col-xl-12 {
    clear: left; }

  .col-xl-hide {
    display: none; } }
/*@import "_gridViewLayout";*/
/* OPTIONAL: slick-slider */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  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: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .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; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .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; }

.slick-arrow.slick-hidden {
  display: none; }

/* OPTIONAL: magnific-popup*/
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  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;
  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: 1045; }

.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: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-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;
  user-select: none; }

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

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

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

.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: 1046;
  box-shadow: none;
  touch-action: manipulation; }
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: #FFF;
  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: #333; }

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

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

.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 {
    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 {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    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: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  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: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.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: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;
    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; } }
/* 
    Created on : 26.02.2015, 13:21:0
    Changes     : 
        22.07.2015, 11:24:00
        07.07.2016 - fixed gallery-listing, remove junk
*/
.invisible {
  position: absolute;
  left: -6000px;
  top: -6000px;
  display: none; }

nav ul {
  margin: 0; }
nav a {
  text-decoration: none; }

a img {
  display: block; }

figure.float_right {
  float: right; }
figure.float_left {
  float: left; }
figure img {
  display: block; }

.ce_gallery ul {
  margin-top: 0; }
.ce_gallery li {
  float: left;
  vertical-align: middle;
  margin-top: 0;
  margin-right: 30px;
  margin-bottom: 30px; }
.ce_gallery figure {
  margin: 0; }
.ce_gallery img {
  max-width: 100%;
  height: auto; }
.ce_gallery .cols_1 li {
  width: 100%;
  margin-right: 0; }
@media screen and (max-width: 480px) {
  .ce_gallery .cols_2 li,
  .ce_gallery .cols_3 li,
  .ce_gallery .cols_4 li,
  .ce_gallery .cols_5 li,
  .ce_gallery .cols_6 li,
  .ce_gallery .cols_7 li,
  .ce_gallery .cols_8 li,
  .ce_gallery .cols_9 li,
  .ce_gallery .cols_10 li,
  .ce_gallery .cols_11 li,
  .ce_gallery .cols_12 li {
    margin-right: 0; } }
@media screen and (min-width: 481px) {
  .ce_gallery .cols_2 li,
  .ce_gallery .cols_3 li,
  .ce_gallery .cols_4 li,
  .ce_gallery .cols_5 li,
  .ce_gallery .cols_6 li,
  .ce_gallery .cols_7 li,
  .ce_gallery .cols_8 li,
  .ce_gallery .cols_9 li,
  .ce_gallery .cols_10 li,
  .ce_gallery .cols_11 li,
  .ce_gallery .cols_12 li {
    width: calc((100% - 30px) / 2); } }
  @media screen and (min-width: 481px) and (max-width: 768px) {
    .ce_gallery .cols_2 li:nth-child(2n + 1),
    .ce_gallery .cols_3 li:nth-child(2n + 1),
    .ce_gallery .cols_4 li:nth-child(2n + 1),
    .ce_gallery .cols_5 li:nth-child(2n + 1),
    .ce_gallery .cols_6 li:nth-child(2n + 1),
    .ce_gallery .cols_7 li:nth-child(2n + 1),
    .ce_gallery .cols_8 li:nth-child(2n + 1),
    .ce_gallery .cols_9 li:nth-child(2n + 1),
    .ce_gallery .cols_10 li:nth-child(2n + 1),
    .ce_gallery .cols_11 li:nth-child(2n + 1),
    .ce_gallery .cols_12 li:nth-child(2n + 1) {
      clear: left; }
    .ce_gallery .cols_2 li:nth-child(2n),
    .ce_gallery .cols_3 li:nth-child(2n),
    .ce_gallery .cols_4 li:nth-child(2n),
    .ce_gallery .cols_5 li:nth-child(2n),
    .ce_gallery .cols_6 li:nth-child(2n),
    .ce_gallery .cols_7 li:nth-child(2n),
    .ce_gallery .cols_8 li:nth-child(2n),
    .ce_gallery .cols_9 li:nth-child(2n),
    .ce_gallery .cols_10 li:nth-child(2n),
    .ce_gallery .cols_11 li:nth-child(2n),
    .ce_gallery .cols_12 li:nth-child(2n) {
      margin-right: 0; } }

@media screen and (min-width: 769px) {
  .ce_gallery .cols_2 li {
    width: calc((100% - 30px) / 2); }
    .ce_gallery .cols_2 li:nth-child(2n + 1) {
      clear: left; }
    .ce_gallery .cols_2 li:nth-child(2n) {
      margin-right: 0; }
  .ce_gallery .cols_3 li {
    width: calc((100% - 60px) / 3); }
    .ce_gallery .cols_3 li:nth-child(3n + 1) {
      clear: left; }
    .ce_gallery .cols_3 li:nth-child(3n) {
      margin-right: 0; }
  .ce_gallery .cols_4 li {
    width: calc((100% - 90px) / 4); }
    .ce_gallery .cols_4 li:nth-child(4n + 1) {
      clear: left; }
    .ce_gallery .cols_4 li:nth-child(4n) {
      margin-right: 0; }
  .ce_gallery .cols_5 li {
    width: calc((100% - 120px) / 5); }
    .ce_gallery .cols_5 li:nth-child(5n + 1) {
      clear: left; }
    .ce_gallery .cols_5 li:nth-child(5n) {
      margin-right: 0; }
  .ce_gallery .cols_6 li {
    width: calc((100% - 150px) / 6); }
    .ce_gallery .cols_6 li:nth-child(6n + 1) {
      clear: left; }
    .ce_gallery .cols_6 li:nth-child(6n) {
      margin-right: 0; }
  .ce_gallery .cols_7 li {
    width: calc((100% - 180px) / 7); }
    .ce_gallery .cols_7 li:nth-child(7n + 1) {
      clear: left; }
    .ce_gallery .cols_7 li:nth-child(7n) {
      margin-right: 0; }
  .ce_gallery .cols_8 li {
    width: calc((100% - 210px) / 8); }
    .ce_gallery .cols_8 li:nth-child(8n + 1) {
      clear: left; }
    .ce_gallery .cols_8 li:nth-child(8n) {
      margin-right: 0; }
  .ce_gallery .cols_9 li {
    width: calc((100% - 240px) / 9); }
    .ce_gallery .cols_9 li:nth-child(9n + 1) {
      clear: left; }
    .ce_gallery .cols_9 li:nth-child(9n) {
      margin-right: 0; }
  .ce_gallery .cols_10 li {
    width: calc((100% - 270px) / 10); }
    .ce_gallery .cols_10 li:nth-child(10n + 1) {
      clear: left; }
    .ce_gallery .cols_10 li:nth-child(10n) {
      margin-right: 0; }
  .ce_gallery .cols_11 li {
    width: calc((100% - 300px) / 11); }
    .ce_gallery .cols_11 li:nth-child(11n + 1) {
      clear: left; }
    .ce_gallery .cols_11 li:nth-child(11n) {
      margin-right: 0; } }

.ce_accordion ul li, .ce_accordion ol li,
.ce_text ul li,
.ce_text ol li,
.ce_list ul li,
.ce_list ol li {
  margin-left: 2rem; }
.ce_accordion ul,
.ce_text ul,
.ce_list ul {
  list-style-type: disc; }
.ce_accordion ol,
.ce_text ol,
.ce_list ol {
  list-style-type: decimal; }

.ce_accordion .toggle {
  cursor: pointer; }
.ce_accordion .content {
  overflow: hidden;
  transition: max-height 420ms; }

label > span.mandatory {
  display: inline; }

/*
    Created on : xx.xx.xxxx, xx:xx:00
*/
body {
  font: 100%/1em sans-serif;
  color: #3b3b3a;
  background-color: #fff; }

#wrapper {
  position: relative; }

h1, .h1 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 40px;
  line-height: 2.5rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 20px;
  margin-bottom: 1.25rem; }

h2, .h2 {
  font-size: 25.2px;
  font-size: 1.575rem;
  line-height: 40px;
  line-height: 2.5rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 20px;
  margin-bottom: 1.25rem; }

h3, .h3 {
  font-size: 22.4px;
  font-size: 1.4rem;
  line-height: 40px;
  line-height: 2.5rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 20px;
  margin-bottom: 1.25rem; }

h4, .h4 {
  font-size: 19.6px;
  font-size: 1.225rem;
  line-height: 20px;
  line-height: 1.25rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 20px;
  margin-bottom: 1.25rem; }

h5, .h5 {
  font-size: 16.8px;
  font-size: 1.05rem;
  line-height: 20px;
  line-height: 1.25rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 20px;
  margin-bottom: 1.25rem; }

p, ul, ol, table, dl, .ce_hyperlink, div.submit, h6, .h6 {
  font-size: 14px;
  font-size: 0.95rem;
  line-height: 20px;
  line-height: 1.25rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 20px;
  margin-bottom: 1.25rem; }

figcaption, label {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem; }

.red {
  font-weight: 600;
	font-size: 17px;
  color: #b51f24; }
.color {
  font-weight: 600;
	font-size: 17px;
  color: #0b2a79; }

.large {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 32px;
  line-height: 2rem; }

form label > span.error {
  display: block !important; }

input[type=text],
input[type=email],
input[type=password],
input[type=number],
textarea,
input[type=button],
input[type=submit],
button {
  font-size: 14px;
  font-size: 0.875rem; }

input[type=text],
input[type=email],
input[type=password],
input[type=number],
textarea {
  margin-bottom: 20px;
  box-sizing: border-box;
  padding: 2px 4px;
  width: 100%; }

.btn,
input[type=button],
input[type=submit],
button {
  cursor: pointer;
  padding: 8px 32px; }

.btn-default {
  border: 1px solid #034d84; }

button.mfp-arrow {
  opacity: 1;
  width: 50px;
  height: 50px; }
  button.mfp-arrow:before {
    display: none;
    border: none; }
  button.mfp-arrow:after {
    display: none;
    border: none; }
  button.mfp-arrow.mfp-arrow-left {
    background: url(../images/arrow-lightbox.svg) no-repeat center center; }
  button.mfp-arrow.mfp-arrow-right {
    background: url(../images/arrow-lightbox-next.svg) no-repeat center center; }

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #232424; }

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #232424;
  opacity: 1; }

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #232424;
  opacity: 1; }

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #232424; }

figure {
  margin-bottom: 20px; }
  figure.float_right {
    margin-left: 15px; }
  figure.float_left {
    margin-right: 15px; }

a {
  text-decoration: none;
color: #1a3153;}
  a:hover {
    text-decoration: underline; }

.mod_breabcrumb ul {
  list-style: none; }
@media (min-width: 769px) {
  .mod_breabcrumb li {
    display: inline-block; }
    .mod_breabcrumb li::before {
      display: inline-block;
      content: ">>"; } }

.frontpage #wrapper {
  min-height: 100vh;
  width: 100%; }

#container {
  background: #fff;
  position: relative;
  z-index: 2;
  max-width: 419px;
  display: block;
  margin: 40px auto;
  padding: 20px 0; 
-webkit-box-shadow: 0px 0px 18px -2px rgba(0,0,0,0.34);
-moz-box-shadow: 0px 0px 18px -2px rgba(0,0,0,0.75);
box-shadow: 0px 0px 18px -2px rgba(0,0,0,0.75);}

  @media (min-width: 769px) {
    #container {
      padding: 38px 60px 40px; } }
  @media (min-width: 1024px) and (min-height: 820px) {
    #container {
      width: 100%; }
      .frontpage #container {
        margin-top: 0;
        margin-bottom: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); } }

#header .col-xs-12 {
  margin-bottom: 40px; }
@media (max-width: 480px) {
  #header img {
    max-width: 80%; } }
@media (min-width: 769px) {
  #header img {
    max-width: 450px; } }

@media (min-width: 769px) {
  #main,
  #footer {
    /*padding-left: 92px;*/ } }

#slideshow {
  position: fixed;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden; }
  #slideshow .item {
	background-color: #0b2a78;
    display: block;
    min-width: 100vw;
    min-height: 100vh;
	
/*    background: transparent no-repeat 50% 0%;
    background-size: cover;*/ }
 /* #slideshow .item1 {
    background-image: url("../images/BG-S-2020.jpg"); }
    @media (min-width: 1024px) {
      #slideshow .item1 {
        background-image: url("../images/BG-M-2020.jpg"); } }
    @media (min-width: 1920px) {
      #slideshow .item1 {
        background-image: url("../images/BG-L-2020.jpg"); } }
*/
#footer nav ul {
  display: flex;
  flex-direction: column; }
@media (min-width: 769px) {
  #footer nav ul {
    flex-direction: row; }
  #footer nav li::before {
    content: "//";
    margin-right: 20px;
    margin-left: 20px; }
  #footer nav li:first-child::before {
    content: none; } }

#cookie-hint {
  /*background-color: $colorSecondary;*/
  width: 100%;
  overflow: hidden;
  /*    a {
          @extend .inline-block;
          @extend .no-decoration;
          background-color: $colorPrimary;
          padding: 6px 16px;
          font-size: 13px;
          color: $colorSecondary;
      }*/ }
  #cookie-hint p {
    margin: 10px 0; }
  #cookie-hint span {
    display: block;
    margin-bottom: 10px; }
  @media screen and (min-width: 1281px) {
    #cookie-hint span {
      display: inline-block;
      margin-right: 12px; } }

#toplink {
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  position: fixed;
  transition: opacity 420ms;
  font-size: 0;
  background-color: green;
  opacity: 1; }
  #toplink::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 8px;
    display: block;
    border: 12px solid red;
    border-left-color: transparent;
    border-right-color: transparent;
    border-top-color: transparent; }

/*@import "_mobile_slide-in-menu";*/
/*@import "_mobile_menu";*/
/* 
    Created on : 09.06.2017, 16:33:00
    Author     : Maik Lampe <ml@easy-media.de>
    Description: Allround menu tempalte
*/
body.no-scroll {
  position: fixed;
  overflow-y: hidden; }

label[for="nav-trigger"] {
  position: absolute;
  margin: 12px;
  float: left;
  display: block;
  cursor: pointer;
  right: 0;
  top: 0;
  width: 25px;
  height: 25px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  z-index: 1000005; }
  label[for="nav-trigger"] span {
    top: 0px; }
    label[for="nav-trigger"] span, label[for="nav-trigger"] span::before, label[for="nav-trigger"] span::after {
      content: "";
      background-color: green;
      position: relative;
      width: 25px;
      height: 5px; }
    label[for="nav-trigger"] span::before {
      top: 10px; }
    label[for="nav-trigger"] span::after {
      top: 15px; }
  #nav-trigger:checked ~ #wrapper label[for="nav-trigger"] span {
    height: 0; }
    #nav-trigger:checked ~ #wrapper label[for="nav-trigger"] span::before {
      top: 10px;
      transform: rotate(45deg); }
    #nav-trigger:checked ~ #wrapper label[for="nav-trigger"] span::after {
      top: 5px;
      transform: rotate(-45deg); }
  @media (min-width: 1024px) {
    label[for="nav-trigger"] {
      display: none !important; } }

#root a, #root span {
  display: block;
  white-space: nowrap; }
#root .level_1 > li > a, #root .level_1 > li > span {
  color: #3b3b3a;
  text-transform: uppercase; }
#root ul ul {
  overflow: hidden;
  transition: max-height 800ms; }
.js #root.initialited ul ul {
  max-height: 0; }
@media (max-width: 1023px) {
  #root {
    display: none;
    width: 100%;
    margin: 0;
    z-index: 12345;
    background-color: #fff;
    position: fixed;
    overflow: scroll;
    left: 0;
    top: 103px;
    top: 0px;
    bottom: 0;
    right: 0;
    padding-top: 49px; }
    #root ul {
      font-size: 16px;
      font-size: 1rem;
      line-height: 48px;
      line-height: 3rem;
      margin: 0; }
    #root li.trail > a, #root li.active > a {
      color: red; }
    #root li.submenu > a::after {
      content: url("../../images/stock/submenu-caret-mobile.svg");
      display: inline-block;
      margin-left: 12px;
      position: relative;
      top: 0;
      transform: rotatez(-90deg);
      transition: transform 200ms; }
      .no-js #root li.submenu > a::after {
        transform: rotatez(0deg); }
    #root li.submenuOpen > a::after {
      transform: rotatez(0deg); }
    #root li li > a, #root li li > span {
      padding-left: 40px; }
    #root li li li > a, #root li li li > span {
      padding-left: 60px; }
    #root li li li li > a, #root li li li li > span {
      padding-left: 80px; }
    #root a, #root span {
      border-bottom: 1px solid rgba(179, 179, 179, 0.5);
      padding-left: 20px; }
    #nav-trigger:checked ~ #wrapper #root {
      display: block; } }
@media (min-width: 1024px) {
  #root {
    position: relative;
    z-index: 1; }
    #root ul {
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 70px;
      line-height: 4.375rem; }
    .js #root.initialited .submenu > ul {
      display: flex;
      box-sizing: content-box; }
    #root .submenu > ul {
      display: none; }
    #root .submenu.submenuOpen > ul {
      z-index: 2; }
    #root .submenu:hover > ul {
      display: block; }
    #root .level_1 {
      display: flex;
      flex-wrap: nowrap;
      align-content: stretch; }
      #root .level_1 > li {
        flex-grow: 1; } }

#nav-trigger:checked ~ #wrapper #container {
  position: relative; }
  #nav-trigger:checked ~ #wrapper #container::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1234;
    background-color: rgba(0, 0, 0, 0.7); }

/*
    Created on  : 08.05.2015, 10:15:00
    Description : Some usefull classes
    Changes     :
        09.06.2015, 16:04:00
        03.07.2015, 10:27:00
        15.07.2015, 11:57:00
*/
.hidden {
  display: none; }

.block, input[type=text],
input[type=email],
input[type=password],
input[type=number],
textarea, #cookie-hint, #toplink, label[for="nav-trigger"] span, label[for="nav-trigger"] span::before, label[for="nav-trigger"] span::after, .block-center, img.center, img.responsive, img.full-responsive, figure.responsive img, figure.full-responsive img {
  display: block; }
  .block-center, img.center {
    margin-left: auto;
    margin-right: auto; }

.inline {
  display: inline; }
  .inline-block, .btn {
    display: inline-block; }

.clear, .clear-both, hr {
  clear: both; }
.clear-right {
  clear: right; }
.clear-left {
  clear: left; }

.text-center, #cookie-hint {
  text-align: center; }
.text-left {
  text-align: left; }
.text-right {
  text-align: right; }
.text-justify {
  text-align: justify;
  -webkit-word-break: break-word;
  -moz-word-break: break-word;
  -ms-word-break: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; }

.uppercase {
  text-transform: uppercase; }

.lowercase {
  text-transform: lowercase; }

.underline {
  text-transform: underline; }

.line-through {
  text-transform: line-through; }

.ultra-thin {
  font-weight: 100; }

.thin {
  font-weight: 200; }

.light {
  font-weight: 300; }

.normal {
  font-weight: 400; }

.medium {
  font-weight: 500; }

.semi-bold {
  font-weight: 600; }

.bold {
  font-weight: 700; }

.extra-bold {
  font-weight: 800; }

.ultra-bold {
  font-weight: 900; }

.italic {
  font-style: italic; }

img.responsive, img.full-responsive, figure.responsive img, figure.full-responsive img {
  height: auto; }
  img.responsive, figure.responsive img {
    max-width: 100%; }
    img.full-responsive, figure.full-responsive img {
      width: 100%; }

img.circle {
  border-radius: 50%; }

.no-transform {
  text-transform: none; }
.no-strong, strong.no-strong {
  font-weight: inherit; }
.no-decoration, .btn {
  text-decoration: none; }
.no-outline, input[type=text],
input[type=email],
input[type=password],
input[type=number],
textarea,
input[type=button],
input[type=submit],
button {
  outline: none; }
.no-border, input[type=text],
input[type=email],
input[type=password],
input[type=number],
textarea,
input[type=button],
input[type=submit],
button {
  border-width: 0; }
  .no-border-top {
    border-top-width: 0; }
  .no-border-right {
    border-right-width: 0; }
  .no-border-bottom {
    border-bottom-width: 0; }
  .no-border-left {
    border-left-width: 0; }
.no-padding {
  padding: 0; }
  .no-padding-top {
    padding-top: 0; }
  .no-padding-right {
    padding-right: 0; }
  .no-padding-bottom {
    padding-bottom: 0; }
  .no-padding-left {
    padding-left: 0; }
.no-margin {
  margin: 0; }
  .no-margin-top {
    margin-top: 0; }
  .no-margin-right {
    margin-right: 0; }
  .no-margin-bottom {
    margin-bottom: 0; }
  .no-margin-left {
    margin-left: 0; }

/* fancy frame animation for images */
.frame-animation {
  width: 380px;
  height: 380px;
  position: relative;
  background: white;
  display: inline-block;
  margin: 0;
  cursor: pointer;
  color: #2c3e50;
  box-shadow: inset 0 0 0 3px #2c3e50;
  -webkit-transition: background 0.4s 0.5s;
  transition: background 0.4s 0.5s; }
  .frame-animation svg {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 0;
    bottom: 0; }
    .frame-animation svg line {
      stroke-width: 5;
      stroke: #fff;
      fill: none;
      -webkit-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out; }
      .frame-animation svg line.top {
        stroke-dasharray: 410 320; }
      .frame-animation svg line.bottom {
        stroke-dasharray: 410 320; }
      .frame-animation svg line.left {
        stroke-dasharray: 410 320; }
      .frame-animation svg line.right {
        stroke-dasharray: 410 320; }
      .frame-animation svg line.top {
        transform: translateX(-380px); }
      .frame-animation svg line.bottom {
        transform: translateX(380px); }
      .frame-animation svg line.left {
        transform: translateY(380px); }
      .frame-animation svg line.right {
        transform: translateY(-380px); }
  .frame-animation:hover {
    background: rgba(255, 255, 255, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s; }
    .frame-animation:hover svg line {
      -webkit-transition-delay: 0s;
      transition-delay: 0s; }
      .frame-animation:hover svg line.top {
        transform: translateX(0); }
      .frame-animation:hover svg line.bottom {
        transform: translateX(0); }
      .frame-animation:hover svg line.left {
        transform: translateY(0); }
      .frame-animation:hover svg line.right {
        transform: translateY(0); }

/*@import "js/_easy-accordion";*/
/*@import "js/_easy-coverImage";*/
.fg-primary {
  color: red; }

.bg-primary {
  background-color: red; }

.fg-secondary {
  color: green; }

.bg-secondary {
  background-color: green; }

.fg-highlight {
  color: #034d84; }

.bg-highlight {
  background-color: #034d84; }

/* 
    Created on : 27.07.2015, 16:33:17
    Description: CSS-Anweisungen für vordefiniertes Browserverhalten
    History 
        2015-12-07: Added contao-like label handling
        2016-01-18: Fixed label handling
        2017-07-07: Fixed label handling
*/
.need-svg,
.need-js {
  display: none; }

html.js .need-js {
  display: block; }
html.svg form label > span,
html.svg .svg-fallback {
  display: none; }
html.svg .need-svg {
  display: block; }
html.touch .mobile-scroll {
  padding: 0 1px;
  position: relative; }
  @media (max-width: 1024px) {
    html.touch .mobile-scroll {
      overflow-x: scroll; } }
html.touch .scroll-guide {
  position: absolute;
  left: 50%;
  top: 200px;
  width: 150px;
  line-height: 150px;
  margin-left: -75px;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  cursor: pointer; }
  html.touch .scroll-guide .flaticon-swipe {
    color: #fff; }
    html.touch .scroll-guide .flaticon-swipe::before {
      margin: 0;
      font-size: 64px;
      line-height: 150px;
      display: block; }
  @media (min-width: 1025px) {
    html.touch .scroll-guide {
      display: none !important;
      left: -1000%;
      top: -1000%; } }

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