/* =====================================
layout.css

- zentrales Stylesheet
- importiert Google Fonts
- importiert alle anderen Stylesheets
- Datum: 02.06.2020

=====================================
*/
body {
  font-size: 1rem;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
}
h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 2rem;
  color: rgba(32, 90, 159, 1.00);
}
h2 {
  font-size: 1.75rem;
  color: rgba(32, 90, 159, 1.00);
}
h3 {
  font-size: 1.5rem;
  color: rgba(230, 140, 50, 1.00);
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.00rem;
}
h6 {
  font-size: 0.75rem;
}
p {
  line-height: 1.5;
  hyphens: auto;
  text-align: left;
  margin: 1rem 0;
}
.col-lg-3 {
  position: relative;
  margin-bottom: 1rem;
}
.container {
  margin-top: 3rem;
}
.row {
  margin-top: 2rem;
}
.service img {
  display: block;
  margin: 0 auto;
}
.footer ul {
  text-align: center;
  list-style-type: none;
}
.footer li {
  display: inline-block;
  padding-left: 2em;
  padding-right: 2em;
  font-size: smaller;
  color: rgba(128, 128, 128, 1.00);
}
.service a, .footer li a {
  color: rgba(128, 128, 128, 1.00);
}
@media (min-width: 768px) {
  .navigation {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 1.00);
    padding: 1.5rem 0;
  }
}