@charset "utf-8";

/* Standard */
:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #666666;
  font-family: Arial, sans-serif;
  font-size: 0.75em;
  line-height: 1.333em;

}

#wrapper {
  position: relative;
  max-width: 740px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0rem;
}

p {
  padding-bottom: 1rem;
}

h1 {
  margin: -5.5rem 0rem 2rem;
  font-size: 2.750em;
  line-height: 1.25em;
  background-color: #053775;
  padding-left: 2.5%;
  width: 72.5%;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #fff;
  font-weight: normal;
  position: relative;
  z-index: 9999;
}

h1 span {
  font-size: 0.667em;
  display: block;
  line-height: 1;
}

h2 {
  font-size: 1em;
  line-height: 1.25em;
  margin-bottom: 0.625rem;
}

h3 {
  font-size: 1.333em;
  line-height: 1.25em;
  margin-bottom: 0.625rem;
  color: #09366F;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #09366F;
}

a {
  color: #666666;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: bottom;
}

ul {
  padding: 0rem 0rem 1rem 0rem;
  list-style-image: url();
  list-style: none;
}

li {
  padding-left: 1.3rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1.3rem;
}

/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
}

/* Ende Standard */

/* Header */
header {
  padding: 0rem 0rem 0rem;
  position: relative;
}

header a {
  position: absolute;
  top: 8%;
  left: 7%;
  z-index: 9999;
  color: #333333;
  text-decoration: none;
  font-size: 1.417em;
  line-height: 1;
}

/* Ende Header */

/* Article */
article {
  padding: 3.125rem 3.125rem 0;
}

section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

section aside {
  width: 47.5%;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0;
  position: relative;
}

footer a {
  position: absolute;
  bottom: 23%;
  right: 5%;
  width: 29%;
  height: 39%;
  display: block;
  z-index: 9999;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:739px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 0;
  }

  article {
    padding: 1rem 1rem 0;
  }

  h1 {
    margin: -4.5rem 0rem 2rem;
    font-size: 2.750em;
    line-height: 1.25em;
    background-color: #053775;
    padding-left: 2.5%;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #fff;
    font-weight: normal;
    position: relative;
    z-index: 9999;
  }

  section aside {
    width: 100%;
  }

  i br {
    display: none;
  }

  p {
    text-align: left;
  }

}

/* Ende Responsive hieu */