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

article, aside, details, figcaption, figure, footer, header, menu, nav, section {
  display: block; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

* {
  box-sizing: border-box; }

/* /!\ */
/* ==========================================================================
    GRIDLEX
    Just a Flexbox Grid System - v. 2.7.1
========================================================================== */
[class~="grid"],
[class*="grid-"],
[class*="grid_"] {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 0 -0.5rem; }

[class~="col"],
[class*="col-"],
[class*="col_"] {
  box-sizing: border-box;
  padding: 0 0.5rem 1rem;
  max-width: 100%; }

[class~="col"],
[class*="col_"] {
  -ms-flex: 1 1 0%;
  flex: 1 1 0%; }

[class*="col-"] {
  -ms-flex: none;
  flex: none; }

[class~="grid"][class~="col"],
[class~="grid"][class*="col-"],
[class~="grid"][class*="col_"],
[class*="grid-"][class~="col"],
[class*="grid-"][class*="col-"],
[class*="grid-"][class*="col_"],
[class*="grid_"][class~="col"],
[class*="grid_"][class*="col-"],
[class*="grid_"][class*="col_"] {
  margin: 0;
  padding: 0; }

/************************
    HELPERS SUFFIXES
*************************/
[class*="grid-"][class*="-noGutter"] {
  margin: 0; }
  [class*="grid-"][class*="-noGutter"] > [class~="col"],
  [class*="grid-"][class*="-noGutter"] > [class*="col-"] {
    padding: 0; }

[class*="grid-"][class*="-noWrap"] {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }

[class*="grid-"][class*="-center"] {
  -ms-flex-pack: center;
  justify-content: center; }

[class*="grid-"][class*="-right"] {
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-left: auto; }

[class*="grid-"][class*="-top"] {
  -ms-flex-align: start;
  align-items: flex-start; }

[class*="grid-"][class*="-middle"] {
  -ms-flex-align: center;
  align-items: center; }

[class*="grid-"][class*="-bottom"] {
  -ms-flex-align: end;
  align-items: flex-end; }

[class*="grid-"][class*="-reverse"] {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

[class*="grid-"][class*="-column"] {
  -ms-flex-direction: column;
  flex-direction: column; }
  [class*="grid-"][class*="-column"] > [class*="col-"] {
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }

[class*="grid-"][class*="-column-reverse"] {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }

[class*="grid-"][class*="-spaceBetween"] {
  -ms-flex-pack: justify;
  justify-content: space-between; }

[class*="grid-"][class*="-spaceAround"] {
  -ms-flex-pack: distribute;
  justify-content: space-around; }

[class*="grid-"][class*="-equalHeight"] > [class~="col"],
[class*="grid-"][class*="-equalHeight"] > [class*="col-"],
[class*="grid-"][class*="-equalHeight"] > [class*="col_"] {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch; }
  [class*="grid-"][class*="-equalHeight"] > [class~="col"] > *,
  [class*="grid-"][class*="-equalHeight"] > [class*="col-"] > *,
  [class*="grid-"][class*="-equalHeight"] > [class*="col_"] > * {
    height: 100%; }

[class*="grid-"][class*="-noBottom"] > [class~="col"],
[class*="grid-"][class*="-noBottom"] > [class*="col-"],
[class*="grid-"][class*="-noBottom"] > [class*="col_"] {
  padding-bottom: 0; }

[class*="col-"][class*="-top"] {
  -ms-flex-item-align: start;
  align-self: flex-start; }

[class*="col-"][class*="-middle"] {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center; }

[class*="col-"][class*="-bottom"] {
  -ms-flex-item-align: end;
  align-self: flex-end; }

[class*="col-"][class*="-first"] {
  -ms-flex-order: -1;
  order: -1; }

[class*="col-"][class*="-last"] {
  -ms-flex-order: 1;
  order: 1; }

/************************
    GRID BY NUMBER
*************************/
[class*="grid-1"] > [class~="col"],
[class*="grid-1"] > [class*="col-"],
[class*="grid-1"] > [class*="col_"] {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%; }

[class*="grid-2"] > [class~="col"],
[class*="grid-2"] > [class*="col-"],
[class*="grid-2"] > [class*="col_"] {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%; }

[class*="grid-3"] > [class~="col"],
[class*="grid-3"] > [class*="col-"],
[class*="grid-3"] > [class*="col_"] {
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
  max-width: 33.33333%; }

[class*="grid-4"] > [class~="col"],
[class*="grid-4"] > [class*="col-"],
[class*="grid-4"] > [class*="col_"] {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%; }

[class*="grid-5"] > [class~="col"],
[class*="grid-5"] > [class*="col-"],
[class*="grid-5"] > [class*="col_"] {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  max-width: 20%; }

[class*="grid-6"] > [class~="col"],
[class*="grid-6"] > [class*="col-"],
[class*="grid-6"] > [class*="col_"] {
  -ms-flex-preferred-size: 16.66667%;
  flex-basis: 16.66667%;
  max-width: 16.66667%; }

[class*="grid-7"] > [class~="col"],
[class*="grid-7"] > [class*="col-"],
[class*="grid-7"] > [class*="col_"] {
  -ms-flex-preferred-size: 14.28571%;
  flex-basis: 14.28571%;
  max-width: 14.28571%; }

[class*="grid-8"] > [class~="col"],
[class*="grid-8"] > [class*="col-"],
[class*="grid-8"] > [class*="col_"] {
  -ms-flex-preferred-size: 12.5%;
  flex-basis: 12.5%;
  max-width: 12.5%; }

[class*="grid-9"] > [class~="col"],
[class*="grid-9"] > [class*="col-"],
[class*="grid-9"] > [class*="col_"] {
  -ms-flex-preferred-size: 11.11111%;
  flex-basis: 11.11111%;
  max-width: 11.11111%; }

[class*="grid-10"] > [class~="col"],
[class*="grid-10"] > [class*="col-"],
[class*="grid-10"] > [class*="col_"] {
  -ms-flex-preferred-size: 10%;
  flex-basis: 10%;
  max-width: 10%; }

[class*="grid-11"] > [class~="col"],
[class*="grid-11"] > [class*="col-"],
[class*="grid-11"] > [class*="col_"] {
  -ms-flex-preferred-size: 9.09091%;
  flex-basis: 9.09091%;
  max-width: 9.09091%; }

[class*="grid-12"] > [class~="col"],
[class*="grid-12"] > [class*="col-"],
[class*="grid-12"] > [class*="col_"] {
  -ms-flex-preferred-size: 8.33333%;
  flex-basis: 8.33333%;
  max-width: 8.33333%; }

@media (max-width: 1279px) {
  [class*="_lg-1"] > [class~="col"],
  [class*="_lg-1"] > [class*="col-"],
  [class*="_lg-1"] > [class*="col_"] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  [class*="_lg-2"] > [class~="col"],
  [class*="_lg-2"] > [class*="col-"],
  [class*="_lg-2"] > [class*="col_"] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  [class*="_lg-3"] > [class~="col"],
  [class*="_lg-3"] > [class*="col-"],
  [class*="_lg-3"] > [class*="col_"] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class*="_lg-4"] > [class~="col"],
  [class*="_lg-4"] > [class*="col-"],
  [class*="_lg-4"] > [class*="col_"] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  [class*="_lg-5"] > [class~="col"],
  [class*="_lg-5"] > [class*="col-"],
  [class*="_lg-5"] > [class*="col_"] {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%; }
  [class*="_lg-6"] > [class~="col"],
  [class*="_lg-6"] > [class*="col-"],
  [class*="_lg-6"] > [class*="col_"] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class*="_lg-7"] > [class~="col"],
  [class*="_lg-7"] > [class*="col-"],
  [class*="_lg-7"] > [class*="col_"] {
    -ms-flex-preferred-size: 14.28571%;
    flex-basis: 14.28571%;
    max-width: 14.28571%; }
  [class*="_lg-8"] > [class~="col"],
  [class*="_lg-8"] > [class*="col-"],
  [class*="_lg-8"] > [class*="col_"] {
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
    max-width: 12.5%; }
  [class*="_lg-9"] > [class~="col"],
  [class*="_lg-9"] > [class*="col-"],
  [class*="_lg-9"] > [class*="col_"] {
    -ms-flex-preferred-size: 11.11111%;
    flex-basis: 11.11111%;
    max-width: 11.11111%; }
  [class*="_lg-10"] > [class~="col"],
  [class*="_lg-10"] > [class*="col-"],
  [class*="_lg-10"] > [class*="col_"] {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%; }
  [class*="_lg-11"] > [class~="col"],
  [class*="_lg-11"] > [class*="col-"],
  [class*="_lg-11"] > [class*="col_"] {
    -ms-flex-preferred-size: 9.09091%;
    flex-basis: 9.09091%;
    max-width: 9.09091%; }
  [class*="_lg-12"] > [class~="col"],
  [class*="_lg-12"] > [class*="col-"],
  [class*="_lg-12"] > [class*="col_"] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; } }

@media (max-width: 1023px) {
  [class*="_md-1"] > [class~="col"],
  [class*="_md-1"] > [class*="col-"],
  [class*="_md-1"] > [class*="col_"] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  [class*="_md-2"] > [class~="col"],
  [class*="_md-2"] > [class*="col-"],
  [class*="_md-2"] > [class*="col_"] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  [class*="_md-3"] > [class~="col"],
  [class*="_md-3"] > [class*="col-"],
  [class*="_md-3"] > [class*="col_"] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class*="_md-4"] > [class~="col"],
  [class*="_md-4"] > [class*="col-"],
  [class*="_md-4"] > [class*="col_"] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  [class*="_md-5"] > [class~="col"],
  [class*="_md-5"] > [class*="col-"],
  [class*="_md-5"] > [class*="col_"] {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%; }
  [class*="_md-6"] > [class~="col"],
  [class*="_md-6"] > [class*="col-"],
  [class*="_md-6"] > [class*="col_"] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class*="_md-7"] > [class~="col"],
  [class*="_md-7"] > [class*="col-"],
  [class*="_md-7"] > [class*="col_"] {
    -ms-flex-preferred-size: 14.28571%;
    flex-basis: 14.28571%;
    max-width: 14.28571%; }
  [class*="_md-8"] > [class~="col"],
  [class*="_md-8"] > [class*="col-"],
  [class*="_md-8"] > [class*="col_"] {
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
    max-width: 12.5%; }
  [class*="_md-9"] > [class~="col"],
  [class*="_md-9"] > [class*="col-"],
  [class*="_md-9"] > [class*="col_"] {
    -ms-flex-preferred-size: 11.11111%;
    flex-basis: 11.11111%;
    max-width: 11.11111%; }
  [class*="_md-10"] > [class~="col"],
  [class*="_md-10"] > [class*="col-"],
  [class*="_md-10"] > [class*="col_"] {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%; }
  [class*="_md-11"] > [class~="col"],
  [class*="_md-11"] > [class*="col-"],
  [class*="_md-11"] > [class*="col_"] {
    -ms-flex-preferred-size: 9.09091%;
    flex-basis: 9.09091%;
    max-width: 9.09091%; }
  [class*="_md-12"] > [class~="col"],
  [class*="_md-12"] > [class*="col-"],
  [class*="_md-12"] > [class*="col_"] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; } }

