@charset "UTF-8";
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/*
Responsive---------------------------------------------*/
/*
Farben---------------------------------------------*/
/*
Padding--------------------------------------------*/
/* Schriften
-------------------------------------------------- */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/sourcesanspro-300.woff) format("woff"); }
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/sourcesanspro-400.woff) format("woff"); }
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/sourcesanspro-600.woff) format("woff"); }
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 400;
  src: url(../fonts/sourcesanspro-400-italic.woff) format("woff"); }
/*
    Mobile Menu Core Style
*/
.slicknav_btn {
  position: relative;
  display: block;
  vertical-align: middle;
  float: left;
  padding: 0.438em 0.625em 0.438em 0.625em;
  line-height: 1.125em;
  cursor: pointer; }

.slicknav_menu .slicknav_menutxt {
  display: block;
  line-height: 1.188em;
  float: left; }

.slicknav_menu .slicknav_icon {
  float: left;
  margin: 0.188em 0 0 0.438em; }

.slicknav_menu .slicknav_no-text {
  margin: 0; }

.slicknav_menu .slicknav_icon-bar {
  display: block;
  width: 1.125em;
  height: 0.125em;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); }

.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
  margin-top: 0.188em; }

.slicknav_nav {
  clear: both; }

.slicknav_nav ul, .slicknav_nav li {
  display: block; }

.slicknav_nav .slicknav_arrow {
  font-size: 0.8em;
  margin: 0 0 0 0.4em; }

.slicknav_nav .slicknav_item {
  cursor: pointer; }

.slicknav_nav .slicknav_row {
  display: block; }

.slicknav_nav a {
  display: block; }

.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
  display: inline; }

.slicknav_menu:before, .slicknav_menu:after {
  content: " ";
  display: table; }

.slicknav_menu:after {
  clear: both; }

/* IE6/7 support */
.slicknav_menu {
  *zoom: 1; }

/* 
    User Default Style
    Change the following styles to modify the appearance of the menu.
*/
.slicknav_menu {
  font-size: 16px; }

