﻿
:root {
    --CSSColor: #333333;
    --HeadingColor: #EE1D23;
    --LinkColor: #EE1D23;
    --LinkHoverColor: #4C86A5;
    --ButtonLinkHoverColor: #000000;
    --ButtonLinkColor: #000000;
}

/* inter-300 - cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('../webfonts/Inter/inter-v19-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../webfonts/Inter/inter-v19-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../webfonts/Inter/inter-v19-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext_vietnamese-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


html {
    overflow-y: scroll;
    -ms-overflow-style: scrollbar;
    height: 100%;
}

body {
    min-height: 100%;
    font-family: 'Inter';
    font-size: 17px;
    line-height: 1.4;
    color: #333333;
    font-weight: 300;
    /* Used for the sticky footer, see: https://github.com/philipwalton/solved-by-flexbox/blob/master/assets/css/components/site.css */
    display: flex;
    flex-direction: column;
    position: relative;
    background: url('../../layout/images/background.webp') 0 0 no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #397F4C;
    background-attachment: fixed;
}


/* Used for the ModernUI IE to work in responsive mode */
@-ms-viewport {
    width: device-width;
}

img, embed, object, video {
    max-width: 100%;
    height: auto !important;
}

img.ignoreStandard {
    max-width: initial;
    height: initial !important;
}

/* ckEditor LayoutManager */

.container-fluid div {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container-fluid {
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    clear: both;
    overflow: hidden;
}

.container-fluid .row {
    margin-right: -20px;
    margin-left: -20px;
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9 {
    position: relative;
    min-height: 1px;
    padding-right: 20px;
    padding-left: 20px;
    float: left;
}

.col-lg-12 {
    width: 100%;
}

.col-lg-11 {
    width: 91.66666667%;
}

.col-lg-10 {
    width: 83.33333333%;
}

.col-lg-9 {
    width: 75%;
}

.col-lg-8 {
    width: 66.66666667%;
}

.col-lg-7 {
    width: 58.33333333%;
}

.col-lg-6 {
    width: 50%;
}

.col-lg-5 {
    width: 41.66666667%;
}

.col-lg-4 {
    width: 33.33333333%;
}

.col-lg-3 {
    width: 25%;
}

.col-lg-2 {
    width: 16.66666667%;
}

.col-lg-1 {
    width: 8.33333333%;
}

@media screen and (max-width: 850px) {

    .container-fluid .row {
        margin-right: 0;
        margin-left: 0;
    }

    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9 {
        float: none;
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
}

/* END ckEditor LayoutManager */

h1, h2, h3, h4, h5, h6 {
    color: var(--HeadingColor);
    font-family: 'Inter';
    font-weight: 400;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: left;
}

h1 {
    font-size: 38px;
    margin-bottom: 20px;
}

h1:first-of-type {
    margin-top: 0;
}

h2 {
    margin: 8px 0 20px 0;
    font-size: 32px;
}

ul + h2 {
    margin-top: 40px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}


p {
    margin: 0;
    padding: 0 0 25px 0;
}

b, strong {
    font-weight: 600;
}

a, a:visited {
    outline: none;
    color: var(--LinkColor);
    text-decoration: none;
}

a:hover {
    outline: none;
    text-decoration: underline;
    color: var(--LinkColor);
}

a:active, a:focus {
    outline: none;
}

a[href^="tel:"] {
    color: #000;
    text-decoration: none;
    cursor: default;
    font-weight: 300;
}

a:hover > img {
    opacity: 0.65;
}

hr {
    border-bottom: 0 none;
    border-top: 1px solid #E5E5E5;
    border-left: none;
    border-right: none;
    height: 1px;
    margin: 30px 0 30px 0;
}

.button {
    background-color: #808080;
    border: 1px solid #808080;
}

.button:hover {
    background-color: #aaaaaa;
    border: 1px solid #aaaaaa;
}

.fab,
.fal,
.far,
.fas,
.fad,
.fa-brands,
.fa-light,
.fa-regular,
.fa-solid,
.fa-thin {
    color: #878787;
}

.blue {
    color: #599DBF;
}

.green {
    color: #588C73;
}

.yellow {
    color: #F2E394;
}

.orange {
    color: #F2AE72;
}

.red {
    color: #C02942;
}

.brown {
    color: #8C4646;
}

.redFont {
    color: #ED1C24;
}

.showDesktop {
    display: block;
}

.showMobile {
    display: none;
}

/*********************************************************************************************************************************/
#container {
    position: relative;
    /* Used for the sticky footer */
    flex: 1 0 auto;
    padding: var(--space) var(--space) 0;
    width: 100%;
    height: 100%;
}

/* Used for the sticky footer */
#container::after {
    content: '\00a0'; /* &nbsp; */
    display: block;
    margin-top: var(--space);
    height: 0px;
    visibility: hidden;
}

@media (--break-lg) {
    #container {
        padding-top: var(--space-lg);
    }

    #container::after {
        margin-top: var(--space-lg);
    }
}

#container--full {
    padding: 0;
}

#container--full::after {
    content: none;
}
/* End used for the sticky footer */


#header {
 
}

#headerContent {
    position: relative;
    
}

#headerTopContent {
    max-width: 1230px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}