@media (max-width: 767px) {
  [class*="_sm-1"] > [class~="col"],
  [class*="_sm-1"] > [class*="col-"],
  [class*="_sm-1"] > [class*="col_"] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  [class*="_sm-2"] > [class~="col"],
  [class*="_sm-2"] > [class*="col-"],
  [class*="_sm-2"] > [class*="col_"] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  [class*="_sm-3"] > [class~="col"],
  [class*="_sm-3"] > [class*="col-"],
  [class*="_sm-3"] > [class*="col_"] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class*="_sm-4"] > [class~="col"],
  [class*="_sm-4"] > [class*="col-"],
  [class*="_sm-4"] > [class*="col_"] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  [class*="_sm-5"] > [class~="col"],
  [class*="_sm-5"] > [class*="col-"],
  [class*="_sm-5"] > [class*="col_"] {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%; }
  [class*="_sm-6"] > [class~="col"],
  [class*="_sm-6"] > [class*="col-"],
  [class*="_sm-6"] > [class*="col_"] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class*="_sm-7"] > [class~="col"],
  [class*="_sm-7"] > [class*="col-"],
  [class*="_sm-7"] > [class*="col_"] {
    -ms-flex-preferred-size: 14.28571%;
    flex-basis: 14.28571%;
    max-width: 14.28571%; }
  [class*="_sm-8"] > [class~="col"],
  [class*="_sm-8"] > [class*="col-"],
  [class*="_sm-8"] > [class*="col_"] {
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
    max-width: 12.5%; }
  [class*="_sm-9"] > [class~="col"],
  [class*="_sm-9"] > [class*="col-"],
  [class*="_sm-9"] > [class*="col_"] {
    -ms-flex-preferred-size: 11.11111%;
    flex-basis: 11.11111%;
    max-width: 11.11111%; }
  [class*="_sm-10"] > [class~="col"],
  [class*="_sm-10"] > [class*="col-"],
  [class*="_sm-10"] > [class*="col_"] {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%; }
  [class*="_sm-11"] > [class~="col"],
  [class*="_sm-11"] > [class*="col-"],
  [class*="_sm-11"] > [class*="col_"] {
    -ms-flex-preferred-size: 9.09091%;
    flex-basis: 9.09091%;
    max-width: 9.09091%; }
  [class*="_sm-12"] > [class~="col"],
  [class*="_sm-12"] > [class*="col-"],
  [class*="_sm-12"] > [class*="col_"] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; } }

/************************
    COLS SIZES
*************************/
[class~="grid"] > [class*="col-1"],
[class*="grid-"] > [class*="col-1"],
[class*="grid_"] > [class*="col-1"] {
  -ms-flex-preferred-size: 8.33333%;
  flex-basis: 8.33333%;
  max-width: 8.33333%; }

[class~="grid"] > [class*="col-2"],
[class*="grid-"] > [class*="col-2"],
[class*="grid_"] > [class*="col-2"] {
  -ms-flex-preferred-size: 16.66667%;
  flex-basis: 16.66667%;
  max-width: 16.66667%; }

[class~="grid"] > [class*="col-3"],
[class*="grid-"] > [class*="col-3"],
[class*="grid_"] > [class*="col-3"] {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%; }

[class~="grid"] > [class*="col-4"],
[class*="grid-"] > [class*="col-4"],
[class*="grid_"] > [class*="col-4"] {
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
  max-width: 33.33333%; }

[class~="grid"] > [class*="col-5"],
[class*="grid-"] > [class*="col-5"],
[class*="grid_"] > [class*="col-5"] {
  -ms-flex-preferred-size: 41.66667%;
  flex-basis: 41.66667%;
  max-width: 41.66667%; }

[class~="grid"] > [class*="col-6"],
[class*="grid-"] > [class*="col-6"],
[class*="grid_"] > [class*="col-6"] {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%; }

[class~="grid"] > [class*="col-7"],
[class*="grid-"] > [class*="col-7"],
[class*="grid_"] > [class*="col-7"] {
  -ms-flex-preferred-size: 58.33333%;
  flex-basis: 58.33333%;
  max-width: 58.33333%; }

[class~="grid"] > [class*="col-8"],
[class*="grid-"] > [class*="col-8"],
[class*="grid_"] > [class*="col-8"] {
  -ms-flex-preferred-size: 66.66667%;
  flex-basis: 66.66667%;
  max-width: 66.66667%; }

[class~="grid"] > [class*="col-9"],
[class*="grid-"] > [class*="col-9"],
[class*="grid_"] > [class*="col-9"] {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%; }

[class~="grid"] > [class*="col-10"],
[class*="grid-"] > [class*="col-10"],
[class*="grid_"] > [class*="col-10"] {
  -ms-flex-preferred-size: 83.33333%;
  flex-basis: 83.33333%;
  max-width: 83.33333%; }

[class~="grid"] > [class*="col-11"],
[class*="grid-"] > [class*="col-11"],
[class*="grid_"] > [class*="col-11"] {
  -ms-flex-preferred-size: 91.66667%;
  flex-basis: 91.66667%;
  max-width: 91.66667%; }

[class~="grid"] > [class*="col-12"],
[class*="grid-"] > [class*="col-12"],
[class*="grid_"] > [class*="col-12"] {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%; }

[class~="grid"] > [data-push-left*="off-0"],
[class*="grid-"] > [data-push-left*="off-0"],
[class*="grid_"] > [data-push-left*="off-0"] {
  margin-left: 0; }

[class~="grid"] > [data-push-left*="off-1"],
[class*="grid-"] > [data-push-left*="off-1"],
[class*="grid_"] > [data-push-left*="off-1"] {
  margin-left: 8.33333%; }

[class~="grid"] > [data-push-left*="off-2"],
[class*="grid-"] > [data-push-left*="off-2"],
[class*="grid_"] > [data-push-left*="off-2"] {
  margin-left: 16.66667%; }

[class~="grid"] > [data-push-left*="off-3"],
[class*="grid-"] > [data-push-left*="off-3"],
[class*="grid_"] > [data-push-left*="off-3"] {
  margin-left: 25%; }

[class~="grid"] > [data-push-left*="off-4"],
[class*="grid-"] > [data-push-left*="off-4"],
[class*="grid_"] > [data-push-left*="off-4"] {
  margin-left: 33.33333%; }

[class~="grid"] > [data-push-left*="off-5"],
[class*="grid-"] > [data-push-left*="off-5"],
[class*="grid_"] > [data-push-left*="off-5"] {
  margin-left: 41.66667%; }

[class~="grid"] > [data-push-left*="off-6"],
[class*="grid-"] > [data-push-left*="off-6"],
[class*="grid_"] > [data-push-left*="off-6"] {
  margin-left: 50%; }

[class~="grid"] > [data-push-left*="off-7"],
[class*="grid-"] > [data-push-left*="off-7"],
[class*="grid_"] > [data-push-left*="off-7"] {
  margin-left: 58.33333%; }

[class~="grid"] > [data-push-left*="off-8"],
[class*="grid-"] > [data-push-left*="off-8"],
[class*="grid_"] > [data-push-left*="off-8"] {
  margin-left: 66.66667%; }

[class~="grid"] > [data-push-left*="off-9"],
[class*="grid-"] > [data-push-left*="off-9"],
[class*="grid_"] > [data-push-left*="off-9"] {
  margin-left: 75%; }

[class~="grid"] > [data-push-left*="off-10"],
[class*="grid-"] > [data-push-left*="off-10"],
[class*="grid_"] > [data-push-left*="off-10"] {
  margin-left: 83.33333%; }

[class~="grid"] > [data-push-left*="off-11"],
[class*="grid-"] > [data-push-left*="off-11"],
[class*="grid_"] > [data-push-left*="off-11"] {
  margin-left: 91.66667%; }

[class~="grid"] > [data-push-right*="off-0"],
[class*="grid-"] > [data-push-right*="off-0"],
[class*="grid_"] > [data-push-right*="off-0"] {
  margin-right: 0; }

[class~="grid"] > [data-push-right*="off-1"],
[class*="grid-"] > [data-push-right*="off-1"],
[class*="grid_"] > [data-push-right*="off-1"] {
  margin-right: 8.33333%; }

[class~="grid"] > [data-push-right*="off-2"],
[class*="grid-"] > [data-push-right*="off-2"],
[class*="grid_"] > [data-push-right*="off-2"] {
  margin-right: 16.66667%; }

[class~="grid"] > [data-push-right*="off-3"],
[class*="grid-"] > [data-push-right*="off-3"],
[class*="grid_"] > [data-push-right*="off-3"] {
  margin-right: 25%; }

[class~="grid"] > [data-push-right*="off-4"],
[class*="grid-"] > [data-push-right*="off-4"],
[class*="grid_"] > [data-push-right*="off-4"] {
  margin-right: 33.33333%; }

[class~="grid"] > [data-push-right*="off-5"],
[class*="grid-"] > [data-push-right*="off-5"],
[class*="grid_"] > [data-push-right*="off-5"] {
  margin-right: 41.66667%; }

[class~="grid"] > [data-push-right*="off-6"],
[class*="grid-"] > [data-push-right*="off-6"],
[class*="grid_"] > [data-push-right*="off-6"] {
  margin-right: 50%; }

[class~="grid"] > [data-push-right*="off-7"],
[class*="grid-"] > [data-push-right*="off-7"],
[class*="grid_"] > [data-push-right*="off-7"] {
  margin-right: 58.33333%; }

[class~="grid"] > [data-push-right*="off-8"],
[class*="grid-"] > [data-push-right*="off-8"],
[class*="grid_"] > [data-push-right*="off-8"] {
  margin-right: 66.66667%; }

[class~="grid"] > [data-push-right*="off-9"],
[class*="grid-"] > [data-push-right*="off-9"],
[class*="grid_"] > [data-push-right*="off-9"] {
  margin-right: 75%; }

[class~="grid"] > [data-push-right*="off-10"],
[class*="grid-"] > [data-push-right*="off-10"],
[class*="grid_"] > [data-push-right*="off-10"] {
  margin-right: 83.33333%; }

[class~="grid"] > [data-push-right*="off-11"],
[class*="grid-"] > [data-push-right*="off-11"],
[class*="grid_"] > [data-push-right*="off-11"] {
  margin-right: 91.66667%; }

