
@charset "utf-8";
/* Standard */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');

:root {  font-size:16px;}
* {
   box-sizing:border-box;
   margin: 0;
}

html {
   min-height: 100%;
}
   
body {
   color:#000;
   font-family:'Roboto', Helvetica, Arial, sans-serif;
   font-size:0.875em;
   line-height:1.3em;
}

#wrapper {
   position:relative;
   max-width:840px;
   margin: 1rem auto;
   border:solid 1px #999;
   background-color:#fff;
   overflow:hidden;
   padding:3rem 4.5rem;
}
a {
   color:#000;
   text-decoration:none;
}
p {
   padding-bottom: 1rem;
}


h1 {
   margin: 1rem 0rem 0.2rem;
   font-size:1.4em;
   text-align: center;
   line-height:1.1em;
}

h1 span {
   font-size:0.7em;
}
h1 + p{
  text-align: center;
  padding-bottom: 1.5rem;
}
h2 {
   font-size:1em;
   line-height:1.2em;
   margin-bottom:1rem;
}
h3 {
   font-size:1.35em;
   line-height:1.3;
   margin-bottom:0;
   text-align: center;
}

ul {
   padding: 0px 0px 16px 23px;
   list-style-image:url(); 
   list-style:none;
}

li {
   padding-left:23px;
}
ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.1500em;
  font-family: Helvetica, Arial, sans-serif;
  position: relative;
  float: left;
  top: 0px;
  margin-left: -23px;
}

/* Hebt Float left/right auf */

/* Ende Standard */


/* Header */
header {
  text-align: center;
  padding: 0rem 0 1.5rem;
}
header p{
  text-align: right;
}
header img{
  width: 245px;
}
/* Ende Header */

/* Article */
article {
  padding: 0rem;
}
/* Ende Article */

/* Footer */
footer {
  padding: 0rem;
}
footer p{
  color: #00421F;
  text-align: center;
  border-bottom: 1px solid #B2B2B2;
  margin-bottom: 0.75rem;
}
footer aside{
  font-size: 11px;
  line-height: 14px;
  color: #4B4B4B;
  float: left;
  margin-right: 28px;
}
footer aside span{
  display: inline-block;
  width: 35px;
}
footer aside:last-of-type{
  float: right;
  margin-right: 0;
}
footer aside a{
  color: #4B4B4B;
}
/* Ende Footer */
.clearfix:after {
   content: ".";
   clear: both;
   display: block;
   visibility: hidden;
   height: 0px;
}
a:hover {
   text-decoration:underline;
}
i{
  font-style: normal;
}
img {
   max-width:100%;
   height:auto;
   display: inline-block;
   vertical-align: middle;
}

/* Responsive */
@media only screen and (max-width:840px) {
   #wrapper {
      border:none;
      margin: 0 auto;
      padding: 2rem;
   }
   
   p {
    text-align: left;
   }
  i br{
    display: none;
  }
  ul{
    padding-left: 10px;
  }
  li{
    padding-left: 16px;
  }
  ul li:before{
    margin-left: -16px;
  }
  footer aside{
    float: none;
    font-size: 12px;
    margin-right: 0;
    width: 100%;
    margin-bottom: 1rem;
  }
  footer aside:last-of-type{
    float: none;
  }
}
@media only screen and (max-width:650px) {
  #wrapper{
    padding: 1rem;
  }

}
/* Ende Responsive */
/* Tin developer */