/* Button */
.slicknav_btn {
  margin: 5px 5px 6px 16px;
  text-decoration: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #658b07; }

/* Button Text */
.slicknav_menu .slicknav_menutxt {
  color: #ffffff; }

/* Button Lines */
.slicknav_menu .slicknav_icon-bar {
  background-color: #ffffff; }

.slicknav_menu {
  background-color: #547306;
  padding: 5px; }

.slicknav_nav {
  background-color: #547306;
  color: #ffffff;
  margin: 0;
  padding: 0;
  font-size: 0.875em; }

.slicknav_nav, .slicknav_nav ul {
  list-style: none;
  overflow: hidden; }

.slicknav_nav ul {
  padding: 0;
  margin: 0 0 0 20px; }

.slicknav_nav .slicknav_row {
  padding: 5px 10px;
  margin: 2px 5px; }

.slicknav_nav a {
  padding: 5px 10px;
  margin: 2px 5px;
  text-decoration: none;
  color: #fff; }

.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
  padding: 0;
  margin: 0; }

.slicknav_nav .slicknav_row:hover {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #ccc;
  color: #fff; }

.slicknav_nav a:hover {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #dddddd;
  color: #547306; }

.slicknav_nav .active {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #dddddd;
  color: #547306; }

.slicknav_nav .slicknav_txtnode {
  margin-left: 15px; }

.slicknav_menu {
  display: block; }

@media screen and (min-width: 710px) {
  /* #menu is the original menu */
  .js #menu {
    display: block; }

  .slicknav_menu {
    display: none; } }
/*
Basics----------------------------------------------------------*/
html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

body {
  font: 18px "Source Sans Pro", sans-serif;
  color: #547306;
  margin: auto; }

a {
  text-decoration: none;
  color: #658b07; }

a:hover {
  color: #547306; }

ul {
  margin: 0;
  padding: 0; }

li {
  list-style-type: none;
  margin: 0;
  padding: 0; }

nav {
  margin: 0; }

img {
  max-width: 100%; }

a img {
  opacity: 1; }

a img:hover {
  opacity: 0.9; }

figure {
  margin: 0; }

/*
Parts----------------------------------------------------------*/
.wrap {
  *zoom: 1;
  width: auto;
  max-width: 1080px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  padding-right: 10px;
  padding-left: 10px; }
  .wrap:before, .wrap:after {
    content: '';
    display: table; }
  .wrap:after {
    clear: both; }

header {
  background-color: #dddddd;
  padding-bottom: 5px; }

@media screen and (min-width: 560px) {
  header {
    padding-bottom: 100px; } }
.cover-container {
  margin-top: -100px;
  display: none; }

@media screen and (min-width: 560px) {
  .cover-container {
    display: block; } }
.cover-container-home {
  margin-top: -100px; }

.projects-container {
  background-color: #dddddd;
  margin-top: 30px;
  padding: 30px 30px 150px; }

.kontakt-bild {
  margin-top: -100px; }

.content {
  margin-top: 30px;
  margin-bottom: 30px; }

footer {
  background-color: #547306; }
/*
Headlines/Texte--------------------------------------------------------*/
h1 {
  text-transform: uppercase; }
  h1:before {
    content: "";
    display: block;
    background: url(../images/huf.png) no-repeat;
    float: left;
    margin-top: 0.15em; }

a h1:hover {
  color: #658b07; }

a h1 {
  color: #547306;
  border-bottom: none; }
  a h1:visited {
    color: #547306;
    border-bottom: none; }

h2 {
  font: bold 0.9em "museo-slab"; }

@media screen and (min-width: 560px) {
  h2 {
    font-size: 1.8em;
    font-weight: bold; } }
@media screen and (min-width: 970px) {
  h2 {
    font-size: 2.157em; } }
h3 {
  margin-bottom: 15px;
  font: bold 1.4em "museo-slab"; }

@media screen and (min-width: 560px) {
  h3 {
    font-size: 1.4em;
    font-weight: bold; } }
@media screen and (min-width: 970px) {
  h3 {
    font-size: 1.618em; } }
h3 a {
  color: #547306; }

h3 a:hover {
  color: #658b07; }

h4 {
  font-size: 1.125em; }

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

.weis {
  color: #ffffff; }

/*
Cover-Bild---------------------------------------------------------------------*/
.cover-container img {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%; }
  .cover-container img:before, .cover-container img:after {
    content: '';
    display: table; }
  .cover-container img:after {
    clear: both; }
  .cover-container img:last-child {
    margin-right: 0%; }

.cover-container-home img {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%; }
  .cover-container-home img:before, .cover-container-home img:after {
    content: '';
    display: table; }
  .cover-container-home img:after {
    clear: both; }
  .cover-container-home img:last-child {
    margin-right: 0%; }

.kontakt-bild img {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%; }
  .kontakt-bild img:before, .kontakt-bild img:after {
    content: '';
    display: table; }
  .kontakt-bild img:after {
    clear: both; }
  .kontakt-bild img:last-child {
    margin-right: 0%; }

/*
Boxen---------------------------------------------------------------------*/
.blue-box-home {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
  background-color: #547306;
  color: #ffffff;
  margin-top: -2px;
  padding: 0px 15px 0px 30px; }
  .blue-box-home:before, .blue-box-home:after {
    content: '';
    display: table; }
  .blue-box-home:after {
    clear: both; }
  .blue-box-home:last-child {
    margin-right: 0%; }

@media screen and (min-width: 560px) {
  .blue-box-home {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    position: static;
    left: 0;
    padding: 0px 10px 0px 40px;
    margin-top: -60px; }
    .blue-box-home:before, .blue-box-home:after {
      content: '';
      display: table; }
    .blue-box-home:after {
      clear: both; }
    .blue-box-home:last-child {
      margin-right: 0%; } }
@media screen and (min-width: 970px) {
  .blue-box-home {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: 34.33333%;
    padding: 15px 10px 15px 40px;
    margin-top: -125px; }
    .blue-box-home:before, .blue-box-home:after {
      content: '';
      display: table; }
    .blue-box-home:after {
      clear: both; }
    .blue-box-home:last-child {
      margin-right: 0%; } }
@media screen and (min-width: 1110px) {
  .blue-box-home {
    padding: 15px 40px; } }
.blue-box {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
  position: static;
  left: 0;
  background-color: #547306;
  color: #ffffff;
  padding: 0px 20px; }
  .blue-box:before, .blue-box:after {
    content: '';
    display: table; }
  .blue-box:after {
    clear: both; }
  .blue-box:last-child {
    margin-right: 0%; }

@media screen and (min-width: 560px) {
  .blue-box {
    padding: 0px 40px;
    margin-top: 0; } }
@media screen and (min-width: 970px) {
  .blue-box {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: 34.33333%;
    padding: 15px 40px;
    margin-top: -30px; }
    .blue-box:before, .blue-box:after {
      content: '';
      display: table; }
    .blue-box:after {
      clear: both; }
    .blue-box:last-child {
      margin-right: 0%; } }
@media screen and (min-width: 1110px) {
  .blue-box {
    margin-top: -60px; } }
.blue-box-mini {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
  background-color: #547306;
  color: #ffffff;
  padding: 0.53933em; }
  .blue-box-mini:before, .blue-box-mini:after {
    content: '';
    display: table; }
  .blue-box-mini:after {
    clear: both; }
  .blue-box-mini:last-child {
    margin-right: 0%; }
  .blue-box-mini p {
    margin: 0 6px 0 0;
    line-height: 1em;
    font-size: 0.74em; }

@media screen and (min-width: 560px) {
  .blue-box-mini {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    position: static;
    left: 0; }
    .blue-box-mini:before, .blue-box-mini:after {
      content: '';
      display: table; }
    .blue-box-mini:after {
      clear: both; }
    .blue-box-mini:last-child {
      margin-right: 0%; } }
@media screen and (min-width: 710px) {
  .blue-box-mini {
    margin-bottom: 20px; } }
@media screen and (min-width: 970px) {
  .blue-box-mini {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: 34.33333%; }
    .blue-box-mini:before, .blue-box-mini:after {
      content: '';
      display: table; }
    .blue-box-mini:after {
      clear: both; }
    .blue-box-mini:last-child {
      margin-right: 0%; } }
.beige-box {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
  color: #547306;
  padding: 15px 40px;
  background-color: #dddddd; }
  .beige-box:before, .beige-box:after {
    content: '';
    display: table; }
  .beige-box:after {
    clear: both; }
  .beige-box:last-child {
    margin-right: 0%; }

@media screen and (min-width: 560px) {
  .beige-box {
    position: static;
    left: 0; } }
@media screen and (min-width: 970px) {
  .beige-box {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: 34.33333%; }
    .beige-box:before, .beige-box:after {
      content: '';
      display: table; }
    .beige-box:after {
      clear: both; }
    .beige-box:last-child {
      margin-right: 0%; } }
.adresse-home {
  display: none; }

@media screen and (min-width: 510px) {
  .adresse-home {
    display: block;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%; 
	margin-left: 0%;
    margin-right: 3%; }
    .adresse-home:before, .adresse-home:after {
      content: '';
      display: table; }
    .adresse-home:after {
      clear: both; }
    .adresse-home:last-child {
      margin-right: 0%; } }
@media screen and (min-width: 970px) {
  .adresse-home {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 61.375%;
    margin-left: 0%;
    margin-right: 3%; }
    .adresse-home:before, .adresse-home:after {
      content: '';
      display: table; }
    .adresse-home:after {
      clear: both; }
    .adresse-home:last-child {
      margin-right: 0%; } }
.kontakt-home {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%; }
  .kontakt-home:before, .kontakt-home:after {
    content: '';
    display: table; }
  .kontakt-home:after {
    clear: both; }
  .kontakt-home:last-child {
    margin-right: 0%; }

@media screen and (min-width: 510px) {
  .kontakt-home {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
    .kontakt-home:before, .kontakt-home:after {
      content: '';
      display: table; }
    .kontakt-home:after {
      clear: both; }
    .kontakt-home:last-child {
      margin-right: 0%; } }
@media screen and (min-width: 970px) {
  .kontakt-home {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 35.625%;
    margin-left: 0%;
    margin-right: 3%; }
    .kontakt-home:before, .kontakt-home:after {
      content: '';
      display: table; }
    .kontakt-home:after {
      clear: both; }
    .kontakt-home:last-child {
      margin-right: 0%; } }
.logo {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%; }
  .logo:before, .logo:after {
    content: '';
    display: table; }
  .logo:after {
    clear: both; }
  .logo:last-child {
    margin-right: 0%; }

@media screen and (min-width: 1110px) {
  .logo {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%; }
    .logo:before, .logo:after {
      content: '';
      display: table; }
    .logo:after {
      clear: both; }
    .logo:last-child {
      margin-right: 0%; } }
/*
Menue---------------------------------------------------------------------*/
nav {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
  margin-bottom: 26px;
  margin-top: -40px;
  display: none; }
  nav:before, nav:after {
    content: '';
    display: table; }
  nav:after {
    clear: both; }
  nav:last-child {
    margin-right: 0%; }

@media screen and (min-width: 710px) {
  nav {
    display: block; } }
@media screen and (min-width: 1110px) {
  nav {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
    margin-bottom: 0px;
    margin-top: 0px; }
    nav:before, nav:after {
      content: '';
      display: table; }
    nav:after {
      clear: both; }
    nav:last-child {
      margin-right: 0%; } }
nav li {
  float: right; }

.menu {
  margin-top: 33px; }

.menu a {
  display: block;
  color: #547306;
  font-size: 1.111em; }

.menu a:hover {
  color: #ffffff;
  text-decoration: none; }

.menu .active {
  color: #ffffff; }

.menu > li > a {
  padding-top: .35em;
  padding-bottom: .35em;
  padding-left: 27px; }

/*
Submenue-----------------------*/
.menu > li:hover .submenu {
  display: block; }

.submenu {
  position: absolute;
  z-index: 1;
  display: none;
  left: 1em; }

.submenu li {
  border-bottom: 1px solid #ffffff; }

.submenu a {
  padding: .5em 1.5em;
  font-size: .9em;
  font-weight: 300;
  color: #ffffff;
  white-space: nowrap;
  background-color: #547306;
  opacity: 0.98; }

.submenu a:hover {
  color: #ffffff;
  background-color: #658b07; }

/*
Projects--------------------------------------------------------------------*/
/*
Home-Excerpt-------------------*/
.project {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
  margin-bottom: 15px; }
  .project:before, .project:after {
    content: '';
    display: table; }
  .project:after {
    clear: both; }
  .project:nth-child(2n) {
    margin-right: 3%;
    float: left; }
  .project:nth-child(2n + 1) {
    clear: none; }
  .project:last-child {
    margin-right: 0%; }

@media screen and (min-width: 560px) {
  .project {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
    .project:before, .project:after {
      content: '';
      display: table; }
    .project:after {
      clear: both; }
    .project:nth-child(2n) {
      margin-right: 0%;
      float: right; }
    .project:nth-child(2n + 1) {
      clear: both; } }
.project-cover {
  margin-bottom: -5px; }

/*
Hufschuh-Excerpt-------------------*/
.schuh {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%; }
  .schuh:before, .schuh:after {
    content: '';
    display: table; }
  .schuh:after {
    clear: both; }
  .schuh:nth-child(2n) {
    margin-right: 3%;
    float: left; }
  .schuh:nth-child(2n + 1) {
    clear: none; }
  .schuh:last-child {
    margin-right: 0%; }

@media screen and (min-width: 560px) {
  .schuh {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
    .schuh:before, .schuh:after {
      content: '';
      display: table; }
    .schuh:after {
      clear: both; }
    .schuh:nth-child(2n) {
      margin-right: 0%;
      float: right; }
    .schuh:nth-child(2n + 1) {
      clear: both; } }
.schuh img {
  max-height: 225px; }

/*
Blog-------------------*/
.blog {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%; }
  .blog:before, .blog:after {
    content: '';
    display: table; }
  .blog:after {
    clear: both; }
  .blog:nth-child(2n) {
    margin-right: 3%;
    float: left; }
  .blog:nth-child(2n + 1) {
    clear: none; }
  .blog:last-child {
    margin-right: 0%; }

@media screen and (min-width: 560px) {
  .blog {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
    .blog:before, .blog:after {
      content: '';
      display: table; }
    .blog:after {
      clear: both; }
    .blog:nth-child(3n) {
      margin-right: 3%;
      float: left; }
    .blog:nth-child(3n + 1) {
      clear: none; }
    .blog:nth-child(2n) {
      margin-right: 0%;
      float: right; }
    .blog:nth-child(2n + 1) {
      clear: both; } }
@media screen and (min-width: 970px) {
  .blog {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%; }
    .blog:before, .blog:after {
      content: '';
      display: table; }
    .blog:after {
      clear: both; }
    .blog:nth-child(2n) {
      margin-right: 3%;
      float: left; }
    .blog:nth-child(2n + 1) {
      clear: none; }
    .blog:nth-child(3n) {
      margin-right: 0%;
      float: right; }
    .blog:nth-child(3n + 1) {
      clear: both; } }
/*
Content--------------------------------------------------------------------*/
.bilder {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
  margin-top: 23px;
  margin-bottom: 23px;
  margin-left: 0;
  padding-right: 10px; }
  .bilder:before, .bilder:after {
    content: '';
    display: table; }
  .bilder:after {
    clear: both; }
  .bilder:last-child {
    margin-right: 0%; }

@media screen and (min-width: 560px) {
  .bilder {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%; }
    .bilder:before, .bilder:after {
      content: '';
      display: table; }
    .bilder:after {
      clear: both; }
    .bilder:last-child {
      margin-right: 0%; } }
.bilder img {
  max-width: 100%;
  margin-bottom: 20px; }

.text {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%; }
  .text:before, .text:after {
    content: '';
    display: table; }
  .text:after {
    clear: both; }
  .text:last-child {
    margin-right: 0%; }

@media screen and (min-width: 560px) {
  .text {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
    margin: 0; }
    .text:before, .text:after {
      content: '';
      display: table; }
    .text:after {
      clear: both; }
    .text:last-child {
      margin-right: 0%; } }
.mini {
  display: block; }

@media screen and (min-width: 560px) {
  .mini {
    display: none; } }
.big {
  display: none; }

@media screen and (min-width: 560px) {
  .big {
    display: block; } }
    
.text img {
	margin-top: 10px;
	margin-bottom: 8px;
}      
/*
Liste-----------------------*/
.liste li:before {
  content: "▪︎ ";
  margin-right: 5px; }

/*
Tabelle-----------------------*/
td:last-child {
  float: right; }

.table-minimal a:hover {
  color: #ffffff; }

.table-minimal {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
  margin-bottom: 40px;
  border-collapse: separate;
  border-spacing: 0; }
  .table-minimal:before, .table-minimal:after {
    content: '';
    display: table; }
  .table-minimal:after {
    clear: both; }
  .table-minimal:last-child {
    margin-right: 0%; }
  .table-minimal tbody tr:hover {
    background-color: #d7deea; }
  .table-minimal thead th {
    background-color: #536fa2;
    padding: 0.5em;
    border-bottom: 0px; }
  .table-minimal tbody {
    background-color: #ffffff; }
    .table-minimal tbody td {
      padding: 0.5em 0.5em 0.5em 0;
      border-bottom: 0px; }

/* Next/Prev nav
-------------------------------------------------- */
.nextprev {
  margin: 1em 1px;
  display: block;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%; }
  .nextprev:before, .nextprev:after {
    content: '';
    display: table; }
  .nextprev:after {
    clear: both; }
  .nextprev:last-child {
    margin-right: 0%; }

.nextprev .prev {
  float: left; }

.nextprev .next {
  float: right; }

/*
Footer--------------------------------------------------------------------*/
footer {
  color: #ffffff;
  padding: 50px 50px 10px; }

footer a {
  color: #ffffff; }

footer a:hover {
  color: #dddddd; }