@media (max-width: 1279px) {
  [class~="grid"] > [class*="_lg-1"],
  [class*="grid-"] > [class*="_lg-1"],
  [class*="grid_"] > [class*="_lg-1"] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  [class~="grid"] > [class*="_lg-2"],
  [class*="grid-"] > [class*="_lg-2"],
  [class*="grid_"] > [class*="_lg-2"] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class~="grid"] > [class*="_lg-3"],
  [class*="grid-"] > [class*="_lg-3"],
  [class*="grid_"] > [class*="_lg-3"] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  [class~="grid"] > [class*="_lg-4"],
  [class*="grid-"] > [class*="_lg-4"],
  [class*="grid_"] > [class*="_lg-4"] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class~="grid"] > [class*="_lg-5"],
  [class*="grid-"] > [class*="_lg-5"],
  [class*="grid_"] > [class*="_lg-5"] {
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  [class~="grid"] > [class*="_lg-6"],
  [class*="grid-"] > [class*="_lg-6"],
  [class*="grid_"] > [class*="_lg-6"] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  [class~="grid"] > [class*="_lg-7"],
  [class*="grid-"] > [class*="_lg-7"],
  [class*="grid_"] > [class*="_lg-7"] {
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  [class~="grid"] > [class*="_lg-8"],
  [class*="grid-"] > [class*="_lg-8"],
  [class*="grid_"] > [class*="_lg-8"] {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  [class~="grid"] > [class*="_lg-9"],
  [class*="grid-"] > [class*="_lg-9"],
  [class*="grid_"] > [class*="_lg-9"] {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  [class~="grid"] > [class*="_lg-10"],
  [class*="grid-"] > [class*="_lg-10"],
  [class*="grid_"] > [class*="_lg-10"] {
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  [class~="grid"] > [class*="_lg-11"],
  [class*="grid-"] > [class*="_lg-11"],
  [class*="grid_"] > [class*="_lg-11"] {
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  [class~="grid"] > [class*="_lg-12"],
  [class*="grid-"] > [class*="_lg-12"],
  [class*="grid_"] > [class*="_lg-12"] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  [class~="grid"] > [data-push-left*="_lg-0"],
  [class*="grid-"] > [data-push-left*="_lg-0"],
  [class*="grid_"] > [data-push-left*="_lg-0"] {
    margin-left: 0; }
  [class~="grid"] > [data-push-left*="_lg-1"],
  [class*="grid-"] > [data-push-left*="_lg-1"],
  [class*="grid_"] > [data-push-left*="_lg-1"] {
    margin-left: 8.33333%; }
  [class~="grid"] > [data-push-left*="_lg-2"],
  [class*="grid-"] > [data-push-left*="_lg-2"],
  [class*="grid_"] > [data-push-left*="_lg-2"] {
    margin-left: 16.66667%; }
  [class~="grid"] > [data-push-left*="_lg-3"],
  [class*="grid-"] > [data-push-left*="_lg-3"],
  [class*="grid_"] > [data-push-left*="_lg-3"] {
    margin-left: 25%; }
  [class~="grid"] > [data-push-left*="_lg-4"],
  [class*="grid-"] > [data-push-left*="_lg-4"],
  [class*="grid_"] > [data-push-left*="_lg-4"] {
    margin-left: 33.33333%; }
  [class~="grid"] > [data-push-left*="_lg-5"],
  [class*="grid-"] > [data-push-left*="_lg-5"],
  [class*="grid_"] > [data-push-left*="_lg-5"] {
    margin-left: 41.66667%; }
  [class~="grid"] > [data-push-left*="_lg-6"],
  [class*="grid-"] > [data-push-left*="_lg-6"],
  [class*="grid_"] > [data-push-left*="_lg-6"] {
    margin-left: 50%; }
  [class~="grid"] > [data-push-left*="_lg-7"],
  [class*="grid-"] > [data-push-left*="_lg-7"],
  [class*="grid_"] > [data-push-left*="_lg-7"] {
    margin-left: 58.33333%; }
  [class~="grid"] > [data-push-left*="_lg-8"],
  [class*="grid-"] > [data-push-left*="_lg-8"],
  [class*="grid_"] > [data-push-left*="_lg-8"] {
    margin-left: 66.66667%; }
  [class~="grid"] > [data-push-left*="_lg-9"],
  [class*="grid-"] > [data-push-left*="_lg-9"],
  [class*="grid_"] > [data-push-left*="_lg-9"] {
    margin-left: 75%; }
  [class~="grid"] > [data-push-left*="_lg-10"],
  [class*="grid-"] > [data-push-left*="_lg-10"],
  [class*="grid_"] > [data-push-left*="_lg-10"] {
    margin-left: 83.33333%; }
  [class~="grid"] > [data-push-left*="_lg-11"],
  [class*="grid-"] > [data-push-left*="_lg-11"],
  [class*="grid_"] > [data-push-left*="_lg-11"] {
    margin-left: 91.66667%; }
  [class~="grid"] > [data-push-right*="_lg-0"],
  [class*="grid-"] > [data-push-right*="_lg-0"],
  [class*="grid_"] > [data-push-right*="_lg-0"] {
    margin-right: 0; }
  [class~="grid"] > [data-push-right*="_lg-1"],
  [class*="grid-"] > [data-push-right*="_lg-1"],
  [class*="grid_"] > [data-push-right*="_lg-1"] {
    margin-right: 8.33333%; }
  [class~="grid"] > [data-push-right*="_lg-2"],
  [class*="grid-"] > [data-push-right*="_lg-2"],
  [class*="grid_"] > [data-push-right*="_lg-2"] {
    margin-right: 16.66667%; }
  [class~="grid"] > [data-push-right*="_lg-3"],
  [class*="grid-"] > [data-push-right*="_lg-3"],
  [class*="grid_"] > [data-push-right*="_lg-3"] {
    margin-right: 25%; }
  [class~="grid"] > [data-push-right*="_lg-4"],
  [class*="grid-"] > [data-push-right*="_lg-4"],
  [class*="grid_"] > [data-push-right*="_lg-4"] {
    margin-right: 33.33333%; }
  [class~="grid"] > [data-push-right*="_lg-5"],
  [class*="grid-"] > [data-push-right*="_lg-5"],
  [class*="grid_"] > [data-push-right*="_lg-5"] {
    margin-right: 41.66667%; }
  [class~="grid"] > [data-push-right*="_lg-6"],
  [class*="grid-"] > [data-push-right*="_lg-6"],
  [class*="grid_"] > [data-push-right*="_lg-6"] {
    margin-right: 50%; }
  [class~="grid"] > [data-push-right*="_lg-7"],
  [class*="grid-"] > [data-push-right*="_lg-7"],
  [class*="grid_"] > [data-push-right*="_lg-7"] {
    margin-right: 58.33333%; }
  [class~="grid"] > [data-push-right*="_lg-8"],
  [class*="grid-"] > [data-push-right*="_lg-8"],
  [class*="grid_"] > [data-push-right*="_lg-8"] {
    margin-right: 66.66667%; }
  [class~="grid"] > [data-push-right*="_lg-9"],
  [class*="grid-"] > [data-push-right*="_lg-9"],
  [class*="grid_"] > [data-push-right*="_lg-9"] {
    margin-right: 75%; }
  [class~="grid"] > [data-push-right*="_lg-10"],
  [class*="grid-"] > [data-push-right*="_lg-10"],
  [class*="grid_"] > [data-push-right*="_lg-10"] {
    margin-right: 83.33333%; }
  [class~="grid"] > [data-push-right*="_lg-11"],
  [class*="grid-"] > [data-push-right*="_lg-11"],
  [class*="grid_"] > [data-push-right*="_lg-11"] {
    margin-right: 91.66667%; }
  [class~="grid"] [class*="_lg-first"],
  [class*="grid-"] [class*="_lg-first"],
  [class*="grid_"] [class*="_lg-first"] {
    -ms-flex-order: -1;
    order: -1; }
  [class~="grid"] [class*="_lg-last"],
  [class*="grid-"] [class*="_lg-last"],
  [class*="grid_"] [class*="_lg-last"] {
    -ms-flex-order: 1;
    order: 1; } }

@media (max-width: 1023px) {
  [class~="grid"] > [class*="_md-1"],
  [class*="grid-"] > [class*="_md-1"],
  [class*="grid_"] > [class*="_md-1"] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  [class~="grid"] > [class*="_md-2"],
  [class*="grid-"] > [class*="_md-2"],
  [class*="grid_"] > [class*="_md-2"] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class~="grid"] > [class*="_md-3"],
  [class*="grid-"] > [class*="_md-3"],
  [class*="grid_"] > [class*="_md-3"] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  [class~="grid"] > [class*="_md-4"],
  [class*="grid-"] > [class*="_md-4"],
  [class*="grid_"] > [class*="_md-4"] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class~="grid"] > [class*="_md-5"],
  [class*="grid-"] > [class*="_md-5"],
  [class*="grid_"] > [class*="_md-5"] {
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  [class~="grid"] > [class*="_md-6"],
  [class*="grid-"] > [class*="_md-6"],
  [class*="grid_"] > [class*="_md-6"] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  [class~="grid"] > [class*="_md-7"],
  [class*="grid-"] > [class*="_md-7"],
  [class*="grid_"] > [class*="_md-7"] {
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  [class~="grid"] > [class*="_md-8"],
  [class*="grid-"] > [class*="_md-8"],
  [class*="grid_"] > [class*="_md-8"] {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  [class~="grid"] > [class*="_md-9"],
  [class*="grid-"] > [class*="_md-9"],
  [class*="grid_"] > [class*="_md-9"] {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  [class~="grid"] > [class*="_md-10"],
  [class*="grid-"] > [class*="_md-10"],
  [class*="grid_"] > [class*="_md-10"] {
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  [class~="grid"] > [class*="_md-11"],
  [class*="grid-"] > [class*="_md-11"],
  [class*="grid_"] > [class*="_md-11"] {
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  [class~="grid"] > [class*="_md-12"],
  [class*="grid-"] > [class*="_md-12"],
  [class*="grid_"] > [class*="_md-12"] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  [class~="grid"] > [data-push-left*="_md-0"],
  [class*="grid-"] > [data-push-left*="_md-0"],
  [class*="grid_"] > [data-push-left*="_md-0"] {
    margin-left: 0; }
  [class~="grid"] > [data-push-left*="_md-1"],
  [class*="grid-"] > [data-push-left*="_md-1"],
  [class*="grid_"] > [data-push-left*="_md-1"] {
    margin-left: 8.33333%; }
  [class~="grid"] > [data-push-left*="_md-2"],
  [class*="grid-"] > [data-push-left*="_md-2"],
  [class*="grid_"] > [data-push-left*="_md-2"] {
    margin-left: 16.66667%; }
  [class~="grid"] > [data-push-left*="_md-3"],
  [class*="grid-"] > [data-push-left*="_md-3"],
  [class*="grid_"] > [data-push-left*="_md-3"] {
    margin-left: 25%; }
  [class~="grid"] > [data-push-left*="_md-4"],
  [class*="grid-"] > [data-push-left*="_md-4"],
  [class*="grid_"] > [data-push-left*="_md-4"] {
    margin-left: 33.33333%; }
  [class~="grid"] > [data-push-left*="_md-5"],
  [class*="grid-"] > [data-push-left*="_md-5"],
  [class*="grid_"] > [data-push-left*="_md-5"] {
    margin-left: 41.66667%; }
  [class~="grid"] > [data-push-left*="_md-6"],
  [class*="grid-"] > [data-push-left*="_md-6"],
  [class*="grid_"] > [data-push-left*="_md-6"] {
    margin-left: 50%; }
  [class~="grid"] > [data-push-left*="_md-7"],
  [class*="grid-"] > [data-push-left*="_md-7"],
  [class*="grid_"] > [data-push-left*="_md-7"] {
    margin-left: 58.33333%; }
  [class~="grid"] > [data-push-left*="_md-8"],
  [class*="grid-"] > [data-push-left*="_md-8"],
  [class*="grid_"] > [data-push-left*="_md-8"] {
    margin-left: 66.66667%; }
  [class~="grid"] > [data-push-left*="_md-9"],
  [class*="grid-"] > [data-push-left*="_md-9"],
  [class*="grid_"] > [data-push-left*="_md-9"] {
    margin-left: 75%; }
  [class~="grid"] > [data-push-left*="_md-10"],
  [class*="grid-"] > [data-push-left*="_md-10"],
  [class*="grid_"] > [data-push-left*="_md-10"] {
    margin-left: 83.33333%; }
  [class~="grid"] > [data-push-left*="_md-11"],
  [class*="grid-"] > [data-push-left*="_md-11"],
  [class*="grid_"] > [data-push-left*="_md-11"] {
    margin-left: 91.66667%; }
  [class~="grid"] > [data-push-right*="_md-0"],
  [class*="grid-"] > [data-push-right*="_md-0"],
  [class*="grid_"] > [data-push-right*="_md-0"] {
    margin-right: 0; }
  [class~="grid"] > [data-push-right*="_md-1"],
  [class*="grid-"] > [data-push-right*="_md-1"],
  [class*="grid_"] > [data-push-right*="_md-1"] {
    margin-right: 8.33333%; }
  [class~="grid"] > [data-push-right*="_md-2"],
  [class*="grid-"] > [data-push-right*="_md-2"],
  [class*="grid_"] > [data-push-right*="_md-2"] {
    margin-right: 16.66667%; }
  [class~="grid"] > [data-push-right*="_md-3"],
  [class*="grid-"] > [data-push-right*="_md-3"],
  [class*="grid_"] > [data-push-right*="_md-3"] {
    margin-right: 25%; }
  [class~="grid"] > [data-push-right*="_md-4"],
  [class*="grid-"] > [data-push-right*="_md-4"],
  [class*="grid_"] > [data-push-right*="_md-4"] {
    margin-right: 33.33333%; }
  [class~="grid"] > [data-push-right*="_md-5"],
  [class*="grid-"] > [data-push-right*="_md-5"],
  [class*="grid_"] > [data-push-right*="_md-5"] {
    margin-right: 41.66667%; }
  [class~="grid"] > [data-push-right*="_md-6"],
  [class*="grid-"] > [data-push-right*="_md-6"],
  [class*="grid_"] > [data-push-right*="_md-6"] {
    margin-right: 50%; }
  [class~="grid"] > [data-push-right*="_md-7"],
  [class*="grid-"] > [data-push-right*="_md-7"],
  [class*="grid_"] > [data-push-right*="_md-7"] {
    margin-right: 58.33333%; }
  [class~="grid"] > [data-push-right*="_md-8"],
  [class*="grid-"] > [data-push-right*="_md-8"],
  [class*="grid_"] > [data-push-right*="_md-8"] {
    margin-right: 66.66667%; }
  [class~="grid"] > [data-push-right*="_md-9"],
  [class*="grid-"] > [data-push-right*="_md-9"],
  [class*="grid_"] > [data-push-right*="_md-9"] {
    margin-right: 75%; }
  [class~="grid"] > [data-push-right*="_md-10"],
  [class*="grid-"] > [data-push-right*="_md-10"],
  [class*="grid_"] > [data-push-right*="_md-10"] {
    margin-right: 83.33333%; }
  [class~="grid"] > [data-push-right*="_md-11"],
  [class*="grid-"] > [data-push-right*="_md-11"],
  [class*="grid_"] > [data-push-right*="_md-11"] {
    margin-right: 91.66667%; }
  [class~="grid"] [class*="_md-first"],
  [class*="grid-"] [class*="_md-first"],
  [class*="grid_"] [class*="_md-first"] {
    -ms-flex-order: -1;
    order: -1; }
  [class~="grid"] [class*="_md-last"],
  [class*="grid-"] [class*="_md-last"],
  [class*="grid_"] [class*="_md-last"] {
    -ms-flex-order: 1;
    order: 1; } }

@media (max-width: 767px) {
  [class~="grid"] > [class*="_sm-1"],
  [class*="grid-"] > [class*="_sm-1"],
  [class*="grid_"] > [class*="_sm-1"] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  [class~="grid"] > [class*="_sm-2"],
  [class*="grid-"] > [class*="_sm-2"],
  [class*="grid_"] > [class*="_sm-2"] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  [class~="grid"] > [class*="_sm-3"],
  [class*="grid-"] > [class*="_sm-3"],
  [class*="grid_"] > [class*="_sm-3"] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  [class~="grid"] > [class*="_sm-4"],
  [class*="grid-"] > [class*="_sm-4"],
  [class*="grid_"] > [class*="_sm-4"] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  [class~="grid"] > [class*="_sm-5"],
  [class*="grid-"] > [class*="_sm-5"],
  [class*="grid_"] > [class*="_sm-5"] {
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  [class~="grid"] > [class*="_sm-6"],
  [class*="grid-"] > [class*="_sm-6"],
  [class*="grid_"] > [class*="_sm-6"] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  [class~="grid"] > [class*="_sm-7"],
  [class*="grid-"] > [class*="_sm-7"],
  [class*="grid_"] > [class*="_sm-7"] {
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  [class~="grid"] > [class*="_sm-8"],
  [class*="grid-"] > [class*="_sm-8"],
  [class*="grid_"] > [class*="_sm-8"] {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  [class~="grid"] > [class*="_sm-9"],
  [class*="grid-"] > [class*="_sm-9"],
  [class*="grid_"] > [class*="_sm-9"] {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  [class~="grid"] > [class*="_sm-10"],
  [class*="grid-"] > [class*="_sm-10"],
  [class*="grid_"] > [class*="_sm-10"] {
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  [class~="grid"] > [class*="_sm-11"],
  [class*="grid-"] > [class*="_sm-11"],
  [class*="grid_"] > [class*="_sm-11"] {
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  [class~="grid"] > [class*="_sm-12"],
  [class*="grid-"] > [class*="_sm-12"],
  [class*="grid_"] > [class*="_sm-12"] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  [class~="grid"] > [data-push-left*="_sm-0"],
  [class*="grid-"] > [data-push-left*="_sm-0"],
  [class*="grid_"] > [data-push-left*="_sm-0"] {
    margin-left: 0; }
  [class~="grid"] > [data-push-left*="_sm-1"],
  [class*="grid-"] > [data-push-left*="_sm-1"],
  [class*="grid_"] > [data-push-left*="_sm-1"] {
    margin-left: 8.33333%; }
  [class~="grid"] > [data-push-left*="_sm-2"],
  [class*="grid-"] > [data-push-left*="_sm-2"],
  [class*="grid_"] > [data-push-left*="_sm-2"] {
    margin-left: 16.66667%; }
  [class~="grid"] > [data-push-left*="_sm-3"],
  [class*="grid-"] > [data-push-left*="_sm-3"],
  [class*="grid_"] > [data-push-left*="_sm-3"] {
    margin-left: 25%; }
  [class~="grid"] > [data-push-left*="_sm-4"],
  [class*="grid-"] > [data-push-left*="_sm-4"],
  [class*="grid_"] > [data-push-left*="_sm-4"] {
    margin-left: 33.33333%; }
  [class~="grid"] > [data-push-left*="_sm-5"],
  [class*="grid-"] > [data-push-left*="_sm-5"],
  [class*="grid_"] > [data-push-left*="_sm-5"] {
    margin-left: 41.66667%; }
  [class~="grid"] > [data-push-left*="_sm-6"],
  [class*="grid-"] > [data-push-left*="_sm-6"],
  [class*="grid_"] > [data-push-left*="_sm-6"] {
    margin-left: 50%; }
  [class~="grid"] > [data-push-left*="_sm-7"],
  [class*="grid-"] > [data-push-left*="_sm-7"],
  [class*="grid_"] > [data-push-left*="_sm-7"] {
    margin-left: 58.33333%; }
  [class~="grid"] > [data-push-left*="_sm-8"],
  [class*="grid-"] > [data-push-left*="_sm-8"],
  [class*="grid_"] > [data-push-left*="_sm-8"] {
    margin-left: 66.66667%; }
  [class~="grid"] > [data-push-left*="_sm-9"],
  [class*="grid-"] > [data-push-left*="_sm-9"],
  [class*="grid_"] > [data-push-left*="_sm-9"] {
    margin-left: 75%; }
  [class~="grid"] > [data-push-left*="_sm-10"],
  [class*="grid-"] > [data-push-left*="_sm-10"],
  [class*="grid_"] > [data-push-left*="_sm-10"] {
    margin-left: 83.33333%; }
  [class~="grid"] > [data-push-left*="_sm-11"],
  [class*="grid-"] > [data-push-left*="_sm-11"],
  [class*="grid_"] > [data-push-left*="_sm-11"] {
    margin-left: 91.66667%; }
  [class~="grid"] > [data-push-right*="_sm-0"],
  [class*="grid-"] > [data-push-right*="_sm-0"],
  [class*="grid_"] > [data-push-right*="_sm-0"] {
    margin-right: 0; }
  [class~="grid"] > [data-push-right*="_sm-1"],
  [class*="grid-"] > [data-push-right*="_sm-1"],
  [class*="grid_"] > [data-push-right*="_sm-1"] {
    margin-right: 8.33333%; }
  [class~="grid"] > [data-push-right*="_sm-2"],
  [class*="grid-"] > [data-push-right*="_sm-2"],
  [class*="grid_"] > [data-push-right*="_sm-2"] {
    margin-right: 16.66667%; }
  [class~="grid"] > [data-push-right*="_sm-3"],
  [class*="grid-"] > [data-push-right*="_sm-3"],
  [class*="grid_"] > [data-push-right*="_sm-3"] {
    margin-right: 25%; }
  [class~="grid"] > [data-push-right*="_sm-4"],
  [class*="grid-"] > [data-push-right*="_sm-4"],
  [class*="grid_"] > [data-push-right*="_sm-4"] {
    margin-right: 33.33333%; }
  [class~="grid"] > [data-push-right*="_sm-5"],
  [class*="grid-"] > [data-push-right*="_sm-5"],
  [class*="grid_"] > [data-push-right*="_sm-5"] {
    margin-right: 41.66667%; }
  [class~="grid"] > [data-push-right*="_sm-6"],
  [class*="grid-"] > [data-push-right*="_sm-6"],
  [class*="grid_"] > [data-push-right*="_sm-6"] {
    margin-right: 50%; }
  [class~="grid"] > [data-push-right*="_sm-7"],
  [class*="grid-"] > [data-push-right*="_sm-7"],
  [class*="grid_"] > [data-push-right*="_sm-7"] {
    margin-right: 58.33333%; }
  [class~="grid"] > [data-push-right*="_sm-8"],
  [class*="grid-"] > [data-push-right*="_sm-8"],
  [class*="grid_"] > [data-push-right*="_sm-8"] {
    margin-right: 66.66667%; }
  [class~="grid"] > [data-push-right*="_sm-9"],
  [class*="grid-"] > [data-push-right*="_sm-9"],
  [class*="grid_"] > [data-push-right*="_sm-9"] {
    margin-right: 75%; }
  [class~="grid"] > [data-push-right*="_sm-10"],
  [class*="grid-"] > [data-push-right*="_sm-10"],
  [class*="grid_"] > [data-push-right*="_sm-10"] {
    margin-right: 83.33333%; }
  [class~="grid"] > [data-push-right*="_sm-11"],
  [class*="grid-"] > [data-push-right*="_sm-11"],
  [class*="grid_"] > [data-push-right*="_sm-11"] {
    margin-right: 91.66667%; }
  [class~="grid"] [class*="_sm-first"],
  [class*="grid-"] [class*="_sm-first"],
  [class*="grid_"] [class*="_sm-first"] {
    -ms-flex-order: -1;
    order: -1; }
  [class~="grid"] [class*="_sm-last"],
  [class*="grid-"] [class*="_sm-last"],
  [class*="grid_"] [class*="_sm-last"] {
    -ms-flex-order: 1;
    order: 1; } }

/************************
    HIDING COLS
*************************/
@media (max-width: 1279px) {
  [class*="lg-hidden"] {
    display: none; } }

@media (max-width: 1023px) {
  [class*="md-hidden"] {
    display: none; } }

@media (max-width: 767px) {
  [class*="sm-hidden"] {
    display: none; } }

@font-face {
  font-family: 'fontello';
  src: url("../../fonts/fontello.eot?58850786");
  src: url("../../fonts/fontello.eot?58850786#iefix") format("embedded-opentype"), url("../../fonts/fontello.woff?58850786") format("woff"), url("../../fonts/fontello.ttf?58850786") format("truetype"), url("../../fonts/fontello.svg?58850786#fontello") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Nunito ExtraLight */
@font-face {
  font-family: 'Nunito';
  src: url("../../fonts/Nunito-ExtraLight.ttf");
  src: url("../../fonts/Nunito-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal; }

/* Nunito Light */
@font-face {
  font-family: 'Nunito';
  src: url("../../fonts/Nunito-Light.ttf");
  src: url("../../fonts/Nunito-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }

/* Nunito Light Italic */
@font-face {
  font-family: 'Nunito';
  src: url("../../fonts/Nunito-LightItalic.ttf");
  src: url("../../fonts/Nunito-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic; }

/* Nunito Regular */
@font-face {
  font-family: 'Nunito';
  src: url("../../fonts/Nunito-Regular.ttf");
  src: url("../../fonts/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

/* Nunito Regular Italic */
@font-face {
  font-family: 'Nunito';
  src: url("../../fonts/Nunito-Italic.ttf");
  src: url("../../fonts/Nunito-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic; }

/* Nunito Semibold */
@font-face {
  font-family: 'Nunito';
  src: url("../../fonts/Nunito-SemiBold.ttf");
  src: url("../../fonts/Nunito-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal; }

/* Nunito Semibold  */
@font-face {
  font-family: 'Nunito';
  src: url("../../fonts/Nunito-SemiBoldItalic.ttf");
  src: url("../../fonts/Nunito-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic; }

/* colors */
/* responsive breakpoints (use with max-width!) */
/* consistent spacing between elements */
/* text sizes */
/* fonts */
strong {
  font-weight: 600; }

/* template for pseudo elements */
/****************************************/
/* very basic styles */
body,
input,
textarea,
select,
button {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  line-height: 1.4;
  font-size: 16px;
  background: #FFFFFF;
  color: #000000; }

/****************************************/
/* remove all interface element styles */
input:not([type="checkbox"]),
input:not([type="radio"]),
textarea,
select,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0; }

/* fix Firefox additional form element height */
input::-moz-focus-inner,
button::-moz-focus-inner {
  border: none; }

/****************************************/
/* reusable */
.hidden {
  display: none; }

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

/****************************************/
/* consistent margins */
.margin-none {
  margin-top: 0;
  margin-bottom: 0; }

.margin-top-xs {
  margin-top: 8px; }

.margin-top-s {
  margin-top: 12px; }

.margin-top-m {
  margin-top: 20px; }

.margin-top-l {
  margin-top: 30px; }

.margin-top-xl {
  margin-top: 44px; }

.margin-top-none {
  margin-top: 0; }

.margin-bottom-xs {
  margin-bottom: 8px; }

.margin-bottom-s {
  margin-bottom: 12px; }

.margin-bottom-m {
  margin-bottom: 20px; }

.margin-bottom-l {
  margin-bottom: 30px; }

.margin-bottom-xl {
  margin-bottom: 44px; }

.margin-bottom-none {
  margin-bottom: 0; }

/****************************************/
/* consistent paddings */
.padding-none {
  margin-top: 0;
  margin-bottom: 0; }

.padding-top-xs {
  padding-top: 8px; }

.padding-top-s {
  padding-top: 12px; }

.padding-top-m {
  padding-top: 20px; }

.padding-top-l {
  padding-top: 30px; }

.padding-top-xl {
  padding-top: 44px; }

.padding-top-none {
  padding-top: 0; }

.padding-bottom-xs {
  padding-bottom: 8px; }

.padding-bottom-s {
  padding-bottom: 12px; }

.padding-bottom-m {
  padding-bottom: 20px; }

.padding-bottom-l {
  padding-bottom: 30px; }

.padding-bottom-xl {
  padding-bottom: 44px; }

.padding-bottom-none {
  padding-bottom: 0; }

/****************************************/
/* default tags */
b,
strong {
  font-weight: 600; }

i,
em {
  font-style: italic; }

img {
  max-width: 100%; }

/****************************************/
/* layotter wrapper settings */
.lo-wrapper {
  overflow: hidden; }

/****************************************/
/* links */
html, body {
  font-family: 'Nunito', sans-serif; }

a {
  text-decoration: none;
  cursor: pointer;
  color: #005d9c;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.15; }

a:hover {
  text-decoration: underline; }

* {
  outline: none !important; }

/****************************************/
/* headlines */
/* NO MARGINS HERE, PLEASE */
/* margins outside of .copytext should be applied using .margin-top-* and margin-bottom-* classes */
/* margins inside .copytext should be added in the .copytext section below */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.15;
  font-size: 46px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none; }

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

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

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

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

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

/****************************************/
/* copytext */
/* special styles for block-level elements inside .copytext (e.g. blog articles) */
.copytext h1,
.copytext h2,
.copytext h3,
.copytext h4,
.copytext h5,
.copytext h6,
.copytext .h1,
.copytext .h2,
.copytext .h3,
.copytext .h4,
.copytext .h5,
.copytext .h6 {
  margin-bottom: 20px;
  margin-top: 30px; }
  .copytext h1:first-child,
  .copytext h2:first-child,
  .copytext h3:first-child,
  .copytext h4:first-child,
  .copytext h5:first-child,
  .copytext h6:first-child,
  .copytext .h1:first-child,
  .copytext .h2:first-child,
  .copytext .h3:first-child,
  .copytext .h4:first-child,
  .copytext .h5:first-child,
  .copytext .h6:first-child {
    margin-top: 0; }
  .copytext h1:last-child,
  .copytext h2:last-child,
  .copytext h3:last-child,
  .copytext h4:last-child,
  .copytext h5:last-child,
  .copytext h6:last-child,
  .copytext .h1:last-child,
  .copytext .h2:last-child,
  .copytext .h3:last-child,
  .copytext .h4:last-child,
  .copytext .h5:last-child,
  .copytext .h6:last-child {
    margin-bottom: 0; }

.copytext h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.15;
  font-size: 30px; }
  @media all and (min-width: 767px) {
    .copytext h2 {
      font-size: 32px; } }

.copytext h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.15;
  font-size: 18px; }
  @media all and (min-width: 767px) {
    .copytext h3 {
      font-size: 30px; } }

.copytext h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  line-height: 1.4;
  font-size: 18px; }
  @media all and (min-width: 767px) {
    .copytext h4 {
      font-size: 30px; } }

.copytext p {
  margin-top: 20px;
  margin-bottom: 20px; }
  .copytext p:first-child {
    margin-top: 0; }
  .copytext p:last-child {
    margin-bottom: 0; }

.copytext ul,
.copytext ol {
  margin: 20px 0;
  padding: 0 20px; }
  .copytext ul:first-child,
  .copytext ol:first-child {
    margin-top: 0; }
  .copytext ul:last-child,
  .copytext ol:last-child {
    margin-bottom: 0; }
  .copytext ul li,
  .copytext ol li {
    margin-left: 1em; }

.copytext ul {
  list-style: square; }

.copytext ol {
  list-style: decimal; }

.copytext img {
  height: auto; }

.copytext a {
  word-break: break-word; }

.copytext blockquote {
  margin: 20px 0;
  padding: 0 20px;
  font-style: italic; }
  .copytext blockquote:first-child {
    margin-top: 0; }
  .copytext blockquote:last-child {
    margin-bottom: 0; }

/* CUSTOM */
.inner {
  max-width: 1620px;
  padding: 12px;
  display: block;
  margin: 0 auto;
  position: relative; }

.grid {
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto; }
  .grid.wide {
    max-width: none;
    margin: 0 -0.5rem; }
    @media all and (max-width: 1279px) {
      .grid.wide {
        padding: 0;
        margin-left: -30px !important;
        margin-right: -30px !important; } }

@media all and (max-width: 1279px) {
  .lo-wrapper {
    padding: 0 20px; } }

@media all and (max-width: 1600px) and (min-width: 1279px) {
  header {
    padding: 0 17px; } }

@media all and (max-width: 1600px) and (min-width: 1279px) {
  #content .lo-wrapper {
    padding-left: 17px;
    padding-right: 17px; }
    #content .lo-wrapper.wide {
      padding-left: 0;
      padding-right: 0; } }

html, body, * {
  line-height: 1.2 !important; }

/* same height */
.grid-equalHeight .lo-element {
  width: 100%;
  height: 100%; }

/* Contact Form 7 */
.contact-form-bewerber {
  margin-bottom: 20px; }
  .contact-form-bewerber .wpcf7 {
    background-color: #ebebeb;
    display: block;
    max-width: 100%;
    margin: 20px 0;
    padding: 20px 12px; }
    .contact-form-bewerber .wpcf7 input, .contact-form-bewerber .wpcf7 select, .contact-form-bewerber .wpcf7 textarea {
      padding: 9px 12px;
      background-color: #FFFFFF;
      border: 1px solid #dedede;
      font-family: 'Nunito', sans-serif;
      font-weight: 400;
      line-height: 1.15;
      font-size: 16px;
      max-width: 100%;
      width: 100%;
      height: 40px;
      line-height: 40px; }
      @media all and (min-width: 767px) {
        .contact-form-bewerber .wpcf7 input, .contact-form-bewerber .wpcf7 select, .contact-form-bewerber .wpcf7 textarea {
          font-size: 20px; } }
      @media all and (min-width: 1023px) {
        .contact-form-bewerber .wpcf7 input, .contact-form-bewerber .wpcf7 select, .contact-form-bewerber .wpcf7 textarea {
          font-size: 10px; } }
  @media all and (min-width: 1023px) and (min-width: 767px) {
    .contact-form-bewerber .wpcf7 input, .contact-form-bewerber .wpcf7 select, .contact-form-bewerber .wpcf7 textarea {
      font-size: 15px; } }
      .contact-form-bewerber .wpcf7 input.wpcf7-not-valid, .contact-form-bewerber .wpcf7 select.wpcf7-not-valid, .contact-form-bewerber .wpcf7 textarea.wpcf7-not-valid {
        border-color: red; }
    .contact-form-bewerber .wpcf7 textarea {
      height: auto;
      line-height: 1.5em; }
    .contact-form-bewerber .wpcf7 h4 {
      font-family: 'Nunito', sans-serif;
      font-weight: 300;
      line-height: 1.4;
      font-size: 10px;
      margin: 17px 0 0 0;
      display: block; }
      @media all and (min-width: 767px) {
        .contact-form-bewerber .wpcf7 h4 {
          font-size: 15px; } }
    .contact-form-bewerber .wpcf7 input[type="submit"] {
      background-color: #005d9c;
      display: block;
      width: 300px;
      margin: 12px auto;
      position: relative;
      color: #FFFFFF;
      cursor: pointer; }
      .contact-form-bewerber .wpcf7 input[type="submit"]:hover {
        opacity: 0.9; }
    .contact-form-bewerber .wpcf7 .wpcf7-response-output {
      border-color: red;
      background-color: red;
      padding: 12px;
      color: #FFFFFF;
      text-align: center;
      font-family: 'Nunito', sans-serif;
      font-weight: 400;
      line-height: 1.15; }
    .contact-form-bewerber .wpcf7 .wpcf7-mail-sent-ok {
      background-color: green;
      border-color: green; }
    .contact-form-bewerber .wpcf7 .wpcf7-not-valid-tip {
      margin-top: 5px;
      font-family: 'Nunito', sans-serif;
      font-weight: 400;
      line-height: 1.15; }
    .contact-form-bewerber .wpcf7 .wpcf7-file {
      text-indent: -150px; }
    .contact-form-bewerber .wpcf7 label {
      background-color: #cfcfcf;
      text-align: center;
      display: block;
      cursor: pointer;
      height: 40px;
      line-height: 40px !important;
      font-family: 'Nunito', sans-serif;
      font-weight: 400;
      line-height: 1.15;
      max-width: 200px; }
    .contact-form-bewerber .wpcf7 label:hover {
      background-color: #000000;
      color: #FFFFFF; }

.sprachen {
  position: absolute;
  right: 2px;
  top: -50px; }
  @media all and (max-width: 1414px) {
    .sprachen {
      right: 70px;
      top: -60px; } }
  .sprachen li {
    position: relative;
    display: inline-block; }
    .sprachen li:after {
      content: '|';
      position: absolute;
      right: -8px;
      top: 0px;
      display: block;
      font-size: 18px;
      font-weight: 300; }
    .sprachen li a {
      color: #000000;
      padding: 0 0 0 6px;
      font-size: 18px;
      font-weight: 200; }
      .sprachen li a.current_lang {
        font-weight: 600; }
    .sprachen li:last-of-type:after {
      display: none; }

.single-branchen footer {
  margin-top: 100px; }

.page #content, .blog #content, .single #content {
  padding-top: 30px; }

.page.home #content, .blog.home #content, .single.home #content {
  padding-top: 0; }

@media all and (max-width: 1600px) {
  .blog #content {
    padding-left: 20px;
    padding-right: 20px; } }

/****************************************/
/* CSS classes used by Wordpress core */
.alignnone,
a img.alignnone {
  margin: 12px 0; }

.aligncenter,
a img.aligncenter {
  display: block;
  margin: 12px auto; }

.alignleft,
a img.alignleft {
  float: left;
  margin: 12px 20px 12px 0; }
  @media only screen and (max-width: 1023px) {
    .alignleft,
    a img.alignleft {
      max-width: 100%; } }

.alignright,
a img.alignright {
  float: right;
  margin: 12px 0 12px 20px; }
  @media only screen and (max-width: 1023px) {
    .alignright,
    a img.alignright {
      max-width: 100%; } }

.wp-caption {
  max-width: 100%;
  padding: 12px;
  text-align: center; }
  @media only screen and (max-width: 1023px) {
    .wp-caption {
      max-width: 50%; } }
  .wp-caption p.wp-caption-text {
    margin: 0;
    padding-top: 12px;
    font-size: 14px; }

#footer, footer {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.15;
  background-color: #f6f6f6;
  padding-top: 12px;
  padding-bottom: 44px; }
  @media all and (max-width: 1600px) {
    #footer .inner, footer .inner {
      padding: 12px 30px 44px 30px; } }
  #footer .copy, footer .copy {
    float: left; }
    @media all and (max-width: 1023px) {
      #footer .copy, footer .copy {
        float: none; } }
  #footer .footer-menu, footer .footer-menu {
    margin-left: 12px; }
    @media all and (max-width: 1023px) {
      #footer .footer-menu, footer .footer-menu {
        margin-left: 0;
        margin-top: 8px; } }
    #footer .footer-menu li, footer .footer-menu li {
      display: inline-block; }
      #footer .footer-menu li a, footer .footer-menu li a {
        display: block;
        color: #000000;
        margin-left: 20px; }
        @media all and (max-width: 1023px) {
          #footer .footer-menu li a, footer .footer-menu li a {
            margin-right: 20px;
            margin-left: 0; } }

#header, header {
  height: 200px;
  position: relative;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.02);
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  background-color: #f2f2f2; }
  @media all and (max-width: 1414px) {
    #header, header {
      height: 100px; } }
  #header .inner, header .inner {
    max-width: 1620px;
    padding: 12px 12px 0 12px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
    height: 200px; }
    @media all and (max-width: 1414px) {
      #header .inner, header .inner {
        height: 100px;
        padding: 6px 12px; } }
    #header .inner .logo-wrapper, header .inner .logo-wrapper {
      position: relative;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-direction: column;
      flex-direction: column; }
    #header .inner a.logo, header .inner a.logo {
      position: relative;
      display: block;
      width: 100%;
      max-width: 206px;
      min-width: 160px;
      height: auto; }
      @media all and (max-width: 1414px) {
        #header .inner a.logo, header .inner a.logo {
          height: 100%;
          width: auto;
          min-width: 116px; } }
      #header .inner a.logo img, header .inner a.logo img {
        width: 100%;
        height: auto; }
        @media all and (max-width: 1414px) {
          #header .inner a.logo img, header .inner a.logo img {
            height: 100%;
            width: auto; } }
    #header .inner .menu, header .inner .menu {
      position: relative;
      bottom: 1;
      display: block;
      -ms-flex-item-align: end;
      align-self: flex-end; }
      @media all and (max-width: 1414px) {
        #header .inner .menu, header .inner .menu {
          position: absolute;
          width: 100%;
          top: 100px;
          right: 5px;
          display: none; }
          #header .inner .menu.show, header .inner .menu.show {
            display: block; } }
      #header .inner .menu .menu-container, header .inner .menu .menu-container {
        text-align: right; }
        @media all and (max-width: 1414px) {
          #header .inner .menu .menu-container, header .inner .menu .menu-container {
            text-align: left; } }
        #header .inner .menu .menu-container ul li, header .inner .menu .menu-container ul li {
          display: inline-block;
          position: relative;
          margin-top: 4px; }
          @media all and (max-width: 1414px) {
            #header .inner .menu .menu-container ul li, header .inner .menu .menu-container ul li {
              width: 100%;
              display: block;
              border-bottom: 1px solid #cfcfcf;
              margin-top: 0; } }
          #header .inner .menu .menu-container ul li a, header .inner .menu .menu-container ul li a {
            display: block;
            position: relative;
            background-color: #ebebeb;
            padding: 30px 64px;
            color: #000000;
            font-family: 'Nunito', sans-serif;
            font-weight: 400;
            line-height: 1.15;
            text-decoration: none;
            transition: all, 0.3s, linear; }
            @media all and (max-width: 1500px) {
              #header .inner .menu .menu-container ul li a, header .inner .menu .menu-container ul li a {
                padding: 30px 40px; } }
            @media all and (max-width: 1200px) {
              #header .inner .menu .menu-container ul li a, header .inner .menu .menu-container ul li a {
                padding: 30px 24px; } }
            @media all and (max-width: 1414px) {
              #header .inner .menu .menu-container ul li a, header .inner .menu .menu-container ul li a {
                padding: 20px 0;
                text-align: left;
                padding-left: 10%; } }
            #header .inner .menu .menu-container ul li a.active #header .inner .menu .menu-container ul li a.current_page_ancestor, header .inner .menu .menu-container ul li a.active #header .inner .menu .menu-container ul li a.current_page_ancestor, #header .inner .menu .menu-container ul li a.active header .inner .menu .menu-container ul li a.current_page_ancestor, header .inner .menu .menu-container ul li a.active header .inner .menu .menu-container ul li a.current_page_ancestor {
              background-color: #cfcfcf !important;
              font-weight: 600 !important; }
            #header .inner .menu .menu-container ul li a:hover, header .inner .menu .menu-container ul li a:hover {
              background-color: #cfcfcf; }
          #header .inner .menu .menu-container ul li .nav-drop, header .inner .menu .menu-container ul li .nav-drop {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            min-width: 100%;
            background: white;
            padding: 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
            @media all and (max-width: 1414px) {
              #header .inner .menu .menu-container ul li .nav-drop, header .inner .menu .menu-container ul li .nav-drop {
                position: relative; } }
            #header .inner .menu .menu-container ul li .nav-drop li, header .inner .menu .menu-container ul li .nav-drop li {
              display: block; }
              @media all and (max-width: 1414px) {
                #header .inner .menu .menu-container ul li .nav-drop li:last-child, header .inner .menu .menu-container ul li .nav-drop li:last-child {
                  border-bottom: none !important;
                  box-shadow: none; }
                #header .inner .menu .menu-container ul li .nav-drop li:first-child, header .inner .menu .menu-container ul li .nav-drop li:first-child {
                  border-top: 1px solid #cfcfcf; } }
              #header .inner .menu .menu-container ul li .nav-drop li.active a, header .inner .menu .menu-container ul li .nav-drop li.active a {
                background-color: #cfcfcf;
                font-weight: 600; }
              #header .inner .menu .menu-container ul li .nav-drop li a, header .inner .menu .menu-container ul li .nav-drop li a {
                width: 100%;
                text-align: center;
                padding: 14px 15px;
                margin-top: 2px;
                background-image: none;
                font-size: 13px; }
                @media all and (max-width: 1414px) {
                  #header .inner .menu .menu-container ul li .nav-drop li a, header .inner .menu .menu-container ul li .nav-drop li a {
                    margin-top: 0;
                    box-shadow: none;
                    background-color: #f3f3f3;
                    padding: 12px 0;
                    text-align: left;
                    padding-left: 10%; } }
          @media all and (min-width: 1415px) {
            #header .inner .menu .menu-container ul li:hover .nav-drop, header .inner .menu .menu-container ul li:hover .nav-drop {
              display: block; } }
          #header .inner .menu .menu-container ul li.show .nav-drop, header .inner .menu .menu-container ul li.show .nav-drop {
            display: block; }
          #header .inner .menu .menu-container ul li.sub-items .arrow_down, header .inner .menu .menu-container ul li.sub-items .arrow_down {
            display: none; }
            @media all and (max-width: 1414px) {
              #header .inner .menu .menu-container ul li.sub-items .arrow_down, header .inner .menu .menu-container ul li.sub-items .arrow_down {
                display: block;
                position: absolute;
                right: 0;
                top: 0;
                bottom: 0;
                height: 60px;
                width: 60px;
                background-color: red;
                background: transparent url(../../img/arrow-down.svg) center center no-repeat;
                background-size: 30px; } }
    #header .inner #menu-switch, header .inner #menu-switch {
      position: relative;
      -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
      height: 30px;
      width: 30px;
      overflow: hidden;
      font-size: 0; }
      #header .inner #menu-switch:before, header .inner #menu-switch:before {
        font-size: 32px;
        content: '\e809';
        height: 30px;
        width: 30px;
        display: block;
        font-family: fontello;
        color: #000; }
      @media (min-width: 1415px) {
        #header .inner #menu-switch, header .inner #menu-switch {
          display: none; } }

