/* fonts */




/* Externe CSS für alle Common Designs */
*{
    margin:0;
    padding: 0;
    font-weight: normal;
}
body {
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.2;
    color: rgba(0,0,0,0.9);
    background: white;
    width: 100%;
}
article{
    position: relative;
    width: 100%;
    max-width: 999px;
    margin: 0 auto 1rem;    
    box-sizing: border-box;
}
body > article{
    border: 1px solid #ccc;
}
.logo, .stellentitel{
    box-sizing: border-box;
    position: relative;
    padding: 1rem 3rem;
}
h1,h3{
    color: #006296;
}
header,main,footer{
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 0rem 3rem 0;
}
header{
    padding: 0;
    margin-bottom: 1rem;
    display: none;
}

/****************************************** BILDWECHSLER ***************************/
.slider{
	position: relative;
	margin: 0;
	background: none;
	border: none;
}
.slider figure{
	position: absolute;
	display: inline-block;
	top: 0;
	left: 0;
	z-index: 1;
    opacity: 0;
    animation: wechseln 15s infinite;    
}
.slider figure:last-of-type {
	position: relative;
}
@keyframes wechseln {
    0% {opacity: 0;}
   20% {opacity: 1;}
   40% {opacity: 1;}
   60% {opacity: 0;}
  100% {opacity: 0;}
}
.slider figure:nth-of-type(2) {
  animation-delay: 5s;
}
.slider figure:nth-of-type(3) {
  animation-delay: 10s;
}




footer{
    background: url(windmw/Wind_MW_Welle_Footer_3.png) left top no-repeat transparent;
    background-size: 100% auto;
    background-color: #006296;
    margin-bottom: 0;
    padding: 1.5rem 3rem;
    color: #fff;
    border-top: 10px solid #c8dce7;
}
footer article{
    margin-bottom: 0;
}
footer h3, footer a, footer a:hover{
    color: #fff;
    text-decoration: none;
}
footer a:hover{
    text-decoration: underline;
}
img{
    width: 100%;
    height: auto;
}
h1{
    font-weight: bold;
    width: 100%;
    max-width: 999px;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 250%;   
    box-sizing: border-box;
    padding: 1rem 3rem;
}
h3{
    font-size: 125%;
    margin-bottom: 0.5rem;
    font-weight: normal;
}
b,strong{
    font-weight: 700;
}
ul{
    padding-left: 1.2rem;
    text-indent: 0rem;
}
p{
    margin-bottom: 0.5rem;
}
li{
    margin-bottom: 0.25rem;
}

@media(min-width:600px){
    .logo{
        width: 35%;
        float: none;
        clear: both;
        padding-top: 3rem;
    }
    header{
        display: block;
        margin-top: 3rem;
    }
    
}
@media print{
    header{
        display: block;
    }
}
