@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700;900&display=swap');

:root {
  font-size: 16px;
}

/* Standard */
* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #000;
  font: 1em 'Titillium Web', sans-serif;
  line-height: 1.3;
}

#wrapper {
  position: relative;
  max-width: 840px;
  margin: 1rem auto;
  border: solid 1px #1DA6DF;
  background: #fff;
  overflow: hidden;
  padding: 0rem 0rem 0rem;
  text-align: left;
}

a {
  color: #000;
  text-decoration: none;
}

p {
  padding-bottom: 0.35rem;
}

h1 {
  margin: 0rem 0rem 0.5rem 0rem;
  padding: 1.25rem 0.75rem;
  font-size: 2.6em;
  line-height: 1.1em;
  background: #1DA6DF;
  color: #fff;
}

h1 small {
  font-size: 0.6em;
  line-height: 1.3;
  display: block;
}

h2 {
  font-size: 1.65em;
  line-height: 1.2em;
  padding: 0.6rem 0rem 0.5rem 0rem;
  text-align: center;
}

h3 {
  font-size: 1.25em;
  line-height: 1.2em;
  padding: 1.25rem 0rem 0.75rem 0rem;
  font-weight: normal;
}
h4 {
  font-size: 1.5em;
  line-height: 1.2em;
  padding: 0.2rem 1.5rem 1rem;
  font-weight: normal;
}
h4 strong{
  font-weight: 600;
  display: block;
  text-align: right;
}
ul {
  padding: 0rem 0rem 0.5rem 0rem;
  list-style: none;
}

li {
  padding-left: 1rem;
}

/*25A0 - square / 2010 - dash / 2212 - long dash*/
li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.3em;
  line-height: 1.3;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1rem;
}

/* Ende Standard */

/*main*/
main {
  display: block;
  float: right;
  width: 336px;
  padding: 2rem 1rem 3rem;
}

/*End main*/

/* Header */
header {
  padding: 0rem 0rem 2.5rem;
}

/* Ende Header */

/* Article */
article {
  padding: 0rem 0rem 0rem;
}

article p {
  text-align: justify;
}
p strong{
  font-weight: 600;
}
/* Ende Article */

/* Footer */
footer {
  padding: 0rem 0rem 0rem;
  float: left;
  width: 490px;
  background: #1BA6DF;
  color: #fff;
  height: 647px;
}
footer aside{
  position: relative;
}
footer aside a:first-of-type{
  position: absolute;
  bottom: 25%;
  left: 4%;
  width: 26%;
  height: 13%;
}
footer aside a:nth-of-type(2){
  position: absolute;
  bottom: 25%;
  left: 31%;
  width: 16%;
  height: 19%;
}
footer aside a:nth-of-type(3){
  position: absolute;
  bottom: 25%;
  left: 48%;
  width: 27%;
  height: 18%;
}
footer p:first-of-type, footer p:first-of-type a{
  color: #fff;
}
footer p:first-of-type{
  padding: 0rem 1.25rem 0.5rem;
  font-weight: 600;
}
footer p:first-of-type>a{
  display: inline-block;
  margin-right: 1.5rem;
}

footer p:first-of-type img{
  vertical-align: -8px;
  padding-right: 0.5rem;
}
footer>p:last-of-type{
  position: absolute;
  left: 1.25rem;
  bottom: 1rem;
  background: #fff;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  color: #000;
}
footer>p:last-of-type strong a, footer>p:last-of-type span{
  color: #1DA6DF;
}
footer>p:last-of-type span{
  font-weight: 600;
}
/* Ende Footer */

/* Responsive */
@media only screen and (max-width:839px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  main{
    padding: 1rem;
  }
  main, footer{
    float: none;
    width: 100%;
    height: 100%;
  }
  article p {
    text-align: left;
  }
  footer>p:last-of-type{
    position: static;
  }
}

/* Ende Responsive */
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}
