/* standards */
html, body {
  font-family: 'Roboto', sans-serif;
  color:#858585;
  background: #ff6600;
  width: 100%; 
  height: 100%;
}

body {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;  
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;  
}

h1 {
  font-size:30px;
  font-weight:200;
  font-family: 'Roboto', sans-serif;
  font-style:normal;
  color:#ff6600;
  margin-top:0;
  margin-bottom:20px;
  line-height:42px;
}

p { 
   -moz-hyphens: auto;
   -o-hyphens: auto;
   -webkit-hyphens: auto;
   -ms-hyphens: auto;
   hyphens: auto;
   line-height:23px;
   margin-bottom:20px;
   text-align: justify;
   font-size:15px;
   font-weight:200;
}

b, strong {
  font-weight:400;
}

a {
  color: #858585;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #ff6600;
}

.container-full {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0px;
    padding-right: 0px;
}

.logo {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
	max-width:300px;
	width:100%;
}

.content {
  padding:40px 25px 40px 25px;
  background-color:#fff;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5); 
}

.zentriert {
  width: 100%;
}

.contactArea {
  padding: 40px 0 20px 0;
  border-top: 1px solid #ff6600;
}

.contactArea ul {
  display: block;
  padding: 20px 0px 20px 20px;
	margin-bottom:0;
}
.contactArea ul li {
  display: block;
  list-style: none;
  line-height: 2;
	letter-spacing: 0.05em;
}
.contactArea ul li i.fa {
  min-width: 20px;
  text-align: left;
}
.contactArea ul li span {
  min-width: 24px;
  display: inline-block;
}

.aussen {
  background: #f5f5f5;
}
.mitte {
  background: #eee;
}


@media (max-width: 767px) {
  body {
    display: block; 
    -webkit-align-items: none;
    -webkit-box-align: none;
    -ms-flex-align: none;
    align-items:none;  
  }
  
}