.latest_news {
  background-image: url(../../img/bg-news.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 0 20px 74px 20px;
  margin: 14px 0 0 0; }
  @media all and (max-width: 1023px) {
    .latest_news {
      padding: 25px 20px 74px 20px; } }
  .latest_news .headline {
    color: #FFFFFF; }
    .latest_news .headline:before {
      display: none; }
    @media all and (max-width: 1279px) {
      .latest_news .headline {
        padding-left: 0; } }
  .latest_news .box {
    background-color: #FFFFFF; }
    @media all and (max-width: 1280px) {
      .latest_news .box a.more {
        left: 33px; } }
  .latest_news .center {
    text-align: center;
    position: relative; }
    .latest_news .center .button {
      display: inline-block;
      text-align: center;
      background-color: rgba(255, 255, 255, 0.8);
      color: #005d9c;
      padding: 20px 74px;
      font-family: 'Nunito', sans-serif;
      font-weight: 400;
      line-height: 1.15;
      font-weight: 600;
      border-radius: 3px;
      cursor: pointer; }
      .latest_news .center .button:hover {
        background-color: #FFFFFF;
        text-decoration: none; }
      @media all and (max-width: 1023px) {
        .latest_news .center .button {
          margin-top: 30px; } }
  .latest_news.overview {
    background-image: none;
    padding: 0;
    margin: 0; }
    .latest_news.overview .box {
      background-color: #ebebeb; }
  .latest_news .slick-dots {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -20px; }
    .latest_news .slick-dots li {
      display: inline-block;
      background: transparent;
      border: 2px solid #FFFFFF;
      overflow: hidden;
      text-indent: -999px;
      border-radius: 100%;
      width: 15px;
      height: 15px;
      margin: 0 8px; }
      .latest_news .slick-dots li.slick-active {
        background-color: #FFFFFF; }
      .latest_news .slick-dots li:hover {
        cursor: pointer;
        background-color: rgba(255, 255, 255, 0.2); }

.box.branche {
  padding-top: 180px; }
  @media all and (max-width: 1279px) {
    .box.branche a.more {
      left: 31px !important; } }
  .box.branche .preview_image {
    height: 158px;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
    display: block;
    font-size: 14px;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    line-height: 1.4; }
    @media all and (max-width: 1023px) {
      .box.branche .preview_image {
        font-size: 16px; } }

.mitarbeiter {
  min-height: 480px;
  overflow: hidden;
  border-bottom: 1px solid #cfcfcf; }
  .mitarbeiter .box_links {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    padding: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    line-height: 1.15;
    color: #FFFFFF;
    position: relative;
    min-height: 460px; }
    @media all and (min-width: 1415px) and (max-width: 1300px) {
      .mitarbeiter .box_links {
        background-position: center center; } }
    @media all and (max-width: 1023px) {
      .mitarbeiter .box_links {
        background-position: center center; } }
    .mitarbeiter .box_links .orientation_downer {
      position: absolute;
      left: 20px;
      right: 20px;
      bottom: 20px; }
    .mitarbeiter .box_links .orientation_upper {
      position: absolute;
      left: 20px;
      right: 20px;
      top: 54px; }
    .mitarbeiter .box_links .aufgabe {
      margin-bottom: 20px; }
    .mitarbeiter .box_links .forename, .mitarbeiter .box_links .name, .mitarbeiter .box_links .title {
      display: block;
      font-size: 18px; }
      @media all and (min-width: 767px) {
        .mitarbeiter .box_links .forename, .mitarbeiter .box_links .name, .mitarbeiter .box_links .title {
          font-size: 30px; } }
      @media all and (max-width: 1023px) {
        .mitarbeiter .box_links .forename, .mitarbeiter .box_links .name, .mitarbeiter .box_links .title {
          font-size: 30px; } }
  @media all and (max-width: 1023px) and (min-width: 767px) {
    .mitarbeiter .box_links .forename, .mitarbeiter .box_links .name, .mitarbeiter .box_links .title {
      font-size: 32px; } }
      @media all and (max-width: 500px) {
        .mitarbeiter .box_links .forename, .mitarbeiter .box_links .name, .mitarbeiter .box_links .title {
          font-size: 25px;
          max-width: 170px; } }
    .mitarbeiter .box_links .title {
      margin-top: 44px;
      font-size: 16px !important;
      font-weight: 200; }
      @media all and (max-width: 1023px) {
        .mitarbeiter .box_links .title {
          font-size: 18px; } }
  @media all and (max-width: 1023px) and (min-width: 767px) {
    .mitarbeiter .box_links .title {
      font-size: 30px; } }
      @media all and (max-width: 500px) {
        .mitarbeiter .box_links .title {
          font-size: 18px; } }
    .mitarbeiter .box_links .forename, .mitarbeiter .box_links .name {
      display: block;
      font-size: 30px; }
      @media all and (min-width: 767px) {
        .mitarbeiter .box_links .forename, .mitarbeiter .box_links .name {
          font-size: 32px; } }
      @media all and (max-width: 500px) {
        .mitarbeiter .box_links .forename, .mitarbeiter .box_links .name {
          font-size: 25px; } }
    .mitarbeiter .box_links .jobsbez {
      font-family: 'Nunito', sans-serif;
      font-weight: 300;
      line-height: 1.4;
      margin-top: 12px;
      margin-bottom: 44px;
      max-width: 150px; }
    .mitarbeiter .box_links .contact-details {
      margin-left: -1px;
      color: #000000; }
      @media all and (max-width: 1023px) {
        .mitarbeiter .box_links .contact-details {
          padding: 0; } }
      .mitarbeiter .box_links .contact-details a {
        display: block;
        background-color: rgba(255, 255, 255, 0.8);
        color: #000000;
        padding: 12px;
        margin: 5px;
        border-radius: 2px; }
        .mitarbeiter .box_links .contact-details a:first-child {
          margin-left: 0; }
        .mitarbeiter .box_links .contact-details a.linkedin {
          background-image: url(../../img/linkedin.png);
          background-repeat: no-repeat;
          background-size: 80%;
          background-position: center center; }
        .mitarbeiter .box_links .contact-details a.xing {
          background-image: url(../../img/xing.png);
          background-repeat: no-repeat;
          background-size: 80%;
          background-position: center center; }
        .mitarbeiter .box_links .contact-details a.email {
          margin: 5px 0;
          padding-left: 54px;
          background-image: url(../../img/email.png);
          background-size: auto 20px;
          background-position: 15px center;
          background-repeat: no-repeat; }
          @media all and (max-width: 1300px) {
            .mitarbeiter .box_links .contact-details a.email span {
              display: none; }
            .mitarbeiter .box_links .contact-details a.email:after {
              content: 'E-Mail'; } }
        .mitarbeiter .box_links .contact-details a.tel {
          padding-left: 54px;
          background-image: url(../../img/phone.png);
          background-size: auto 25px;
          background-position: 20px center;
          background-repeat: no-repeat;
          margin-right: 0; }
        .mitarbeiter .box_links .contact-details a:hover {
          background-color: #FFFFFF;
          text-decoration: none; }
    @media all and (min-width: 1279px) {
      .mitarbeiter .box_links.ceo {
        max-width: 32.7%;
        border-bottom: none; } }
  .mitarbeiter.ceo {
    border-bottom: none; }
  .mitarbeiter .box_rechts {
    border: 1px solid #cfcfcf;
    padding-bottom: 20px;
    min-height: 100%;
    position: relative; }
    @media all and (max-width: 1279px) {
      .mitarbeiter .box_rechts {
        padding: 0 30px 20px 30px; } }
    .mitarbeiter .box_rechts .grid, .mitarbeiter .box_rechts .box_inner {
      height: 100%; }
      .mitarbeiter .box_rechts .grid > div, .mitarbeiter .box_rechts .box_inner > div {
        padding-left: 30px;
        padding-right: 30px; }
        @media all and (max-width: 1023px) {
          .mitarbeiter .box_rechts .grid > div, .mitarbeiter .box_rechts .box_inner > div {
            padding-left: 0;
            padding-right: 0;
            padding-top: 20px; } }
      .mitarbeiter .box_rechts .grid .lebenslauf, .mitarbeiter .box_rechts .box_inner .lebenslauf {
        line-height: 1.6em !important;
        padding-right: 12px;
        margin-bottom: 30px; }
        .mitarbeiter .box_rechts .grid .lebenslauf *, .mitarbeiter .box_rechts .box_inner .lebenslauf * {
          line-height: 1.6em !important; }
        .mitarbeiter .box_rechts .grid .lebenslauf strong, .mitarbeiter .box_rechts .box_inner .lebenslauf strong {
          line-height: 1.6em !important;
          margin-bottom: 5px;
          display: block; }
        .mitarbeiter .box_rechts .grid .lebenslauf ul, .mitarbeiter .box_rechts .box_inner .lebenslauf ul {
          list-style-position: outside;
          position: relative; }
          .mitarbeiter .box_rechts .grid .lebenslauf ul li, .mitarbeiter .box_rechts .box_inner .lebenslauf ul li {
            padding-left: 15px;
            line-height: 1.6em !important;
            display: block;
            position: relative; }
            .mitarbeiter .box_rechts .grid .lebenslauf ul li:before, .mitarbeiter .box_rechts .box_inner .lebenslauf ul li:before {
              content: '-';
              position: absolute;
              left: 0;
              display: block; }
      .mitarbeiter .box_rechts .grid .headline h2, .mitarbeiter .box_rechts .grid .headline h3, .mitarbeiter .box_rechts .box_inner .headline h2, .mitarbeiter .box_rechts .box_inner .headline h3 {
        font-size: 18px; }
        @media all and (min-width: 767px) {
          .mitarbeiter .box_rechts .grid .headline h2, .mitarbeiter .box_rechts .grid .headline h3, .mitarbeiter .box_rechts .box_inner .headline h2, .mitarbeiter .box_rechts .box_inner .headline h3 {
            font-size: 30px; } }
      .mitarbeiter .box_rechts .grid .headline:before, .mitarbeiter .box_rechts .box_inner .headline:before {
        display: none; }
      .mitarbeiter .box_rechts .grid .content, .mitarbeiter .box_rechts .box_inner .content {
        line-height: 1.7em !important; }
        .mitarbeiter .box_rechts .grid .content p, .mitarbeiter .box_rechts .box_inner .content p {
          line-height: 1.7em !important; }
          @media all and (max-width: 1279px) {
            .mitarbeiter .box_rechts .grid .content p, .mitarbeiter .box_rechts .box_inner .content p {
              padding: 0; } }
        .mitarbeiter .box_rechts .grid .content ul, .mitarbeiter .box_rechts .box_inner .content ul {
          list-style-position: outside;
          position: relative; }
          .mitarbeiter .box_rechts .grid .content ul li, .mitarbeiter .box_rechts .box_inner .content ul li {
            padding-left: 15px;
            line-height: 1.7em !important;
            display: block;
            position: relative; }
            .mitarbeiter .box_rechts .grid .content ul li:before, .mitarbeiter .box_rechts .box_inner .content ul li:before {
              content: '-';
              position: absolute;
              left: 0;
              line-height: 1.7em;
              display: block; }
      .mitarbeiter .box_rechts .grid ul.details li, .mitarbeiter .box_rechts .grid ul.downloads li, .mitarbeiter .box_rechts .box_inner ul.details li, .mitarbeiter .box_rechts .box_inner ul.downloads li {
        font-size: 16px;
        margin-bottom: 12px;
        display: block;
        line-height: 1.6em !important; }
        @media all and (min-width: 767px) {
          .mitarbeiter .box_rechts .grid ul.details li, .mitarbeiter .box_rechts .grid ul.downloads li, .mitarbeiter .box_rechts .box_inner ul.details li, .mitarbeiter .box_rechts .box_inner ul.downloads li {
            font-size: 20px; } }
        .mitarbeiter .box_rechts .grid ul.details li span, .mitarbeiter .box_rechts .grid ul.downloads li span, .mitarbeiter .box_rechts .box_inner ul.details li span, .mitarbeiter .box_rechts .box_inner ul.downloads li span {
          font-size: 10px;
          display: block; }
          @media all and (min-width: 767px) {
            .mitarbeiter .box_rechts .grid ul.details li span, .mitarbeiter .box_rechts .grid ul.downloads li span, .mitarbeiter .box_rechts .box_inner ul.details li span, .mitarbeiter .box_rechts .box_inner ul.downloads li span {
              font-size: 15px; } }
      .mitarbeiter .box_rechts .grid ul.downloads, .mitarbeiter .box_rechts .box_inner ul.downloads {
        padding-left: 0; }
        .mitarbeiter .box_rechts .grid ul.downloads li, .mitarbeiter .box_rechts .box_inner ul.downloads li {
          margin-bottom: 5px; }
          @media all and (max-width: 1023px) {
            .mitarbeiter .box_rechts .grid ul.downloads li, .mitarbeiter .box_rechts .box_inner ul.downloads li {
              margin-bottom: 0;
              margin-top: 5px; }
              .mitarbeiter .box_rechts .grid ul.downloads li:first-of-type, .mitarbeiter .box_rechts .box_inner ul.downloads li:first-of-type {
                margin-top: 10px; } }
          .mitarbeiter .box_rechts .grid ul.downloads li a, .mitarbeiter .box_rechts .box_inner ul.downloads li a {
            display: inline-block;
            padding: 12px;
            background: url(../../img/pdf.svg);
            background-position: left center;
            background-repeat: no-repeat;
            background-size: 15px auto;
            font-size: 16px;
            color: #8d8d8d;
            padding-left: 25px; }
            .mitarbeiter .box_rechts .grid ul.downloads li a:hover, .mitarbeiter .box_rechts .box_inner ul.downloads li a:hover {
              text-decoration: none;
              color: #005d9c;
              background-image: url(../../img/pdf_active.svg); }
  .mitarbeiter.ceo {
    margin-right: -8px !important; }
    @media all and (max-width: 1023px) {
      .mitarbeiter.ceo {
        padding: 0; } }
    @media all and (max-width: 1280px) {
      .mitarbeiter.ceo {
        margin-right: 0 !important; } }
    .mitarbeiter.ceo ul.downloads {
      margin-top: 20px !important;
      position: absolute;
      bottom: 19px; }
      @media all and (min-width: 1023px) {
        .mitarbeiter.ceo ul.downloads {
          margin-top: 44px; } }
      .mitarbeiter.ceo ul.downloads li {
        display: inline-block !important;
        margin-right: 12px !important; }

.headerImage {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 12px;
  padding-top: 20%;
  margin-top: -30px;
  overflow: hidden; }
  @media all and (max-width: 1023px) {
    .headerImage {
      padding-top: 35%; } }

.headerSlider {
  position: relative; }
  .headerSlider .slider {
    height: 700px; }
    @media all and (max-width: 1279px) {
      .headerSlider .slider {
        height: 500px; } }
    @media all and (max-width: 1023px) {
      .headerSlider .slider {
        height: 400px; } }
    .headerSlider .slider .bgimage {
      height: 700px;
      width: 100%;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat; }
      @media all and (max-width: 1279px) {
        .headerSlider .slider .bgimage {
          height: 500px; } }
      @media all and (max-width: 1023px) {
        .headerSlider .slider .bgimage {
          height: 400px; } }
  .headerSlider .slogan {
    font-size: 30px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    line-height: 1.15;
    text-align: center;
    display: inline-block;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    position: absolute;
    display: block;
    font-weight: 200;
    max-width: 1414px;
    width: 80%; }
    @media all and (min-width: 767px) {
      .headerSlider .slogan {
        font-size: 32px; } }
    .headerSlider .slogan strong {
      font-weight: 600; }

.headline {
  padding: 54px 0 44px 0;
  display: block;
  position: relative; }
  @media all and (max-width: 1023px) {
    .headline {
      padding: 12px 0; } }
  .headline:before {
    content: '';
    width: 100px;
    height: 10px;
    background-color: #005d9c;
    position: absolute;
    left: -125px;
    top: 62px;
    display: block; }
    @media all and (max-width: 1023px) {
      .headline:before {
        top: 20px; } }
  .headline h2 {
    display: block;
    font-size: 30px;
    font-weight: 200; }
    @media all and (min-width: 767px) {
      .headline h2 {
        font-size: 32px; } }
  .headline h3 {
    font-size: 30px;
    font-weight: 600; }
    @media all and (min-width: 767px) {
      .headline h3 {
        font-size: 32px; } }

.headline_small {
  padding: 30px 0 34px 0;
  display: block;
  position: relative; }
  @media all and (max-width: 1023px) {
    .headline_small {
      padding: 8px 0; } }
  .headline_small h2 {
    display: block;
    font-size: 18px;
    font-weight: 300; }
    @media all and (min-width: 767px) {
      .headline_small h2 {
        font-size: 30px; } }
  .headline_small h3 {
    font-size: 18px;
    font-weight: 600; }
    @media all and (min-width: 767px) {
      .headline_small h3 {
        font-size: 30px; } }

.box.job .title {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.15;
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0; }
  @media all and (min-width: 767px) {
    .box.job .title {
      font-size: 30px; } }

.box.job p {
  margin-bottom: 79px; }

.box.job a {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 7px;
  display: block;
  padding: 17px 0;
  text-align: center;
  background-color: #005d9c;
  color: #FFFFFF;
  text-decoration: none;
  line-height: 1.5em !important;
  position: absolute;
  bottom: 20px;
  right: 35px;
  left: 35px;
  transition: all, 0.3s, ease-in; }
  .box.job a:hover {
    opacity: 0.9; }

.logoSlider {
  position: relative;
  margin: 20px auto; }
  @media all and (max-width: 1023px) {
    .logoSlider {
      margin: -20px auto 20px auto; } }
  .logoSlider ul .logo {
    display: block;
    width: 20%;
    float: left;
    background-size: 80% auto;
    background-position: center center;
    height: 150px;
    background-repeat: no-repeat; }
  .logoSlider .arrows .slick-arrow, .logoSlider .slick-slider .slick-arrow {
    cursor: pointer;
    opacity: .5;
    transition: opacity 250ms linear;
    z-index: 100;
    position: absolute;
    left: 10px;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 100px;
    background: transparent;
    background-image: url(../../img/arrow-left.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px; }
    @media all and (max-width: 1023px) {
      .logoSlider .arrows .slick-arrow, .logoSlider .slick-slider .slick-arrow {
        background-size: 25px; } }
  .logoSlider .slick-slider {
    padding: 0 40px; }
  .logoSlider .arrows .slick-arrow:last-child, .logoSlider .slick-slider .slick-arrow:last-child {
    left: auto;
    right: 10px;
    background-image: url(../../img/arrow-right.svg); }
  .logoSlider .arrows .slick-arrow:hover, .logoSlider .slick-slider .slick-arrow:hover {
    opacity: .9; }

.box.referenz,
.card.referenz {
  background-color: #FFFFFF;
  border: 1px solid #cfcfcf; }
  .box.referenz .meta,
  .card.referenz .meta {
    margin-bottom: 2px; }
  .box.referenz .icon,
  .card.referenz .icon {
    max-width: 200px;
    margin-bottom: 44px; }
    .box.referenz .icon img,
    .card.referenz .icon img {
      width: 100%; }
  .box.referenz p,
  .card.referenz p {
    line-height: 1.5 !important; }
  .box.referenz a,
  .card.referenz a {
    display: block;
    color: #005d9c;
    margin-top: 20px;
    font-weight: 600; }

.form-select {
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: .375rem 2.25rem .375rem .75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background-color: #005d9c;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  border: none;
  border-radius: 0;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  /* Webkit */
  -moz-appearance: none;
  /* FF */
  -ms-appearance: none;
  /* Edge */
  appearance: none;
  /* Future */ }
  @media all and (max-width: 767px) {
    .form-select {
      margin: 0 0 0.5rem;
      width: 100%;
      max-width: none; } }
  .form-select::-ms-expand {
    display: none; }

.filters {
  margin-bottom: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media all and (max-width: 767px) {
    .filters {
      margin-bottom: 1rem; } }

.filter {
  width: auto;
  max-width: 100%;
  display: inline-block;
  margin-right: 1rem; }
  @media all and (max-width: 767px) {
    .filter {
      margin-right: 0;
      width: 100%; } }
  .filter label {
    display: block;
    margin-bottom: 0.25rem; }

@media all and (max-width: 767px) {
  .filter-sub {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    padding-right: 0.5rem; }
    .filter-sub:last-of-type {
      padding-right: 0;
      padding-left: 0.5rem; } }

.filters-title {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 1rem; }
  @media all and (max-width: 767px) {
    .filters-title {
      margin-bottom: 0.75rem; } }

.element-item {
  width: 100%; }

.grid.references {
  margin-left: -0.5rem;
  margin-right: -0.5rem; }

input.references-search {
  border: 1px solid #005d9c;
  padding: 0.25rem 0.75rem;
  height: 31px;
  min-width: 15rem;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-right: 1rem;
  margin-bottom: 1rem; }
  @media all and (max-width: 767px) {
    input.references-search {
      width: 100%;
      margin-right: 0;
      margin-bottom: 0.75rem; } }

.element-item {
  padding: 0 0.5rem 1rem !important; }

.w-100 {
  width: 100%; }

.w-md-100 {
  width: 100%; }
  @media all and (max-width: 767px) {
    .w-md-100 {
      display: none; } }

.box,
.card {
  display: block;
  position: relative;
  background-color: #ebebeb;
  padding: 35px 38px;
  height: 100%; }
  @media all and (max-width: 1279px) {
    .box,
    .card {
      padding: 30px 33px; } }
  .box .meta,
  .card .meta {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    line-height: 1.15;
    font-size: 16px;
    margin-bottom: 54px; }
    @media all and (min-width: 767px) {
      .box .meta,
      .card .meta {
        font-size: 20px; } }
    @media all and (min-width: 1023px) {
      .box .meta,
      .card .meta {
        font-size: 10px; } }
  @media all and (min-width: 1023px) and (min-width: 767px) {
    .box .meta,
    .card .meta {
      font-size: 15px; } }
    .box .meta .cat,
    .card .meta .cat {
      margin-bottom: 7px;
      font-weight: 600; }
  .box .icon,
  .card .icon {
    max-width: 160px; }
    .box .icon img,
    .card .icon img {
      width: 100%; }
    @media all and (max-width: 1023px) {
      .box .icon,
      .card .icon {
        max-width: 100px; } }
  .box h3,
  .card h3 {
    font-size: 26px;
    margin: 12px 0;
    font-weight: 600; }
    @media all and (max-width: 767px) {
      .box h3,
      .card h3 {
        font-size: 22px; } }
  @media all and (max-width: 767px) and (min-width: 767px) {
    .box h3,
    .card h3 {
      font-size: 30px; } }
  .box p,
  .card p {
    font-size: 18px;
    line-height: 1.75 !important;
    margin-bottom: 44px; }
  .box a.more,
  .card a.more {
    display: block;
    color: #005d9c;
    margin-top: 20px;
    font-weight: 600;
    position: absolute;
    bottom: 30px;
    left: 39px; }
    @media all and (max-width: 1280px) {
      .box a.more,
      .card a.more {
        left: 20px; } }
  @media all and (max-width: 1280px) {
    .box.referenz a.more,
    .card.referenz a.more {
      left: 32px !important; } }
  .box.service,
  .card.service {
    padding: 12px 38px 35px 38px; }
    @media all and (max-width: 1279px) {
      .box.service,
      .card.service {
        padding: 12px 30px 35px 30px; } }
    .box.service .icon,
    .card.service .icon {
      margin-bottom: 30px; }
    @media all and (max-width: 1280px) {
      .box.service a.more,
      .card.service a.more {
        left: 30px !important; } }

.sidebarBox {
  background-color: #ebebeb;
  color: #000000;
  padding: 40px;
  width: 100%; }
  @media all and (min-width: 1023px) {
    .sidebarBox {
      max-width: 400px;
      float: right; } }
  .sidebarBox.blau {
    background-color: #005d9c;
    color: #FFFFFF !important; }
  .sidebarBox.gruen {
    background-color: #398e42;
    color: #FFFFFF !important; }
  .sidebarBox.copytext {
    padding-right: 44px; }
    .sidebarBox.copytext p, .sidebarBox.copytext h1, .sidebarBox.copytext h2, .sidebarBox.copytext h3, .sidebarBox.copytext h4, .sidebarBox.copytext h5 {
      padding-left: 0;
      margin-left: 0;
      font-size: 16px; }
      @media all and (min-width: 767px) {
        .sidebarBox.copytext p, .sidebarBox.copytext h1, .sidebarBox.copytext h2, .sidebarBox.copytext h3, .sidebarBox.copytext h4, .sidebarBox.copytext h5 {
          font-size: 20px; } }
      @media all and (min-width: 1023px) {
        .sidebarBox.copytext p, .sidebarBox.copytext h1, .sidebarBox.copytext h2, .sidebarBox.copytext h3, .sidebarBox.copytext h4, .sidebarBox.copytext h5 {
          font-size: 10px; } }
  @media all and (min-width: 1023px) and (min-width: 767px) {
    .sidebarBox.copytext p, .sidebarBox.copytext h1, .sidebarBox.copytext h2, .sidebarBox.copytext h3, .sidebarBox.copytext h4, .sidebarBox.copytext h5 {
      font-size: 15px; } }
    .sidebarBox.copytext h2 {
      font-family: 'Nunito', sans-serif;
      font-weight: 400;
      line-height: 1.15;
      font-size: 40px; }
      @media all and (min-width: 767px) {
        .sidebarBox.copytext h2 {
          font-size: 60px; } }
    .sidebarBox.copytext h3 {
      font-family: 'Nunito', sans-serif;
      font-weight: 400;
      line-height: 1.15;
      font-size: 30px; }
      @media all and (min-width: 767px) {
        .sidebarBox.copytext h3 {
          font-size: 32px; } }
    .sidebarBox.copytext h4 {
      font-family: 'Nunito', sans-serif;
      font-weight: 400;
      line-height: 1.15;
      font-size: 16px; }
      @media all and (min-width: 767px) {
        .sidebarBox.copytext h4 {
          font-size: 20px; } }
    .sidebarBox.copytext ul {
      margin-left: 0; }
      .sidebarBox.copytext ul li {
        font-size: 16px;
        line-height: 1.4em !important;
        margin-bottom: 12px; }
        @media all and (min-width: 767px) {
          .sidebarBox.copytext ul li {
            font-size: 20px; } }
        @media all and (min-width: 1023px) {
          .sidebarBox.copytext ul li {
            font-size: 10px; } }
  @media all and (min-width: 1023px) and (min-width: 767px) {
    .sidebarBox.copytext ul li {
      font-size: 15px; } }

.sidebar_contact {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  padding: 30px;
  width: 100%;
  min-height: 370px;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.15;
  position: relative;
  color: #FFFFFF; }
  @media all and (min-width: 1023px) {
    .sidebar_contact {
      max-width: 400px;
      float: right; } }
  @media all and (max-width: 1023px) {
    .sidebar_contact {
      background-position: center center; } }
  .sidebar_contact .orientation_downer {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px; }
  .sidebar_contact .orientation_upper {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 54px; }
  .sidebar_contact .title {
    margin-top: 44px;
    font-size: 16px !important; }
    @media all and (max-width: 1023px) {
      .sidebar_contact .title {
        font-size: 18px; } }
  @media all and (max-width: 1023px) and (min-width: 767px) {
    .sidebar_contact .title {
      font-size: 30px; } }
    @media all and (max-width: 500px) {
      .sidebar_contact .title {
        font-size: 18px; } }
  .sidebar_contact .forename, .sidebar_contact .name {
    display: block;
    font-size: 30px; }
    @media all and (min-width: 767px) {
      .sidebar_contact .forename, .sidebar_contact .name {
        font-size: 32px; } }
    @media all and (max-width: 500px) {
      .sidebar_contact .forename, .sidebar_contact .name {
        font-size: 25px;
        max-width: 170px; } }
  .sidebar_contact .jobsbez {
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 12px;
    margin-bottom: 44px;
    max-width: 150px; }
  .sidebar_contact .contact-details {
    margin-left: -1px;
    color: #000000; }
    .sidebar_contact .contact-details a {
      display: block;
      background-color: rgba(255, 255, 255, 0.8);
      color: #000000;
      padding: 12px;
      margin: 5px;
      border-radius: 2px; }
      .sidebar_contact .contact-details a:first-child {
        margin-left: 0; }
      .sidebar_contact .contact-details a.linkedin {
        background-image: url(../../img/linkedin.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: center center;
        margin-left: 5px; }
      .sidebar_contact .contact-details a.xing {
        background-image: url(../../img/xing.png);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: center center; }
      .sidebar_contact .contact-details a.email {
        margin: 5px 0;
        padding-left: 54px;
        background-image: url(../../img/email.png);
        background-size: auto 20px;
        background-position: 15px center;
        background-repeat: no-repeat; }
        @media all and (max-width: 1300px) {
          .sidebar_contact .contact-details a.email span {
            display: none; }
          .sidebar_contact .contact-details a.email:after {
            content: 'E-Mail'; } }
      .sidebar_contact .contact-details a.tel {
        padding-left: 54px;
        background-image: url(../../img/phone.png);
        background-size: auto 25px;
        background-position: 20px center;
        background-repeat: no-repeat;
        margin-right: 0; }
      .sidebar_contact .contact-details a:hover {
        background-color: #FFFFFF;
        text-decoration: none; }

.copytext {
  padding-right: 74px;
  margin-bottom: 30px; }
  @media all and (max-width: 1279px) {
    .copytext {
      padding-right: inherit; } }
  .copytext p, .copytext ul, .copytext li, .copytext ol, .copytext a {
    font-size: 18px; }
  .copytext p {
    padding-left: 20px;
    line-height: 1.75em !important; }
    @media all and (max-width: 1023px) {
      .copytext p {
        padding-left: 0; } }
  .copytext img {
    margin-top: 20px;
    margin-left: -20px;
    border: 2px solid #cfcfcf; }
    .copytext img.noBorder {
      border: none; }
  .copytext h1, .copytext h2, .copytext h3, .copytext h4, .copytext h5 {
    margin-left: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    line-height: 1.4;
    font-weight: 600; }
  .copytext ul, .copytext ol {
    margin-left: 12px; }
    .copytext ul li, .copytext ol li {
      margin-bottom: 6px; }

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