@charset "utf-8";

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

@font-face {
  font-family: 'UniCredit';
  src: url('UniCredit-Bold.woff2') format('woff2'),
      url('UniCredit-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'UniCredit';
  src: url('UniCredit.woff2') format('woff2'),
      url('UniCredit.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

html {
  min-height: 100%;
}

body {
  color: #000;
  font-family: 'UniCredit';
  font-size: 1em;
  line-height: 1.3em;
  
}

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

p {
  padding-bottom: 1rem;
}

h1 {
  margin: 0.75rem 0rem 2rem;
  font-size: 35px;
  line-height: 1.1em;
}

hr {
  width: 100%;
  height: 1px;
  border: none;
  margin: 0 0 2rem;
  background: #E8E8E8;
}

h1 span {
  font-size: 0.7em;
}

h2 {
  font-size: 22px;
  line-height: 1.1em;
  margin-bottom: 1rem;
}

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

a:hover {
  text-decoration: underline;
}

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

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

li {
  padding-left: 1.5rem;
}

ul li:before {
  content: "●";
  display: inline-block;
  font-size: 0.7500em;
  position: relative;
  float: left;
  top: 0px;
  margin-left: -0.95rem;
}

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

/* Ende Standard */

/* Header */

main {
  display: block;
  width: 656px;
}

header {
  padding: 0rem 0rem 0rem;
}

/* Ende Header */

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

article section:first-of-type {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.5rem;
}

article > section:last-of-type {
  margin: 2rem 0;
}

article > section:last-of-type a {
  color: #fff;
  display: inline-block;
  border-color: #007A91;
  background-color: #007A91;
  font-weight: bold;
  border-width: 1px;
  border-style: solid;
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  padding: 0.7rem 1.4rem;
  border-radius: 5px;
}

article > section:last-of-type a:hover {
  text-decoration: none;
  color: #007A91;
  background: #fff;
}

article > p:nth-of-type(2), article > ul:nth-of-type(1) {
  padding-bottom: 2rem;
}

article > p:last-of-type {
  padding-bottom: 2rem;
}

aside {
  width: 45%;
}

aside:last-of-type {
  width: 55%;
}

aside p {
  padding-bottom: 0.4rem;
}

aside p strong {
  display: block;
  padding-bottom: 0.2rem;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0rem 0rem 0rem;
  width: 330px;
  position: absolute;
  right: 2rem;
  top: 5rem;
}

/* Ende Footer */

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

  p {
    text-align: left;
  }

  i br {
    display: none;
  }

  main {
    width: auto;
  }
  
  article section:first-of-type {
    display: block;
  }
  
  aside {
    width: auto !important;
  }
  footer {
    margin: 0 -1rem -1rem;
    width: auto;
    position: static;
  }

}

@media only screen and (max-width:700px) {
  iframe {
    height: 250px !important;
  }
}

/* Ende Responsive */
