@charset 'UTF-8';

/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
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{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}

/*
  Astral 2.5 by HTML5 UP
  html5up.net | @n33co
  Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/*********************************************************************************/
/* Basic                                                                         */
/*********************************************************************************/

  *
  {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  body
  {
    /*
      Fallback for browsers that don't support pseudo elements.
    */

    background: #5b5a5a;
  }

    body:before
    {
      content: '';
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: -1;

      background: #5b5a5a;
    }

  body, input, textarea
  {
    font-family: 'Mukta Light', sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
    color: #333;
  }

  strong, b
  {
    font-weight: 400;
    color: #363636;
  }

  h1, h2, h3, h4,h5, h6
  {
    font-weight: 400;
    color: #363636;
  }

  blockquote
  {
    border-left: solid 0.5em #ddd;
    padding: 1em 0 1em 2em;
    font-style: italic;
  }

  em, i
  {
    font-style: italic;
  }

  hr
  {
    border: 0;
    border-top: solid 1px #ddd;
    padding: 1.5em 0 0 0;
    margin: 1.75em 0 0 0;
  }

  sub
  {
    position: relative;
    top: 0.5em;
    font-size: 0.8em;
  }

  sup
  {
    position: relative;
    top: -0.5em;
    font-size: 0.8em;
  }

  table
  {
    width: 100%;
  }

  table.style1
  {
    width: 100%;
  }

    table.style1 tbody tr:nth-child(2n+2)
    {
      background: #f4f4f4;
    }

    table.style1 td
    {
      padding: 0.5em 1em 0.5em 1em;
    }

    table.style1 th
    {
      text-align: left;
      font-weight: 400;
      padding: 0.5em 1em 0.5em 1em;
    }

    table.style1 thead
    {
      background: #222222;
      color: #fff;
    }

    table.style1 tfoot
    {
      background: #eee;
    }

    table.style1 tbody
    {
    }

  form
  {
    padding: 45px;
    clear: both;
    border-top: 1px solid #a91d3b;
    margin-bottom: 0;
    padding-bottom: 25px;
  }

    form p {
      margin-bottom: 1em;
      color: #a91d3b;
      font-weight: 400;
    }

    form input.text,
    form select,
    form textarea
    {
      border: 0;
      background: #f0f0f0;
      padding: 0.65em;
      width: 100%;
    }

    form input.button,
    form input.text,
    form select,
    form textarea
    {
      -webkit-appearance: none;
    }

    form textarea
    {
      height: 15em;
    }

    form input:focus,
    form select:focus,
    form textarea:focus
    {
      background: #f5f5f5;
    }

    form ::-webkit-input-placeholder
    {
      color: #999;
    }

    form :-moz-placeholder
    {
      color: #999;
    }

    form ::-moz-placeholder
    {
      color: #999;
    }

    form :-ms-input-placeholder
    {
      color: #999;
    }

  br.clear
  {
    clear: both;
  }

  p, ul, ol, dl, table, blockquote, form
  {
    margin-bottom: 2em;
  }

  section,
  article
  {
    margin-bottom: 3em;
  }

  section > :last-child,
  article > :last-child
  {
    margin-bottom: 0;
  }

  section:last-child,
  article:last-child
  {
    margin-bottom: 0;
  }

  ul,
  ol
  {
    padding-left: 1em;
  }

  ul,
  ol,
  li
  {
    list-style: none;
  }

  li:before {
      content: "•";
      display: inline-block;
      width: 1em;
      margin-left: -1em;
  }

  .image
  {
    display: inline-block;
  }

    .image img
    {
      display: block;
      width: 100%;
    }

  .image-full
  {
    display: block;
    width: 100%;
    margin: 0 0 2em 0;
  }

  .image-left
  {
    float: left;
    margin: 0 2em 2em 0;
  }

  .image-centered
  {
    display: block;
    margin: 0 0 2em 0;
  }

    .image-centered img
    {
      margin: 0 auto;
      width: auto;
    }

  .button
  {
    display: inline-block;
    background-color: #a91d3b;
    color: #fff;
    border: 0;
    cursor: pointer;
    outline: 0;
    -moz-transition: background-color .25s ease-in-out;
    -webkit-transition: background-color .25s ease-in-out;
    -o-transition: background-color .25s ease-in-out;
    -ms-transition: background-color .25s ease-in-out;
    transition: background-color .25s ease-in-out;
  }

    .button:hover
    {
      background-color: #333333;
    }

    .button:active
    {
      background-color: #444444;
    }

    .button.success {
        background: rgb(7, 119, 7);
    }

    .button.disabled {
        cursor: inherit;
        opacity: 0.7;
    }

    .button-alt
    {
      background-color: #777777;
    }

      .button-alt:hover
      {
        background-color: #888888;
      }

      .button-alt:active
      {
        background-color: #999999;
      }

    .button-small
    {
    }

    .button-big
    {
    }

    .button-huge
    {
    }

  ul.style1
  {
    list-style: disc;
    padding-left: 1em;
  }

    ul.style1 li
    {
      padding-left: 0.5em;
    }

  ul.links
  {
  }

    ul.links li
    {
      display: inline-block;
    }

      ul.links li:before
      {
        display: inline;
        content: '\2022';
        opacity: 0.5;
      }

      ul.links li:first-child:before
      {
        display: none;
      }

  ol.style1
  {
    list-style: decimal;
    padding-left: 1.25em;
  }

    ol.style1 li
    {
      padding-left: 0.25em;
    }

  .byline
  {
    display: block;
    color: #aaa;
  }


/*********************************************************************************/
/* Icons                                                                         */
/* Powered by Font Awesome by Dave Gandy | http://fontawesome.io                 */
/* Licensed under the SIL OFL 1.1 (font), MIT (CSS)                              */
/*********************************************************************************/

  .fa
  {
    text-decoration: none;
  }

/*********************************************************************************/
/* Nav                                                                           */
/*********************************************************************************/

  #nav
  {
  }

    #nav a
    {
      position: relative;
      display: inline-block;
      color: #fff;
      width: 1em;
      height: 1em;
      line-height: 0.9em;
    }

      #nav a.icon:before
      {
        padding-right: 0;
      }

	nav a span {
   	font-family: 'Mukta Light', sans-serif;
	}

/*********************************************************************************/
/* Panels                                                                        */
/*********************************************************************************/

  #main
  {
    position: relative;
    overflow: hidden;
  }

  .panel
  {
    position: relative;
  }
      article header h1 {
        font: 0/0 a;
      }
      article header li {
        padding-left: 0.7em;
        list-style-type: none;
        font: 400 20px/35px 'Mukta Regular', sans-serif;
      }
      article header li:before {
        content: '+';
        display: inline-block;
        width: 0.7em;
        margin-left: -0.7em;
      }​
      article header a {
        color: currentcolor;
      }
      #ueber-uns .column--highlight {
        background: #a91d3b;
        color: #fff;
      }
      #ueber-uns .column--highlight a {
        color: #fff;
      }
      #impressum p.no-margin-after,
      #impressum ul,
      #impressum li
      {
        margin: 0;
      }
      #impressum p.margin-before {
        margin-top: 0.5em;
      }
      #impressum h3 {
        margin-top: 2em;
      }
      .block {
        clear: both;
        border-top: 15px solid #5b5a5a;
        padding: 30px 45px;
      }
        .block.block--small-border {
          border-color: #a91d3b;
          border-top-width: 3px;
          padding-left: 45px;
        }
        .block.block--small-border h3 {
          font-size: 22px;
          color: #a91d3b;
          margin-bottom: 10px;
        }
        .block.block--small-border ul,
        .block.block--small-border li:last-child
        {
            margin-bottom: 0;
        }
        .block p {
          font-size: 18px;
          line-height: 150%;
          margin-bottom: 0.5em;
        }
        .block p.impressum {
          font-size: 17px;
        }
        .block a {
          color: currentColor;
        }
        .block b {
          margin-top: 0.5em;
          display: inline-block;
          font-weight: 700;
          font-size: 17px;
        }
        .block li {
          line-height: 150%;
          margin-bottom: 15px;
          font-size: 18px;
        }

        /*
          The pseudo element below applies a noise pattern to the "me" image. It's
          meant to help mask blurriness, but you can remove it if you don't like it.
        */

        #ueber-uns .pic:before
        {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          background: url('images/overlay.png');
          width: 100%;
          height: 100%;
          z-index: 1;
        }

