
@charset "utf-8";
/* Standard */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i');

:root {  font-size:16px;}
* {
   box-sizing:border-box;
   margin: 0;
}

html {
   min-height: 100%;
}
   
body {
   color:#403F41;
   font-family:'Open Sans', Helvetica, Arial, sans-serif;
   font-size:0.875em;
   line-height:1.3em;
}

#wrapper {
   position:relative;
   max-width:757px;
   margin: 1rem auto;
   border:solid 1px #000;
   background-color:#fff;
   overflow:hidden;
   padding:5rem 5rem;
}
a {
   color:#403F41;
   text-decoration:none;
}
p {
   padding-bottom: 1rem;
}


h1 {
   margin: 0rem 0rem 1rem;
   font-size:1.125em;
   font-weight: normal;
   font-family:'Roboto Condensed', Helvetica, Arial, sans-serif;
   line-height:1.2em;
}

h1 span {
   font-size:0.7em;
}

h2 {
   font-size:1.063em;
   line-height:1.2em;
   margin-bottom:0;
   font-family:'Roboto Condensed', Helvetica, Arial, sans-serif;
}
h3 {
   font-size:1em;
   line-height:1.3;
   margin-bottom:0;
}

ul {
   padding: 2px 0px 16px 0px;
   list-style-image:url(); 
   list-style:none;
}

li {
   padding-left:18px;
}
ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.000em;
  font-family: Helvetica, Arial, sans-serif;
  position: relative;
  float: left;
  top: 0px;
  margin-left: -18px;
}

/* Hebt Float left/right auf */

/* Ende Standard */


/* Header */
header {
  padding: 0rem;
}
/* Ende Header */

/* Article */
article {
  padding: 0rem 0 3.5rem;
}
article section{
  float: right;
  width: 300px;
}
article section:last-of-type{
  float: left;
  width: 275px;
}
article section:last-of-type img{
  margin-bottom: 20px;
}
/* Ende Article */

/* Footer */
footer {
  padding: 0rem;
  position: relative;
}
footer img{
  position: absolute;
  right: 0;
  bottom: 3px;
  width: 80px;
}
footer aside{
  font-size: 0.875em;
}
footer aside span{
  font-weight: 600;
}
/* 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:757px) {
   #wrapper {
      border:none;
      margin: 0 auto;
      padding: 2rem;
   }
   
   p {
    text-align: left;
   }
  i br{
    display: none;
  }
  article{
    padding-bottom: 1rem;
  }
  article section:last-of-type,
  article section{
    float: none;
    width: 100%;
  }
  article section:last-of-type img{
    float: left;
    margin-right:20px;
    height: 140px;
  }
  article section:last-of-type img:last-of-type{
    margin-right: 0;
  }
  footer img{
    position: static;
    margin-top: 1rem;
  }
}
@media only screen and (max-width:600px) {
  #wrapper {
    padding: 1rem;
  }
}
@media only screen and (max-width:446px) {
  article section:last-of-type img{
    margin: 0 0 1rem;
    width: 100%;
    height: auto;
  }
}
/* Ende Responsive */
/* Tin developer */