
@charset "utf-8";
/* Standard */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800');

:root {  font-size:16px;}
* {
   box-sizing:border-box;
   margin: 0;
}

html {
   min-height: 100%;
}
   
body {
   color:#000;
   font-family:'Open Sans', Helvetica, Arial, sans-serif;
   font-size:1em;
   line-height:1.3em;
}

#wrapper {
   position:relative;
   max-width:850px;
   margin: 1rem auto;
   border:solid 2px #00C8D3;
   background-color:#fff;
   overflow:hidden;
   padding: 0rem;
}
a {
   color:#000;
   text-decoration:none;
}
p {
   padding-bottom: 0.75rem;
}


h1 {
   margin: -0.5rem 0rem 0.2rem;
   font-size:2em;
   line-height:1.1em;
   color: #00C8D3;
}

h1 span {
   font-size:0.7em;
}

h2 {
   font-size:1em;
   line-height:1.2em;
   margin-bottom:0.2rem;
   color: #00C8D3;
}
h3 {
   font-size:1.063em;
   line-height:1.3;
   font-weight: 600;
   margin-bottom:0;
}

ul {
   padding: 0px 0px 16px 0px;
   list-style-image:url(); 
   list-style:none;
}

li {
   padding-left:12px;
}
ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 0.7500em;
  font-family: Helvetica, Arial, sans-serif;
  position: relative;
  float: left;
  top: 0px;
  margin-left: -12px;
}

/* Hebt Float left/right auf */

/* Ende Standard */


/* Header */
header {
  padding: 0rem;
  background: #00C8D3;
}
header aside{
  float: right;
  width: 291px;
  padding:6rem 2rem;
}
@-webkit-keyframes slidy {
0% { left: 0%; }
18% { left: 0%; }
36% { left: -100%; }
54% { left: -100%; }
62% { left: -200%; }
85% { left: -200%; }
100% { left: -300%; }
}

@keyframes slidy {
0% { left: 0%; }
18% { left: 0%; }
36% { left: -100%; }
54% { left: -100%; }
62% { left: -200%; }
85% { left: -200%; }
100% { left: -300%; }
}
header section { 
  overflow: hidden; 
  float: left;
  width: 555px;
}
header section figure img { width: 25%; float: left; }
header section figure { 
  position: relative;
  width:400%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  -webkit-animation-name:slidy;
  -webkit-animation-duration: 30s;
  -webkit-animation-delay: 5s;
  -webkit-animation-iteration-count: infinite;
  animation: 30s slidy infinite; 
}

/* Ende Header */
main{
  display: block;
  background: #00C8D3;
}
/* Article */
article {
  padding:1rem 2rem 0.5rem;
  float: left;
  width: 555px;
  background: #FFF;
}
article p strong{
  color: #00C8D3;
}
/* Ende Article */

/* Footer */
footer {
  padding: 0rem;
  font-size: 0.875em;
  line-height: 1.1;
  float: right;
  padding: 2rem 1rem;
  color: #fff;
  width: 291px;
}
footer p span{
  display: inline-block;
  width: 9px;
}
footer a{
  color: #fff;
}
footer aside{
  padding-top: 1rem;
  border-top: 3px solid #FFF;
}
/* 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:850px) {
   #wrapper {
    max-width: 585px;
   }
   header aside{
    float: none;
    width: 100%;
    padding: 1rem;
   }
   header aside img{
    width: 200px;
   }
   header section{
    float: none;
    width: 100%;
   }
   article{
    float: none;
    width: 100%;
    padding: 1rem;
   }
   footer{
    float: none;
    padding: 1rem;
   }
   p {
    text-align: left;
   }
  i br{
    display: none;
  }
}
@media only screen and (max-width:585px) {
   #wrapper {
      border:none;
      margin: 0 auto;
   }
}
/* Ende Responsive */
/* Tin developer */