@charset "utf-8";
:root {
    --main-text-color: #3a434f;
    --positionstitel: #1A305B;
    --textlink: #3a434f;
    --subheadlines: #1A305B;
    --button-background: #fff;
    --button-font-color: #1A305B;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: var(--main-text-color);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    background: #f4f4f4;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
#wrapper {
    position: relative;
    max-width: 51.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: transparent;
    padding: 0 20px;
}
header {
    position: relative;
    background: #fff;
    padding: 2rem 2rem 1rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
header .position {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    width: 60%;
}
header .position h2 {
    color: var(--positionstitel);
    font-size: 1.2rem;
    line-height: 120%;
    margin: 0 0 1rem;
}
.scheme_detail_data {
    width: 100%;
    display: table;
}
.scheme-additional-data {
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.scheme-additional-data {
    margin-bottom: 0;
    min-width: 100%;
}
ul.scheme-additional-data li {
    list-style: none;
    margin: 0 0 5px 0;
    line-height: 170%;
}
ul.scheme-additional-data :is(.fas, .far) {
    margin-right: 15px;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.8em;
    line-height: 1.1;
    color: #1A305B;
}
@-webkit-keyframes slidy {
0% { left: 0%; }
12.5% { left: 0%; }
25% { left: -100%; }
37.5% { left: -100%; }
50% { left: -200%; }
62.5% { left: -200%; }
75% { left: -300%; }
87.5% { left: -300%; }
100% { left: -400%; }
}

@keyframes slidy {
0% { left: 0%; }
12.5% { left: 0%; }
25% { left: -100%; }
37.5% { left: -100%; }
50% { left: -200%; }
62.5% { left: -200%; }
75% { left: -300%; }
87.5% { left: -300%; }
100% { left: -400%; }
}
.slider { overflow: hidden; }
.slider figure img { width: 20%; float: left; }
.slider figure { 
  position: relative;
  width:500%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  -webkit-animation-name:slidy;
  -webkit-animation-duration: 20s;
  -webkit-animation-delay: 3s;
  -webkit-animation-iteration-count: infinite;
  animation: 20s slidy infinite; 
}
.iframe {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  border: none;
}

.iframe iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: none;
}
article {
    margin-top: .5rem;
}
article section {
    background: #fff;
    padding: 1.5rem 2rem;
    margin: 0 0 .5rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0 .125rem .5rem;
}
article p {
    margin: 1rem 0;
}
article h4 {
    font-size: 1.2rem;
    color: var(--subheadlines);
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}
article ul {
    margin: .5rem 0 0 1.1rem;
    list-style: none;
}
article ul li:before {
    content: "\2022";
    color: #1A305B;
    float: left;
    margin: 0 0 0 -15px;
}
article section.orange {
    background: #1A305B;
}
article section.orange .fa-solid {
    color: #fff;
}
article section.orange p {
    color: #fff;
}

article .flex {
    display: block;
    justify-content: flex-start;
    gap: 1rem;
    align-items: center;
}
article .btn {
    display: flex;
    justify-content: center;
    margin-bottom: .5rem;
}
article .btn a.apply {
    background: var(--button-background);
    color: var(--button-font-color);
    text-align: center;
    padding: .5rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 1rem 0 0;
}
article figure {
    margin: 0;
}
article figure .fa-solid {
    font-size: 3.2rem;
    color: #1A305B;
}
article .col-2 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
}
article .col-2 .col-2-inner {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
}
article .col-2 .col-2-inner .details h4 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}
article .col-2 .col-2-inner .details p {
    margin: 0;
}
.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: var(--textlink);
    text-decoration: none;
    white-space: nowrap;
}
footer {
    background: #1A305B;
    margin-top: .5rem;
    padding: 1.5rem 1rem;
}
footer p {
    color: #fff;
    text-align: center;
}
footer a.url {
    color: #fff;
}
footer .social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0 0;
}
footer .social .item {
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .social .item .fa-brands {
    color: #fff;
    font-size: 2rem;
}
footer a{
    color: #fff!important;
}
@media only screen and (max-width: 51.188rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        hyphens: auto;
    }
}
@media only screen and (max-width: 48rem) {
    header {
        flex-direction: column;
        align-items: center;
    }
    header .position {
        align-items: center;
        width: 100%;
    }
    header .position h1 {
        text-align: center;
    }
    ul.scheme-additional-data {
        min-width: 100%;
        text-align: center;
    }
    article :is(.flex, .col-2) {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    article .col-2 .col-2-inner {
        width: 100%;
        align-items: center;
        flex-direction: column;
    }
    article .col-2 .col-2-inner .details :is(h4, p) {
        text-align: center;
    }
}
@media only screen and (max-width: 30rem) {
    article section {
        padding: 1rem;
    }
    article .btn a.apply {
        width: 100%;
    }
}