/*!
Theme Name: abw-kreuzberg
Theme URI: http://abw-kreuzberg.de
Author: Claudius Herwig
Author URI: http://claudiusherwig.de/
Description: The theme for the abw-kreuzberg
Version: 0.1
Text Domain: abw-kreuzberg
*/
/* Import all files
-------------------------------------
*/
/* Variables
----------------------------------------------
*/
/* source-sans-pro-300 - latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url('fonts/source-sans-pro-v13-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('fonts/source-sans-pro-v13-latin-300.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* source-sans-pro-regular - latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url('fonts/source-sans-pro-v13-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('fonts/source-sans-pro-v13-latin-regular.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* source-sans-pro-italic - latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 400;
  src: local('Source Sans Pro Italic'), local('SourceSansPro-Italic'), url('fonts/source-sans-pro-v13-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('fonts/source-sans-pro-v13-latin-italic.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Base Styles
--------------------------------------
*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-size: calc(14px + 0.2vw);
}
body {
  margin: 0;
  padding: 3rem 0 0 0;
  background: #ffffff;
  color: #000000;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.375;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 480px) {
  body {
    padding: 6rem 0 0 0;
  }
}
@media screen and (min-width: 1024px) {
  body {
    padding: 9rem 0 0 0;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  padding: 0;
  color: #28a22d;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.1;
  font-weight: 300;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.2rem;
}
h4 {
  font-size: 1rem;
}
h5 {
  font-size: 0.9rem;
}
h6 {
  font-size: 0.8rem;
}
p {
  margin-top: 22px;
  margin-bottom: 22px;
}
a {
  color: #28a22d;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  text-decoration: none;
}
a:hover {
  color: #0a270b;
}
.small,
small {
  font-size: 0.8rem;
}
::-moz-selection {
  background: rgba(128, 255, 0, 0.6);
  color: #000000;
  text-shadow: none;
}
::selection {
  background: rgba(128, 255, 0, 0.6);
  color: #000000;
  text-shadow: none;
}
/*! ==========================================================================
    GRIDLEX
    Just a Flexbox Grid System
========================================================================== */
[class*="grid"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0 -0.5rem;
}
.col,
[class*="col-"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0 0.5rem 1rem;
}
.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
}
.grid.col,
.grid[class*="col-"] {
  margin: 0;
  padding: 0;
}
/************************
    HELPERS SUFFIXES
*************************/
[class*="grid-"][class*="-noGutter"] {
  margin: 0;
}
[class*="grid-"][class*="-noGutter"] > [class*="col"] {
  padding: 0;
}
[class*="grid-"][class*="-noWrap"] {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
[class*="grid-"][class*="-center"] {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
[class*="grid-"][class*="-right"] {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: auto;
}
[class*="grid-"][class*="-top"] {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
[class*="grid-"][class*="-middle"] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
[class*="grid-"][class*="-bottom"] {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
[class*="grid-"][class*="-reverse"] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
[class*="grid-"][class*="-column"] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -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"] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
[class*="grid-"][class*="-spaceBetween"] {
  -webkit-box-pack: justify;
      -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"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
[class*="grid-"][class*="-equalHeight"] > [class*="col"] > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
[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"] {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
[class*="col-"][class*="-last"] {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
/************************
    GRID BY NUMBER
*************************/
[class*="grid-1"] > .col,
[class*="grid-1"] > [class*="col-"] {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}
[class*="grid-2"] > .col,
[class*="grid-2"] > [class*="col-"] {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}
[class*="grid-3"] > .col,
[class*="grid-3"] > [class*="col-"] {
  -ms-flex-preferred-size: 33.33333333%;
      flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}
[class*="grid-4"] > .col,
[class*="grid-4"] > [class*="col-"] {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
}
[class*="grid-5"] > .col,
[class*="grid-5"] > [class*="col-"] {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  max-width: 20%;
}
[class*="grid-6"] > .col,
[class*="grid-6"] > [class*="col-"] {
  -ms-flex-preferred-size: 16.66666667%;
      flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}
[class*="grid-7"] > .col,
[class*="grid-7"] > [class*="col-"] {
  -ms-flex-preferred-size: 14.28571429%;
      flex-basis: 14.28571429%;
  max-width: 14.28571429%;
}
[class*="grid-8"] > .col,
[class*="grid-8"] > [class*="col-"] {
  -ms-flex-preferred-size: 12.5%;
      flex-basis: 12.5%;
  max-width: 12.5%;
}
[class*="grid-9"] > .col,
[class*="grid-9"] > [class*="col-"] {
  -ms-flex-preferred-size: 11.11111111%;
      flex-basis: 11.11111111%;
  max-width: 11.11111111%;
}
[class*="grid-10"] > .col,
[class*="grid-10"] > [class*="col-"] {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  max-width: 10%;
}
[class*="grid-11"] > .col,
[class*="grid-10"] > [class*="col-"] {
  -ms-flex-preferred-size: 9.09090909%;
      flex-basis: 9.09090909%;
  max-width: 9.09090909%;
}
[class*="grid-12"] > .col,
[class*="grid-11"] > [class*="col-"] {
  -ms-flex-preferred-size: 8.33333333%;
      flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}
@media screen and (max-width: 1400px) {
  [class*="_lg-1"] > .col,
  [class*="_lg-1"] > [class*="col-"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  [class*="_lg-2"] > .col,
  [class*="_lg-2"] > [class*="col-"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  [class*="_lg-3"] > .col,
  [class*="_lg-3"] > [class*="col-"] {
    -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*="_lg-4"] > .col,
  [class*="_lg-4"] > [class*="col-"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  [class*="_lg-5"] > .col,
  [class*="_lg-5"] > [class*="col-"] {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%;
  }
  [class*="_lg-6"] > .col,
  [class*="_lg-6"] > [class*="col-"] {
    -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*="_lg-7"] > .col,
  [class*="_lg-7"] > [class*="col-"] {
    -ms-flex-preferred-size: 14.28571429%;
        flex-basis: 14.28571429%;
    max-width: 14.28571429%;
  }
  [class*="_lg-8"] > .col,
  [class*="_lg-8"] > [class*="col-"] {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*="_lg-9"] > .col,
  [class*="_lg-9"] > [class*="col-"] {
    -ms-flex-preferred-size: 11.11111111%;
        flex-basis: 11.11111111%;
    max-width: 11.11111111%;
  }
  [class*="_lg-10"] > .col,
  [class*="_lg-10"] > [class*="col-"] {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    max-width: 10%;
  }
  [class*="_lg-11"] > .col,
  [class*="_lg-10"] > [class*="col-"] {
    -ms-flex-preferred-size: 9.09090909%;
        flex-basis: 9.09090909%;
    max-width: 9.09090909%;
  }
  [class*="_lg-12"] > .col,
  [class*="_lg-11"] > [class*="col-"] {
    -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
}
@media screen and (max-width: 1024px) {
  [class*="_md-1"] > .col,
  [class*="_md-1"] > [class*="col-"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  [class*="_md-2"] > .col,
  [class*="_md-2"] > [class*="col-"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  [class*="_md-3"] > .col,
  [class*="_md-3"] > [class*="col-"] {
    -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*="_md-4"] > .col,
  [class*="_md-4"] > [class*="col-"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  [class*="_md-5"] > .col,
  [class*="_md-5"] > [class*="col-"] {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%;
  }
  [class*="_md-6"] > .col,
  [class*="_md-6"] > [class*="col-"] {
    -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*="_md-7"] > .col,
  [class*="_md-7"] > [class*="col-"] {
    -ms-flex-preferred-size: 14.28571429%;
        flex-basis: 14.28571429%;
    max-width: 14.28571429%;
  }
  [class*="_md-8"] > .col,
  [class*="_md-8"] > [class*="col-"] {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*="_md-9"] > .col,
  [class*="_md-9"] > [class*="col-"] {
    -ms-flex-preferred-size: 11.11111111%;
        flex-basis: 11.11111111%;
    max-width: 11.11111111%;
  }
  [class*="_md-10"] > .col,
  [class*="_md-10"] > [class*="col-"] {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    max-width: 10%;
  }
  [class*="_md-11"] > .col,
  [class*="_md-10"] > [class*="col-"] {
    -ms-flex-preferred-size: 9.09090909%;
        flex-basis: 9.09090909%;
    max-width: 9.09090909%;
  }
  [class*="_md-12"] > .col,
  [class*="_md-11"] > [class*="col-"] {
    -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
}
@media screen and (max-width:  768px) {
  [class*="_sm-1"] > .col,
  [class*="_sm-1"] > [class*="col-"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  [class*="_sm-2"] > .col,
  [class*="_sm-2"] > [class*="col-"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  [class*="_sm-3"] > .col,
  [class*="_sm-3"] > [class*="col-"] {
    -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*="_sm-4"] > .col,
  [class*="_sm-4"] > [class*="col-"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  [class*="_sm-5"] > .col,
  [class*="_sm-5"] > [class*="col-"] {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%;
  }
  [class*="_sm-6"] > .col,
  [class*="_sm-6"] > [class*="col-"] {
    -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*="_sm-7"] > .col,
  [class*="_sm-7"] > [class*="col-"] {
    -ms-flex-preferred-size: 14.28571429%;
        flex-basis: 14.28571429%;
    max-width: 14.28571429%;
  }
  [class*="_sm-8"] > .col,
  [class*="_sm-8"] > [class*="col-"] {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*="_sm-9"] > .col,
  [class*="_sm-9"] > [class*="col-"] {
    -ms-flex-preferred-size: 11.11111111%;
        flex-basis: 11.11111111%;
    max-width: 11.11111111%;
  }
  [class*="_sm-10"] > .col,
  [class*="_sm-10"] > [class*="col-"] {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    max-width: 10%;
  }
  [class*="_sm-11"] > .col,
  [class*="_sm-10"] > [class*="col-"] {
    -ms-flex-preferred-size: 9.09090909%;
        flex-basis: 9.09090909%;
    max-width: 9.09090909%;
  }
  [class*="_sm-12"] > .col,
  [class*="_sm-11"] > [class*="col-"] {
    -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
}
@media screen and (max-width:  600px) {
  [class*="_xs-1"] > .col,
  [class*="_xs-1"] > [class*="col-"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  [class*="_xs-2"] > .col,
  [class*="_xs-2"] > [class*="col-"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  [class*="_xs-3"] > .col,
  [class*="_xs-3"] > [class*="col-"] {
    -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*="_xs-4"] > .col,
  [class*="_xs-4"] > [class*="col-"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  [class*="_xs-5"] > .col,
  [class*="_xs-5"] > [class*="col-"] {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%;
  }
  [class*="_xs-6"] > .col,
  [class*="_xs-6"] > [class*="col-"] {
    -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*="_xs-7"] > .col,
  [class*="_xs-7"] > [class*="col-"] {
    -ms-flex-preferred-size: 14.28571429%;
        flex-basis: 14.28571429%;
    max-width: 14.28571429%;
  }
  [class*="_xs-8"] > .col,
  [class*="_xs-8"] > [class*="col-"] {
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*="_xs-9"] > .col,
  [class*="_xs-9"] > [class*="col-"] {
    -ms-flex-preferred-size: 11.11111111%;
        flex-basis: 11.11111111%;
    max-width: 11.11111111%;
  }
  [class*="_xs-10"] > .col,
  [class*="_xs-10"] > [class*="col-"] {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    max-width: 10%;
  }
  [class*="_xs-11"] > .col,
  [class*="_xs-10"] > [class*="col-"] {
    -ms-flex-preferred-size: 9.09090909%;
        flex-basis: 9.09090909%;
    max-width: 9.09090909%;
  }
  [class*="_xs-12"] > .col,
  [class*="_xs-11"] > [class*="col-"] {
    -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
}
/************************
    COLS SIZES
*************************/
[class*='grid'] > [class*="col-1"] {
  -ms-flex-preferred-size: 8.33333333%;
      flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}
[class*='grid'] > [class*="col-2"] {
  -ms-flex-preferred-size: 16.66666667%;
      flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}
[class*='grid'] > [class*="col-3"] {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
}
[class*='grid'] > [class*="col-4"] {
  -ms-flex-preferred-size: 33.33333333%;
      flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}
[class*='grid'] > [class*="col-5"] {
  -ms-flex-preferred-size: 41.66666667%;
      flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}
[class*='grid'] > [class*="col-6"] {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}
[class*='grid'] > [class*="col-7"] {
  -ms-flex-preferred-size: 58.33333333%;
      flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}
[class*='grid'] > [class*="col-8"] {
  -ms-flex-preferred-size: 66.66666667%;
      flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}
[class*='grid'] > [class*="col-9"] {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
}
[class*='grid'] > [class*="col-10"] {
  -ms-flex-preferred-size: 83.33333333%;
      flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}
[class*='grid'] > [class*="col-11"] {
  -ms-flex-preferred-size: 91.66666667%;
      flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}
[class*='grid'] > [class*="col-12"] {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}
[class*="grid"] > [data-push-left*="off-0"] {
  margin-left: 0;
}
[class*="grid"] > [data-push-left*="off-1"] {
  margin-left: 8.33333333%;
}
[class*="grid"] > [data-push-left*="off-2"] {
  margin-left: 16.66666667%;
}
[class*="grid"] > [data-push-left*="off-3"] {
  margin-left: 25%;
}
[class*="grid"] > [data-push-left*="off-4"] {
  margin-left: 33.33333333%;
}
[class*="grid"] > [data-push-left*="off-5"] {
  margin-left: 41.66666667%;
}
[class*="grid"] > [data-push-left*="off-6"] {
  margin-left: 50%;
}
[class*="grid"] > [data-push-left*="off-6"] {
  margin-left: 50%;
}
[class*="grid"] > [data-push-left*="off-7"] {
  margin-left: 58.33333333%;
}
[class*="grid"] > [data-push-left*="off-8"] {
  margin-left: 66.66666667%;
}
[class*="grid"] > [data-push-left*="off-9"] {
  margin-left: 75%;
}
[class*="grid"] > [data-push-left*="off-10"] {
  margin-left: 83.33333333%;
}
[class*="grid"] > [data-push-left*="off-11"] {
  margin-left: 91.66666667%;
}
[class*="grid"] > [data-push-right*="off-0"] {
  margin-right: 0;
}
[class*="grid"] > [data-push-right*="off-1"] {
  margin-right: 8.33333333%;
}
[class*="grid"] > [data-push-right*="off-2"] {
  margin-right: 16.66666667%;
}
[class*="grid"] > [data-push-right*="off-3"] {
  margin-right: 25%;
}
[class*="grid"] > [data-push-right*="off-4"] {
  margin-right: 33.33333333%;
}
[class*="grid"] > [data-push-right*="off-5"] {
  margin-right: 41.66666667%;
}
[class*="grid"] > [data-push-right*="off-6"] {
  margin-right: 50%;
}
[class*="grid"] > [data-push-right*="off-6"] {
  margin-right: 50%;
}
[class*="grid"] > [data-push-right*="off-7"] {
  margin-right: 58.33333333%;
}
[class*="grid"] > [data-push-right*="off-8"] {
  margin-right: 66.66666667%;
}
[class*="grid"] > [data-push-right*="off-9"] {
  margin-right: 75%;
}
[class*="grid"] > [data-push-right*="off-10"] {
  margin-right: 83.33333333%;
}
[class*="grid"] > [data-push-right*="off-11"] {
  margin-right: 91.66666667%;
}
@media screen and (max-width: 1400px) {
  [class*='grid'] > [class*="_lg-1"] {
    -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  [class*='grid'] > [class*="_lg-2"] {
    -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*='grid'] > [class*="_lg-3"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  [class*='grid'] > [class*="_lg-4"] {
    -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*='grid'] > [class*="_lg-5"] {
    -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  [class*='grid'] > [class*="_lg-6"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  [class*='grid'] > [class*="_lg-7"] {
    -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  [class*='grid'] > [class*="_lg-8"] {
    -ms-flex-preferred-size: 66.66666667%;
        flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  [class*='grid'] > [class*="_lg-9"] {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  [class*='grid'] > [class*="_lg-10"] {
    -ms-flex-preferred-size: 83.33333333%;
        flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  [class*='grid'] > [class*="_lg-11"] {
    -ms-flex-preferred-size: 91.66666667%;
        flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  [class*='grid'] > [class*="_lg-12"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  [class*="grid"] > [data-push-left*="_lg-0"] {
    margin-left: 0;
  }
  [class*="grid"] > [data-push-left*="_lg-1"] {
    margin-left: 8.33333333%;
  }
  [class*="grid"] > [data-push-left*="_lg-2"] {
    margin-left: 16.66666667%;
  }
  [class*="grid"] > [data-push-left*="_lg-3"] {
    margin-left: 25%;
  }
  [class*="grid"] > [data-push-left*="_lg-4"] {
    margin-left: 33.33333333%;
  }
  [class*="grid"] > [data-push-left*="_lg-5"] {
    margin-left: 41.66666667%;
  }
  [class*="grid"] > [data-push-left*="_lg-6"] {
    margin-left: 50%;
  }
  [class*="grid"] > [data-push-left*="_lg-6"] {
    margin-left: 50%;
  }
  [class*="grid"] > [data-push-left*="_lg-7"] {
    margin-left: 58.33333333%;
  }
  [class*="grid"] > [data-push-left*="_lg-8"] {
    margin-left: 66.66666667%;
  }
  [class*="grid"] > [data-push-left*="_lg-9"] {
    margin-left: 75%;
  }
  [class*="grid"] > [data-push-left*="_lg-10"] {
    margin-left: 83.33333333%;
  }
  [class*="grid"] > [data-push-left*="_lg-11"] {
    margin-left: 91.66666667%;
  }
  [class*="grid"] > [data-push-right*="_lg-0"] {
    margin-right: 0;
  }
  [class*="grid"] > [data-push-right*="_lg-1"] {
    margin-right: 8.33333333%;
  }
  [class*="grid"] > [data-push-right*="_lg-2"] {
    margin-right: 16.66666667%;
  }
  [class*="grid"] > [data-push-right*="_lg-3"] {
    margin-right: 25%;
  }
  [class*="grid"] > [data-push-right*="_lg-4"] {
    margin-right: 33.33333333%;
  }
  [class*="grid"] > [data-push-right*="_lg-5"] {
    margin-right: 41.66666667%;
  }
  [class*="grid"] > [data-push-right*="_lg-6"] {
    margin-right: 50%;
  }
  [class*="grid"] > [data-push-right*="_lg-6"] {
    margin-right: 50%;
  }
  [class*="grid"] > [data-push-right*="_lg-7"] {
    margin-right: 58.33333333%;
  }
  [class*="grid"] > [data-push-right*="_lg-8"] {
    margin-right: 66.66666667%;
  }
  [class*="grid"] > [data-push-right*="_lg-9"] {
    margin-right: 75%;
  }
  [class*="grid"] > [data-push-right*="_lg-10"] {
    margin-right: 83.33333333%;
  }
  [class*="grid"] > [data-push-right*="_lg-11"] {
    margin-right: 91.66666667%;
  }
}
@media screen and (max-width: 1024px) {
  [class*='grid'] > [class*="_md-1"] {
    -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  [class*='grid'] > [class*="_md-2"] {
    -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*='grid'] > [class*="_md-3"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  [class*='grid'] > [class*="_md-4"] {
    -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*='grid'] > [class*="_md-5"] {
    -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  [class*='grid'] > [class*="_md-6"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  [class*='grid'] > [class*="_md-7"] {
    -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  [class*='grid'] > [class*="_md-8"] {
    -ms-flex-preferred-size: 66.66666667%;
        flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  [class*='grid'] > [class*="_md-9"] {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  [class*='grid'] > [class*="_md-10"] {
    -ms-flex-preferred-size: 83.33333333%;
        flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  [class*='grid'] > [class*="_md-11"] {
    -ms-flex-preferred-size: 91.66666667%;
        flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  [class*='grid'] > [class*="_md-12"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  [class*="grid"] > [data-push-left*="_md-0"] {
    margin-left: 0;
  }
  [class*="grid"] > [data-push-left*="_md-1"] {
    margin-left: 8.33333333%;
  }
  [class*="grid"] > [data-push-left*="_md-2"] {
    margin-left: 16.66666667%;
  }
  [class*="grid"] > [data-push-left*="_md-3"] {
    margin-left: 25%;
  }
  [class*="grid"] > [data-push-left*="_md-4"] {
    margin-left: 33.33333333%;
  }
  [class*="grid"] > [data-push-left*="_md-5"] {
    margin-left: 41.66666667%;
  }
  [class*="grid"] > [data-push-left*="_md-6"] {
    margin-left: 50%;
  }
  [class*="grid"] > [data-push-left*="_md-6"] {
    margin-left: 50%;
  }
  [class*="grid"] > [data-push-left*="_md-7"] {
    margin-left: 58.33333333%;
  }
  [class*="grid"] > [data-push-left*="_md-8"] {
    margin-left: 66.66666667%;
  }
  [class*="grid"] > [data-push-left*="_md-9"] {
    margin-left: 75%;
  }
  [class*="grid"] > [data-push-left*="_md-10"] {
    margin-left: 83.33333333%;
  }
  [class*="grid"] > [data-push-left*="_md-11"] {
    margin-left: 91.66666667%;
  }
  [class*="grid"] > [data-push-right*="_md-0"] {
    margin-right: 0;
  }
  [class*="grid"] > [data-push-right*="_md-1"] {
    margin-right: 8.33333333%;
  }
  [class*="grid"] > [data-push-right*="_md-2"] {
    margin-right: 16.66666667%;
  }
  [class*="grid"] > [data-push-right*="_md-3"] {
    margin-right: 25%;
  }
  [class*="grid"] > [data-push-right*="_md-4"] {
    margin-right: 33.33333333%;
  }
  [class*="grid"] > [data-push-right*="_md-5"] {
    margin-right: 41.66666667%;
  }
  [class*="grid"] > [data-push-right*="_md-6"] {
    margin-right: 50%;
  }
  [class*="grid"] > [data-push-right*="_md-6"] {
    margin-right: 50%;
  }
  [class*="grid"] > [data-push-right*="_md-7"] {
    margin-right: 58.33333333%;
  }
  [class*="grid"] > [data-push-right*="_md-8"] {
    margin-right: 66.66666667%;
  }
  [class*="grid"] > [data-push-right*="_md-9"] {
    margin-right: 75%;
  }
  [class*="grid"] > [data-push-right*="_md-10"] {
    margin-right: 83.33333333%;
  }
  [class*="grid"] > [data-push-right*="_md-11"] {
    margin-right: 91.66666667%;
  }
}
@media screen and (max-width:  768px) {
  [class*='grid'] > [class*="_sm-1"] {
    -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  [class*='grid'] > [class*="_sm-2"] {
    -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*='grid'] > [class*="_sm-3"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  [class*='grid'] > [class*="_sm-4"] {
    -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*='grid'] > [class*="_sm-5"] {
    -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  [class*='grid'] > [class*="_sm-6"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  [class*='grid'] > [class*="_sm-7"] {
    -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  [class*='grid'] > [class*="_sm-8"] {
    -ms-flex-preferred-size: 66.66666667%;
        flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  [class*='grid'] > [class*="_sm-9"] {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  [class*='grid'] > [class*="_sm-10"] {
    -ms-flex-preferred-size: 83.33333333%;
        flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  [class*='grid'] > [class*="_sm-11"] {
    -ms-flex-preferred-size: 91.66666667%;
        flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  [class*='grid'] > [class*="_sm-12"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  [class*="grid"] > [data-push-left*="_sm-0"] {
    margin-left: 0;
  }
  [class*="grid"] > [data-push-left*="_sm-1"] {
    margin-left: 8.33333333%;
  }
  [class*="grid"] > [data-push-left*="_sm-2"] {
    margin-left: 16.66666667%;
  }
  [class*="grid"] > [data-push-left*="_sm-3"] {
    margin-left: 25%;
  }
  [class*="grid"] > [data-push-left*="_sm-4"] {
    margin-left: 33.33333333%;
  }
  [class*="grid"] > [data-push-left*="_sm-5"] {
    margin-left: 41.66666667%;
  }
  [class*="grid"] > [data-push-left*="_sm-6"] {
    margin-left: 50%;
  }
  [class*="grid"] > [data-push-left*="_sm-6"] {
    margin-left: 50%;
  }
  [class*="grid"] > [data-push-left*="_sm-7"] {
    margin-left: 58.33333333%;
  }
  [class*="grid"] > [data-push-left*="_sm-8"] {
    margin-left: 66.66666667%;
  }
  [class*="grid"] > [data-push-left*="_sm-9"] {
    margin-left: 75%;
  }
  [class*="grid"] > [data-push-left*="_sm-10"] {
    margin-left: 83.33333333%;
  }
  [class*="grid"] > [data-push-left*="_sm-11"] {
    margin-left: 91.66666667%;
  }
  [class*="grid"] > [data-push-right*="_sm-0"] {
    margin-right: 0;
  }
  [class*="grid"] > [data-push-right*="_sm-1"] {
    margin-right: 8.33333333%;
  }
  [class*="grid"] > [data-push-right*="_sm-2"] {
    margin-right: 16.66666667%;
  }
  [class*="grid"] > [data-push-right*="_sm-3"] {
    margin-right: 25%;
  }
  [class*="grid"] > [data-push-right*="_sm-4"] {
    margin-right: 33.33333333%;
  }
  [class*="grid"] > [data-push-right*="_sm-5"] {
    margin-right: 41.66666667%;
  }
  [class*="grid"] > [data-push-right*="_sm-6"] {
    margin-right: 50%;
  }
  [class*="grid"] > [data-push-right*="_sm-6"] {
    margin-right: 50%;
  }
  [class*="grid"] > [data-push-right*="_sm-7"] {
    margin-right: 58.33333333%;
  }
  [class*="grid"] > [data-push-right*="_sm-8"] {
    margin-right: 66.66666667%;
  }
  [class*="grid"] > [data-push-right*="_sm-9"] {
    margin-right: 75%;
  }
  [class*="grid"] > [data-push-right*="_sm-10"] {
    margin-right: 83.33333333%;
  }
  [class*="grid"] > [data-push-right*="_sm-11"] {
    margin-right: 91.66666667%;
  }
}
@media screen and (max-width:  600px) {
  [class*='grid'] > [class*="_xs-1"] {
    -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  [class*='grid'] > [class*="_xs-2"] {
    -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*='grid'] > [class*="_xs-3"] {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  [class*='grid'] > [class*="_xs-4"] {
    -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*='grid'] > [class*="_xs-5"] {
    -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  [class*='grid'] > [class*="_xs-6"] {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  [class*='grid'] > [class*="_xs-7"] {
    -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  [class*='grid'] > [class*="_xs-8"] {
    -ms-flex-preferred-size: 66.66666667%;
        flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  [class*='grid'] > [class*="_xs-9"] {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  [class*='grid'] > [class*="_xs-10"] {
    -ms-flex-preferred-size: 83.33333333%;
        flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  [class*='grid'] > [class*="_xs-11"] {
    -ms-flex-preferred-size: 91.66666667%;
        flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  [class*='grid'] > [class*="_xs-12"] {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  [class*="grid"] > [data-push-left*="_xs-0"] {
    margin-left: 0;
  }
  [class*="grid"] > [data-push-left*="_xs-1"] {
    margin-left: 8.33333333%;
  }
  [class*="grid"] > [data-push-left*="_xs-2"] {
    margin-left: 16.66666667%;
  }
  [class*="grid"] > [data-push-left*="_xs-3"] {
    margin-left: 25%;
  }
  [class*="grid"] > [data-push-left*="_xs-4"] {
    margin-left: 33.33333333%;
  }
  [class*="grid"] > [data-push-left*="_xs-5"] {
    margin-left: 41.66666667%;
  }
  [class*="grid"] > [data-push-left*="_xs-6"] {
    margin-left: 50%;
  }
  [class*="grid"] > [data-push-left*="_xs-6"] {
    margin-left: 50%;
  }
  [class*="grid"] > [data-push-left*="_xs-7"] {
    margin-left: 58.33333333%;
  }
  [class*="grid"] > [data-push-left*="_xs-8"] {
    margin-left: 66.66666667%;
  }
  [class*="grid"] > [data-push-left*="_xs-9"] {
    margin-left: 75%;
  }
  [class*="grid"] > [data-push-left*="_xs-10"] {
    margin-left: 83.33333333%;
  }
  [class*="grid"] > [data-push-left*="_xs-11"] {
    margin-left: 91.66666667%;
  }
  [class*="grid"] > [data-push-right*="_xs-0"] {
    margin-right: 0;
  }
  [class*="grid"] > [data-push-right*="_xs-1"] {
    margin-right: 8.33333333%;
  }
  [class*="grid"] > [data-push-right*="_xs-2"] {
    margin-right: 16.66666667%;
  }
  [class*="grid"] > [data-push-right*="_xs-3"] {
    margin-right: 25%;
  }
  [class*="grid"] > [data-push-right*="_xs-4"] {
    margin-right: 33.33333333%;
  }
  [class*="grid"] > [data-push-right*="_xs-5"] {
    margin-right: 41.66666667%;
  }
  [class*="grid"] > [data-push-right*="_xs-6"] {
    margin-right: 50%;
  }
  [class*="grid"] > [data-push-right*="_xs-6"] {
    margin-right: 50%;
  }
  [class*="grid"] > [data-push-right*="_xs-7"] {
    margin-right: 58.33333333%;
  }
  [class*="grid"] > [data-push-right*="_xs-8"] {
    margin-right: 66.66666667%;
  }
  [class*="grid"] > [data-push-right*="_xs-9"] {
    margin-right: 75%;
  }
  [class*="grid"] > [data-push-right*="_xs-10"] {
    margin-right: 83.33333333%;
  }
  [class*="grid"] > [data-push-right*="_xs-11"] {
    margin-right: 91.66666667%;
  }
}
/************************
    HIDING COLS
*************************/
[class*="col-"]:not([class*="col-0"]) {
  display: block;
}
[class*="grid"][class*="col-"]:not([class*="col-0"]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[class*="col-"][class*="col-0"] {
  display: none;
}
@media screen and (max-width: 1400px) {
  [class*="grid"] > :not([class*="_lg-0"]) {
    display: block;
  }
  [class*="grid"]:not([class*="_lg-0"]) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  [class*="grid"] > [class*="_lg-0"],
  [class*="grid"][class*="-equalHeight"] > [class*="_lg-0"] {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  [class*="grid"] > :not([class*="_md-0"]) {
    display: block;
  }
  [class*="grid"]:not([class*="_md-0"]) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  [class*="grid"] > [class*="_md-0"],
  [class*="grid"][class*="-equalHeight"] > [class*="_md-0"] {
    display: none;
  }
}
@media screen and (max-width:  768px) {
  [class*="grid"] > :not([class*="_sm-0"]) {
    display: block;
  }
  [class*="grid"]:not([class*="_sm-0"]) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  [class*="grid"] > [class*="_sm-0"],
  [class*="grid"][class*="-equalHeight"] > [class*="_sm-0"] {
    display: none;
  }
}
@media screen and (max-width:  600px) {
  [class*="grid"] > :not([class*="_xs-0"]) {
    display: block;
  }
  [class*="grid"]:not([class*="_xs-0"]) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  [class*="grid"] > [class*="_xs-0"],
  [class*="grid"][class*="-equalHeight"] > [class*="_xs-0"] {
    display: none;
  }
}
/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– 
*/
.u-full-width {
  width: 100%;
}
.u-max-full-width {
  max-width: 100%;
  height: auto;
  display: block;
}
.u-pull-right {
  float: right;
}
.u-pull-left {
  float: left;
}
.u-text-center {
  text-align: center;
}
.u-text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
/* Screen Reader Text */
.screen-reader-text {
  position: absolute !important;
  left: -999em;
}
/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.cf::before,
.cf::after {
  content: " ";
  display: table;
}
.cf::after {
  clear: both;
}
.u-clear {
  clear: both;
}
/* Margins
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-margin {
  margin-top: 22px;
  margin-bottom: 22px;
}
.u-margin-2x {
  margin-top: 44px;
  margin-bottom: 44px;
}
/* Responsive Video
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Media Queries
---------------------------------------------------
*/
.border {
  border-style: solid;
  border-color: #28a22d;
  border-radius: 0;
  border-width: 0;
}
.border--all {
  border-width: 1px;
  border-radius: 4px;
}
.border--top {
  border-top-width: 1px;
}
.border--right {
  border-right-width: 1px;
}
.border--bottom {
  border-bottom-width: 1px;
}
.border--left {
  border-left-width: 1px;
}
.padding--top {
  padding-top: 1rem;
}
.padding--bottom {
  padding-bottom: 1rem;
}
.padding--right {
  padding-right: 1rem;
}
.padding--left {
  padding-left: 1rem;
}
.padding--all {
  padding: 1rem;
}
.container {
  margin: 0 1rem;
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .container {
    margin: 0 1rem;
    max-width: calc(1200px  + 2rem + 16px);
  }
}
@media screen and (min-width: 1244px) {
  .container {
    margin: 0 auto;
    max-width: 1200px;
  }
}
.container�-full-width {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .container__page-narrow {
    margin-left: 16.6666%;
    margin-right: 16.6666%;
  }
}
@media screen and (min-width: 768px) {
  .container__half-page {
    margin-left: 52%;
  }
}
.vertical-header {
  position: fixed;
  z-index: 1060;
  background: white;
  left: 0;
  right: 0;
  top: 0;
  -webkit-transition: height 0.3s ease 0.4s, -webkit-transform 0.4s ease;
  transition: height 0.3s ease 0.4s, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, height 0.3s ease 0.4s;
  transition: transform 0.4s ease, height 0.3s ease 0.4s, -webkit-transform 0.4s ease;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  height: 3rem;
}
@media screen and (min-width: 480px) {
  .vertical-header {
    height: 6rem;
  }
}
@media screen and (min-width: 1024px) {
  .vertical-header {
    height: 9rem;
  }
}
.vertical-header__inner {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  border-bottom: 1px solid #28a22d;
}
.vertical-header__h1 {
  margin: 0;
}
.vertical-header--hidden {
  -webkit-transform: translateY(-101%);
      -ms-transform: translateY(-101%);
          transform: translateY(-101%);
}
@media screen and (min-width: 480px) {
  .vertical-header--narrow {
    height: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .vertical-header--narrow {
    height: 5rem;
  }
}
.logo {
  background: url(images/ABW_Ausbildungswerk_Kreuzberg_eV_Logo_2016.svg) center center no-repeat grey;
  background-size: cover;
  width: 10rem;
  height: 1.5rem;
  display: inline-block;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
@media screen and (min-width: 480px) {
  .logo {
    width: 12rem;
    height: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .logo {
    width: 15rem;
    height: 2.25rem;
  }
}
.logo--small {
  width: 10rem;
  height: 1.5rem;
}
.dropdown-nav {
  line-height: 2;
  font-size: 1.25rem;
  font-weight: 300;
  text-transform: uppercase;
  visibility: hidden;
  opacity: 0;
}
.dropdown-nav__frame {
  position: fixed;
  z-index: 1050;
  top: 0rem;
  left: 0;
  right: -1rem;
  bottom: 0;
  padding: 1rem;
  padding-top: 3.5rem;
  background: #ffffff;
  overflow-y: scroll;
}
@media screen and (min-width: 480px) {
  .dropdown-nav__frame {
    padding-top: 6.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .dropdown-nav__frame {
    padding-top: 9.5rem;
  }
}
@media screen and (min-width: 480px) {
  .dropdown-nav__frame--narrow {
    padding-top: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .dropdown-nav__frame--narrow {
    padding-top: 6rem;
  }
}
.dropdown-nav__wp-menu {
  padding-left: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.dropdown-nav__wp-menu > li > a {
  border-top: 1px solid #28a22d;
}
.dropdown-nav__wp-menu > li:first-of-type > a:first-of-type {
  border-top: none;
}
.dropdown-nav__wp-menu {
  list-style: none;
}
.dropdown-nav .sub-menu {
  list-style: none;
  padding-bottom: 0.5rem;
}
.dropdown-nav li a {
  display: block;
}
.dropdown-nav--opened {
  visibility: visible;
  opacity: 1;
}
.post-navigation {
  margin: 1rem 0;
  text-align: right;
}
.post-navigation::before,
.post-navigation::after {
  content: " ";
  display: table;
}
.post-navigation::after {
  clear: both;
}
.post-navigation span {
  padding: 0 0.5rem;
}
.hamburger {
  border: none;
  border-radius: 0;
  padding: 0;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
}
.hamburger:focus {
  outline: none;
}
.hamburger__icon {
  display: inline-block;
  fill: currentColor;
  height: 1.5rem;
  width: 1.5rem;
  vertical-align: top;
  position: relative;
}
@media screen and (min-width: 480px) {
  .hamburger__icon {
    height: 2.5rem;
    width: 2.5rem;
  }
}
.hamburger__icon:hover {
  fill: #28a22d;
}
.hamburger__line {
  opacity: 1;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.hamburger__line-1 {
  -webkit-transform-origin: 14% 25%;
      -ms-transform-origin: 14% 25%;
          transform-origin: 14% 25%;
}
.hamburger__line-3 {
  -webkit-transform-origin: 14% 75%;
      -ms-transform-origin: 14% 75%;
          transform-origin: 14% 75%;
}
.hamburger--opened .hamburger__line-1 {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hamburger--opened .hamburger__line-2 {
  opacity: 0;
}
.hamburger--opened .hamburger__line-3 {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.editor-content {
  padding-top: 0;
  padding-bottom: 22px;
}
@media screen and (min-width: 768px) {
  .editor-content {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}
.editor-content__article {
  padding-top: 22px;
}
@media screen and (min-width: 768px) {
  .editor-content__article {
    padding-top: 0;
  }
}
.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6 {
  text-transform: uppercase;
}
.editor-content--ausstellung .shariff-main {
  margin-top: 88px;
}
.editor-content .ausstellungs-title {
  text-transform: none;
  margin: 1rem 0;
}
.editor-content p {
  font-size: 1rem;
  margin: 0 0 1rem 0;
}
.editor-content i,
.editor-content em {
  font-style: italic;
  color: #333333;
}
.editor-content bold {
  font-weight: 700;
}
.editor-content p a::before,
.editor-content__more-link::before,
.editor-content li::before {
  content: '';
  background: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZpZXdCb3g9IjAgMCA3MCAxMDAiPgoJPHBvbHlnb24gZmlsbD0iIzI4YTIyZCIgcG9pbnRzPSIyMCwzMCAzMCwzMCA1MCw1OS43NSAzMCw5MCAyMCw5MCAzOSw1OS41ICIvPgo8L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: -2px;
}
.editor-content__post-preview-title {
  margin-bottom: 0;
}
.editor-content__timestamp {
  color: #cccccc;
  font-size: 0.85rem;
  margin-bottom: 11px;
}
.editor-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem 0;
  overflow: hidden;
}
.editor-content li {
  padding-left: 1rem;
  text-indent: -1rem;
}
.featured-content {
  padding-top: 22px;
  padding-bottom: 22px;
}
.entry-title {
  font-size: 2rem;
  color: #28a22d;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.standard-footer {
  font-size: 0.8rem;
  padding-bottom: 22px;
  padding-top: 22px;
}
.standard-footer__address {
  margin-left: 4.5rem;
}
.footer-nav__wp-menu {
  list-style: none;
  padding-left: 0;
  padding-left: 5rem;
}
@media screen and (min-width: 1024px) {
  .footer-nav__wp-menu {
    padding-left: initial;
  }
}
.footer-nav__wp-menu .menu-item-has-children > a {
  margin-bottom: 1rem;
  display: inline-block;
}
.footer-nav__wp-menu .menu-item-has-children {
  margin-bottom: 1rem;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}
@media screen and (min-width: 480px) {
  .footer-nav__wp-menu .menu-item-has-children {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .footer-nav__wp-menu .menu-item-has-children {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
    max-width: 33%;
  }
}
@media screen and (min-width: 768px) {
  .footer-nav__wp-menu .menu-item-has-children {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    max-width: 20%;
  }
}
.footer-nav__wp-menu .sub-menu {
  list-style: none;
  padding-left: 0;
}
.footer-nav__wp-menu .sub-menu a {
  color: #000000;
  margin-bottom: 0.5rem;
  display: inline-block;
  max-width: 75%;
}
.featured-image {
  margin-top: -1px;
  position: relative;
  z-index: 1010;
  max-width: calc(100% + 2rem);
  margin: 0 -1rem 0 -1rem;
}
@media screen and (min-width: 768px) {
  .featured-image {
    max-width: 50%;
    margin: 0 1rem 0.25rem 0;
    float: left;
  }
}
.featured-image--gallery {
  margin: 1rem -1rem 0 -1rem;
}
@media screen and (min-width: 568px) {
  .featured-image--gallery {
    max-width: 100%;
    margin: 0 0 1rem;
  }
}
.featured-image__img {
  display: block;
  max-width: 100%;
  height: auto;
}
.featured-image__title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #ffffff;
  z-index: 1020;
  font-size: 200%;
  font-weight: 400;
}
.featured-image__caption {
  font-size: 0.875rem;
  color: #cccccc;
  text-align: right;
}
.white-background {
  background: #ffffff;
}
.packery__item {
  float: left;
  width: 33.3333%;
  background: #28a22d;
  border: 1px solid white;
}
@media screen and (min-width: 568px) {
  .packery__item {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .packery__item {
    width: 20%;
  }
}
@media screen and (min-width: 1024px) {
  .packery__item {
    width: 12.5%;
  }
}
.packery__item--width-2 {
  width: 66.6666%;
}
@media screen and (min-width: 568px) {
  .packery__item--width-2 {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .packery__item--width-2 {
    width: 40%;
  }
}
@media screen and (min-width: 1024px) {
  .packery__item--width-2 {
    width: 25%;
  }
}
.packery__item img {
  display: block;
  width: 100%;
}
.packery__empty {
  padding-bottom: calc( 33.3333% - 2px);
}
@media screen and (min-width: 568px) {
  .packery__empty {
    padding-bottom: calc( 25% - 2px);
  }
}
@media screen and (min-width: 768px) {
  .packery__empty {
    padding-bottom: calc( 20% - 2px);
  }
}
@media screen and (min-width: 1024px) {
  .packery__empty {
    padding-bottom: calc( 12.5% - 2px);
  }
}
.packery__xs {
  display: none;
}
@media screen and (min-width: 480px) {
  .packery__xs {
    display: block;
  }
}
.packery__sm {
  display: none;
}
@media screen and (min-width: 568px) {
  .packery__sm {
    display: block;
  }
}
.packery__md {
  display: none;
}
@media screen and (min-width: 768px) {
  .packery__md {
    display: block;
  }
}
.packery__lg {
  display: none;
}
@media screen and (min-width: 1024px) {
  .packery__lg {
    display: block;
  }
}
img.alignnone,
.wp-caption.alignnone {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0.25rem 0;
}
img.alignnone img,
.wp-caption.alignnone img {
  max-width: 100%;
  height: auto;
}
img.alignleft,
.wp-caption.alignleft {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0.25rem 0;
}
@media screen and (min-width: 480px) {
  img.alignleft,
  .wp-caption.alignleft {
    float: left;
    margin: 0.25rem 1rem 0.25rem 0;
  }
}
img.alignleft img,
.wp-caption.alignleft img {
  max-width: 100%;
  height: auto;
}
img.alignright,
.wp-caption.alignright {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0.25rem 0;
}
@media screen and (min-width: 480px) {
  img.alignright,
  .wp-caption.alignright {
    float: right;
    margin: 0.25rem 0 0.25rem 1rem;
  }
}
img.alignright img,
.wp-caption.alignright img {
  max-width: 100%;
  height: auto;
}
img.aligncenter,
.wp-caption.aligncenter {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
img.aligncenter img,
.wp-caption.aligncenter img {
  max-width: 100%;
  height: auto;
}
.wp-caption-text {
  line-height: 1.375;
  font-size: 0.875rem;
  color: #808080;
  text-align: right;
}
.wpcf7 {
  width: 100%;
}
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  background-color: #eaeaea;
  border: none;
  padding: 0.5rem 0.75rem;
  width: 100%;
  margin: 0;
  font-size: 1rem;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.375;
}
.wpcf7-form input[type=submit]:hover {
  background-color: #28a22d;
  cursor: pointer;
}
.wpcf7-form input[type="radio"],
.wpcf7-form input[type="checkbox"] {
  width: 1rem;
  margin-right: 0.4rem;
  margin-top: 1rem;
}
.wpcf7-form .wpcf7-radio span + span {
  margin-left: 2rem;
}
.wpcf7-form ::-webkit-input-placeholder {
  /* Standard (https://drafts.csswg.org/selectors-4/#placeholder) */
  color: #000000;
  opacity: 0.8;
}
.wpcf7-form ::-moz-placeholder {
  /* Standard (https://drafts.csswg.org/selectors-4/#placeholder) */
  color: #000000;
  opacity: 0.8;
}
.wpcf7-form :-ms-input-placeholder {
  /* Standard (https://drafts.csswg.org/selectors-4/#placeholder) */
  color: #000000;
  opacity: 0.8;
}
.wpcf7-form ::-ms-input-placeholder {
  /* Standard (https://drafts.csswg.org/selectors-4/#placeholder) */
  color: #000000;
  opacity: 0.8;
}
.wpcf7-form ::placeholder {
  /* Standard (https://drafts.csswg.org/selectors-4/#placeholder) */
  color: #000000;
  opacity: 0.8;
}
.wpcf7-form .hidden-fields-container {
  display: none;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: #ce0000;
}
.wpcf7-form .wpcf7-response-output {
  color: #28a22d;
}
.gallery {
  line-height: 0;
}
.gallery .gallery-item {
  display: inline-block;
  vertical-align: top;
  margin: 1px;
}
.gallery img {
  vertical-align: top;
}
.back-to-top {
  display: block;
  margin: 0;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  background: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj4KCTxwb2x5Z29uIGZpbGw9IiNGRkZGRkYiIHBvaW50cz0iMjEsNjUgMjEsNTUgNTAuNzUsMzUgODEsNTUgODEsNjUgNTAuNSw0NiAiLz4KPC9zdmc+) center center no-repeat #28a22d;
  width: 2.5rem;
  height: 2.5rem;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  text-indent: -100%;
}
.tab-buttons {
  margin: 22px 0;
}
.tab-buttons__buttons {
  margin-bottom: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tab-buttons__button {
  border: 1px solid #28a22d;
  background: transparent;
  color: #28a22d;
  padding: 1rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.tab-buttons__button:hover {
  background: #28a22d;
  color: #ffffff;
}
.tab-buttons__button--active {
  background: #28a22d;
  color: #ffffff;
}
.tab-buttons__panel {
  display: none;
  margin-bottom: 22px;
}
.tab-buttons__panel--active {
  display: block;
}
.preview-page {
  padding-top: 44px;
  padding-bottom: 44px;
}
.preview-page__article {
  margin-top: 1rem;
}
.preview-page__more-link::before {
  content: '';
  background: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZpZXdCb3g9IjAgMCA3MCAxMDAiPgoJPHBvbHlnb24gZmlsbD0iIzI4YTIyZCIgcG9pbnRzPSIyMCwzMCAzMCwzMCA1MCw1OS43NSAzMCw5MCAyMCw5MCAzOSw1OS41ICIvPgo8L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: -2px;
}
.preview-page__title {
  margin-bottom: 0;
}
.preview-page__timestamp {
  color: #cccccc;
  font-size: 0.85rem;
  margin-bottom: 11px;
}
.preview-page__img {
  display: block;
  max-width: 100%;
  height: auto;
  float: right;
}
.wp-pagenavi {
  clear: both;
  margin: 2rem 0;
}
.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  color: #808080;
  border: 1px solid #aceaae;
  padding: 0.2rem 0.3rem;
  margin: 0.2rem;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  background-color: #28a22d;
  color: #fff;
}
.tageskarte {
  text-align: center;
}
