html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #ffffff;
    font-family: Poppins;
    font-size: 16px;
    line-height: 28px;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Regular'),local('Poppins-Regular'),
 url('../media/font/poppins-regular.woff2') format('woff2'),
 url('../media/font/poppins-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: bold;
    src: local('Poppins Bold'),local('Poppins-Bold'),
 url('../media/font/poppins-700.woff2') format('woff2'),
 url('../media/font/poppins-700.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: normal;
    src: local('Poppins Italic'),local('Poppins-Italic'),
 url('../media/font/poppins-italic.woff2') format('woff2'),
 url('../media/font/poppins-italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: bold;
    src: local('Poppins Bold Italic'),local('Poppins-Italic'),
 url('../media/font/poppins-700italic.woff2') format('woff2'),
 url('../media/font/poppins-700italic.ttf') format('truetype');
}

p {
    font-family: Poppins;
    font-size: 16px;
    line-height: 28px;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #000000;
    font-weight: normal;
}

h1 {
    font-family: Poppins;
    font-size: 32px;
    color: #000000;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 32px;
}

h2 {
    font-family: Poppins;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: bold;
    line-height: 30px;
}

h3 {
    font-family: Poppins;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: normal;
    background-color: #6ed400;
    width: fit-content;
    padding: 2px 10px;
}

h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: bold;
}

h5 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: bold;
}

h6 {
    font-size: 14px;
    color: #000000;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
}

a {
    color: #62bd00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:focus {
    text-decoration: underline;
}

a:active {
    text-decoration: underline;
}

span {
    color: #000000;
}

ul {
    list-style-type: disc;
}

li {
    margin-top: 15px;
    margin-bottom: 15px;
}

label {
    color: #000000;
    font-weight: normal;
}

input {
    color: #000000;
    font-weight: normal;
    padding: 5px 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #808080;
    background-color: #ffffff;
    border-radius: 0;
    margin: 0;
}

input::placeholder {
    color: #808080;
    font-size: 16px;
}

textarea {
    color: #000000;
    font-weight: normal;
    padding: 5px 10px;
    height: 50px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #808080;
    background-color: #ffffff;
    border-radius: 0;
}

input[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #808080;
    position: relative;
    min-width: 20px;
    min-height: 20px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 0;
    padding: 0;
    margin-right: 5px;
    margin-left: 0;
    cursor: pointer;
}

input[type=checkbox]:checked {
    background-color: #00aaff;
}

input[type=checkbox]:checked:before {
    content: url('/media/Check.svg');
    color: #ffffff;
    position: absolute;
    left: 3px;
    width: 13px;
    height: 13px;
    top: 2px;
}

input[type=submit] {
    -webkit-appearance: none;
    -moz-appearance: none;
    border-style: none;
    cursor: pointer;
    margin-top: 30px;
    border-radius: 0;
}

select {
    padding: 5px 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 16px;
    border: 1px solid #808080;
    background-image: url('/media/SelectArrow.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 15px;
    background-color: #ffffff;
    border-radius: 0;
}

input[type=radio] {
    border: 1px solid #808080;
    width: 20px;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    background-color: #ffffff;
    padding: 0;
    margin-left: 0;
    margin-right: 5px;
}

input[type=radio]:checked {
    background-color: #00aaff;
}

input[type=radio]:checked:before {
    content: "";
    width: 7px;
    height: 7px;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
}

table {
    border-collapse: collapse;
}

th {
    border: 1px solid #000000;
    padding: 5px 10px;
    font-weight: bold;
    background-color: #f0f0f0;
    text-align: center;
}

td {
    padding: 5px 10px;
    border: 1px solid #000000;
}

tr:nth-child(odd) {
    background-color: #f0f0f0;
}

.Button {
    color: #ffffff;
    text-decoration: none;
    background-color: #00aaff;
    padding: 10px;
    cursor: pointer;
    margin-top: 15px;
    display: inline-flex;
    margin-bottom: 15px;
}

.Button:hover {
    background-color: #008dd4;
    text-decoration: none;
}

.Button:active {
    background-color: #008dd4;
    text-decoration: none;
}

.Button:focus {
    background-color: #008dd4;
    text-decoration: none;
}

.RechtsTextWrap {
    padding: 50px 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
}

@media (min-width: 501px) and (max-width: 999px) {
    .RechtsTextWrap {
        padding: 80px 25px;
        margin-left: auto;
        margin-right: auto;
        max-width: 1280px;
    }
}

@media (min-width:1000px) {
    .RechtsTextWrap {
        padding: 100px 50px;
        margin-left: auto;
        margin-right: auto;
        max-width: 1280px;
    }
}

.H1Recht {
    margin-bottom: 40px;
}

.H2Recht {
    margin-top: 50px;
    margin-bottom: 25px;
}

.BGLightGrey {
    background-color: #EBEBEB;
}

.HeaderTopWrap {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.HeaderTopIconWrap {
    display: flex;
    gap: 25px;
}

.HeaderContactIcon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    fill: #6ED400;
    margin-right: 10px;
}

.HeaderContactTxt {
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width:749px) {
    .HeaderContactTxt {
        display: none;
    }
}

.HeaderTopTxt {
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width:500px) {
    .HeaderTopTxt {
        font-size: 12px;
        line-height: 16px;
    }
}

.HeaderLWrap {
    position: relative;
    background-color: #ffffff;
    z-index: 5;
}

.HeaderMenuBG {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.HeaderLMobileMenu {
    position: absolute;
    width: calc(50% - 25px);
    right: 25px;
    top: 0;
    z-index: 10;
}

@media (max-width:600px) {
    .HeaderMenuBG {
        display: none;
    }
}

.HeaderLBG {
    position: relative;
}

.HeaderLBGImg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: 100% 100%;
}

.HeaderMenuBGMobile {
    position: absolute;
    width: 100%;
    z-index: 0;
    height: 85px;
    bottom: 0;
    left: 0;
}

@media (min-width:601px) {
    .HeaderMenuBGMobile {
        display: none;
    }
}

@media (max-width:600px) {
    .HeaderLogo {
        margin-right: 0;
        margin-top: 5px;
    }
}

.CenterObj {
    margin-left: auto;
    margin-right: auto;
}