/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/

  #footer
  {
    color: #ccc;
    color: rgba(255,255,255,0.45);
  }

    #footer a
    {
      color: #ddd;
      color: rgba(255,255,255,0.65);
      -moz-transition: color .25s ease-in-out;
      -webkit-transition: color .25s ease-in-out;
      -o-transition: color .25s ease-in-out;
      -ms-transition: color .25s ease-in-out;
      transition: color .25s ease-in-out;
    }

    #footer a:hover
    {
      color: rgba(255,255,255,1.0);
    }



/****************** Google Fonts ******************/


/* mukta-300 - latin */
@font-face {
  font-family: 'Mukta Light';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/mukta-v7-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Mukta Light'), local('Mukta-Light'),
       url('../fonts/mukta-v7-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/mukta-v7-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/mukta-v7-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/mukta-v7-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/mukta-v7-latin-300.svg#Mukta') format('svg'); /* Legacy iOS */
}

/* mukta-regular - latin */
@font-face {
  font-family: 'Mukta Regular';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/mukta-v7-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Mukta Regular'), local('Mukta-Regular'),
       url('../fonts/mukta-v7-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/mukta-v7-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/mukta-v7-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/mukta-v7-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/mukta-v7-latin-regular.svg#Mukta') format('svg'); /* Legacy iOS */
}

/* mukta-700 - latin */
@font-face {
  font-family: 'Mukta Bold';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/mukta-v7-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Mukta Bold'), local('Mukta-Bold'),
       url('../fonts/mukta-v7-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/mukta-v7-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/mukta-v7-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/mukta-v7-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/mukta-v7-latin-700.svg#Mukta') format('svg'); /* Legacy iOS */
}
