@charset "utf-8";
:root {
    --main-text-color: #3a434f;
    --positionstitel: #dc4405;
    --textlink: #3a434f;
    --subheadlines: #dc4405;
    --button-background: #fff;
    --button-font-color: #dc4405;
}
* {
    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;
}
.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{
    font-size: 2em;
    line-height: 1.1;
    margin: 0 0 1rem;
    color: #dc4405;
    text-align: center;
}
article section, header, footer {
    background: #fff;
    padding: 1.5rem 2rem;
    margin: 0 0 .5rem;
}
article {
    margin-top: .5rem;
}
article section, footer {
    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);
}
article ul {
    margin: .5rem 0 0 1.1rem;
    list-style: none;
}
article ul li:before {
    content: "\2022";
    color: #dc4405;
    float: left;
    margin: 0 0 0 -15px;
}
article .flex {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    align-items: center;
}
article .btn {
    display: flex;
    justify-content: center;
    margin-bottom: .5rem;
}
article .btn a.apply {
    color: var(--button-background);
    background: 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;
}
.fa-solid {
    font-size: 3.2rem;
    color: #dc4405;
}
.col-2 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
}
.col-2 .col-2-inner {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
}
.col-2 .col-2-inner .details h4 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}
.col-2 .col-2-inner .details p:last-of-type {
    margin: 0;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: var(--textlink);
    text-decoration: none;
    white-space: nowrap;
}
@-webkit-keyframes slidy {
0% { left: 0%; }
16.6% { left: 0%; }
33.2% { left: -100%; }
49.8% { left: -100%; }
66.4% { left: -200%; }
83% { left: -200%; }
100% { left: -300%; }
}
@keyframes slidy {
0% { left: 0%; }
16.6% { left: 0%; }
33.2% { left: -100%; }
49.8% { left: -100%; }
66.4% { left: -200%; }
83% { left: -200%; }
100% { left: -300%; }
}
.slider { overflow: hidden; }
.slider figure img { width: 25%; float: left; }
.slider figure { 
  position: relative;
  width:400%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  -webkit-animation-name:slidy;
  -webkit-animation-duration: 30s;
  -webkit-animation-delay: 5s;
  -webkit-animation-iteration-count: infinite;
  animation: 30s slidy infinite; 
}
@media only screen and (max-width: 51.188rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        hyphens: auto;
    }
    span{
        display: inline-block;
    }
}
@media only screen and (max-width: 48rem) {
    header {
        justify-content: center;
    }
    :is(.flex, .col-2) {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .col-2 .col-2-inner {
        width: 100%;
        align-items: center;
        flex-direction: column;
    }
    .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%;
    }
    h1{
        font-size: 1.6em;
    }
}