#navigationLogo {
    margin: 0;
    position: relative;
    text-align: center;
    margin-left: 25px;
}

#siteLogo {
    display: inline-block;
}

#siteLogo > a {
    background: url('../../layout/images/logo.svg') 0 0 no-repeat;
    background-size: 100%;
    height: 112px;
    width: 400px;
    display: block;
    text-indent: -9000px;
}

#languageSelection {
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 10001;
    color: #fff;
}

#languageSelection .fa-globe {
    margin-right: 10px;
    color: #fff;
}

#currentLanguage {
    text-align: right;
}

#currentLanguage:hover {
    color: #EE1D23;
    cursor: pointer;
}

#languageSelection ul {
    margin: 0;
    padding: 0;
}

#languageSelection li {
    list-style: none;
    margin: 0 0 5px 0;
    padding: 0;
}

#languageSelection li a.current {
    color: #EE1D23;
}

#languageSelection li a {
    color: #000;
}

#languageSelection li a:hover {
    color: #EE1D23;
    text-decoration: none;
}

#languageChoiceContainer {
    background-color: #fff;
    border: 1px solid #000;
    padding: 10px 15px 10px 15px;
    display: none;
}


#languageSelection:hover #languageChoiceContainer {
    display: inline-block;
}



#navigationWrapper {
    position: relative;
    background-color: #fff;
    border-bottom: 4px solid #539B41;
    margin-top: 10px;
}

.home #navigationWrapper {
    border-bottom: 4px solid #fff;
}

#navigationMain {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#menu-icon {
    display: none;
}


#headerSlider
{
    position: relative;
    z-index: 3;
}

#main {
    margin: 0 auto 0 auto;
    overflow: hidden;
    max-width: 1230px;
    background-color: #fff;
    height: 100%;
}

.home #main {
    background-color: transparent;
}


#main ul {
    position: relative;
    margin: 0 0 25px 0;
    padding: 0;
}

#main li
{
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0 0 7px 25px;
}


#main li:before {
    font: var(--fa-font-solid);
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 3px;
    color: #ED1C24;
}


/*-------------- Footer-Navigation -------------------------------------------------*/
#footer {
    /* Used for the sticky footer */
    flex: none;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    font-weight: 400;
}

#footerContent { 
    padding: 20px 35px 20px 35px;
    font-size: 25px;
    text-align: center;
}

#footerContent a {
    color: #fff;
    text-decoration: none;
}

#footerContent a:hover {
    color: #EE1D23;
}

#footerContent .fab,
#footerContent .fal,
#footerContent .far,
#footerContent .fas,
#footerContent .fa-brands,
#footerContent .fa-light,
#footerContent .fa-regular,
#footerContent .fa-solid,
#footerContent .fa-thin {
    font-size: 24px;
    margin-top: 5px;
    color: #fff;
}

#datenschutzLink
{
    font-size: 18px;
    margin-top: 25px;
    display: block;
}

#footer p
{
    margin: 0;
    padding: 0;
}

/* ------------  scroll-to-top  ----------------------- */
.scroll-to-top {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 45px;
    background-color: #fff;
    border-radius: 30%;
    font-size: 45px;
    color: #333;
    text-decoration: none;
}

.scroll-to-top:visited {
    color: #333;
}

.scroll-to-top:hover {
    color: #333;
    background-color: #aaa;
    text-decoration: none;
}


@media screen and (max-width: 1023.9px) {
    #navigationLogo {
        text-align: left;
        margin-left: 25px;
        display: inline-block;
        z-index: 9999;
    }

    #navigationWrapper,
    .home #navigationWrapper {
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        padding: 0;
        margin: 0;
        border: none;
        background: transparent;
        z-index: 9;
    }

    #navigationMain {
        display: inline-block;
        width: 100%;
    }

    #headerTopContent {
        right: 110px;
        z-index: 9999;
        top: 20px;
    }

    #navigationMain {
        float: right;
        z-index: 1;
        position: relative;
    }

    #menu-icon {
        float: right;
        display: block;
        text-decoration: none;
        position: relative;
        margin: 30px 35px 0 0;
        font-size: 40px;
        cursor: pointer;
    }

    #menu-icon .fa-bars {
        color: #fff;
    }

    #main-menu.hideNavigation {
        display: none;
    }

    #main-menu {
        top: 115px;
    }

    .showNavigation {
        display: inherit;
    }

    .showDesktop
    {
        display: none;
    }

    .showMobile {
        display: block;
    }
}


@media screen and (max-width: 825px) {

    #siteLogo > a {
        height: 45px;
        width: 150px;
    }

    #header {
        height: 80px;
    }

    #navigationLogo {
        margin-left: 15px;
    }

    #headerTopContent {
        top: 5px;
    }

    #menu-icon {
        margin: 15px 35px 0 0;
    }

    #main-menu {
        top: 80px;
    }
}



@media screen and (max-width: 500px) {

    h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 20px;
    }

    body {
        font-size: 17px;
    }

    #footerContent {
        padding: 20px 25px 20px 25px;
    }

    #headerTopContent {
        right: 70px;
    }
}

@media screen and (max-width: 480px) {

    #menu-icon {
        margin: 15px 15px 0 0;
    }
}

