﻿
:root {
    --CSSColor: #2C2C84;
    --HeadingColor: #C66E1D;
    --LinkColor: #C66E1D;
    --LinkHoverColor: #2C2C84;
}


/* inter-300 - latin */
@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('../../../web/fonts/Inter/inter-v12-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@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('../../../web/fonts/Inter/inter-v12-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@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('../../../web/fonts/Inter/inter-v12-latin-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', sans-serif;
    font-size: 17px;
    letter-spacing: 0.1px;
    line-height: 1.4;
    color: var(--CSSColor);
    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;
    min-height: 100%;
    flex-direction: column;
    position: relative;
}


/* Used for the ModernUI IE to work in responsive mode */
@-ms-viewport {
    width: device-width;
}

img, embed, object {
    max-width: 100%;
    height: auto !important;
}

video {
    max-width: 100%;
    height: auto !important;
    /* Some videos hav a black line on the right side without this*/
    clip-path: inset(1px 1px);
}

/* 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: 'Barlow', sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: left;
    letter-spacing: 0.3px;
}

h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

h1:first-of-type {
    margin-top: 0;
}

h2 {
    margin: 0 0 20px 0;
    font-size: 32px;
}

ul + h2 {
    margin-top: 40px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 25px;
    font-weight: 300;
}

h5 {
    font-size: 20px;
    font-weight: 300;
}

h6 {
    font-size: 16px;
    font-weight: 300;
}

p {
    margin: 0;
    padding: 0 0 25px 0;
}

b, strong {
    font-weight: 700;
}

a, a:visited {
    outline: none;
    color: var(--LinkColor);
    text-decoration: none;
}

#main a {
    padding: 0 0 1px 0;
    text-decoration: underline;
}

a:hover {
    outline: none;
    text-decoration: none;
    color: var(--LinkHoverColor);
}

a:active, a:focus {
    outline: none;
}

#main a[href^="tel:"] {
    color: var(--LinkColor);
    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;
}

#main .button,
#main .button:visited {
    background: none;
    border: 1.5px solid #C66E1D;
    border-radius: 0;
    margin: 0 0 20px 0;
    padding: 8px 15px 8px 15px;
    color: #C66E1D;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
    cursor: pointer;
    text-transform: uppercase;
    transform: skew(-15deg);
}

#main .button:hover {
    color: #fff;
    background-color: #2C2C84;
    border: 1.5px solid #fff;
}

#main .SpalteHintergrundOrange .button {
    border: 1.5px solid #2C2C84;
    color: #2C2C84;
}

#main .SpalteHintergrundOrange .button:hover {
    border: 1.5px solid #fff;
    color: #fff;
}

.fab,
.fal,
.far,
.fas,
.fad,
.fa-brands,
.fa-light,
.fa-regular,
.fa-solid,
.fa-thin {
    color: #2C2C84;
}

.blue {
    color: #599DBF;
}

.green {
    color: #588C73;
}

.yellow {
    color: #F2E394;
}

.orange {
    color: #F2AE72;
}

.red {
    color: #C02942;
}

.brown {
    color: #8C4646;
}

.leadTitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C66E1D;
    font-size: 18px;
    font-weight: 700;
}

.HintergrundBlauTriangelUntenRechtsWrapper {
    background-color: #EAEDFA;
    padding-bottom: 45px;
}

.beContainerBlock.HintergrundBlauTriangelUntenRechts,
.HintergrundBlauTriangelUntenRechts {
    background: linear-gradient(90deg, rgba(44,44,132,1) 0%, rgba(17,17,75,1) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 83% 75%, 0 98%, 0% 50%);
    color: #fff;
    padding: 45px 0 175px 0;
}

.HintergrundBlauTriangelUntenRechts h3
{
    color: #fff;
}

.HintergrundHellblau {
    background-color: #EAEDFA;
    padding-bottom: 45px !important;
}

.SpalteHintergrundHellblauWrapper {
    background-color: #EAEDFA;
}

[data-columncount="2"] > .beContainerColumn.SpalteHintergrundHellblau {
    background-color: #EAEDFA;
    color: #fff;
}

[data-columncount="2"] > .beContainerColumn.SpalteHintergrundOrange {
    background-color: #C66E1D;
    color: #fff;
}

.SpalteHintergrundOrange h2 {
    color: #fff;
}

.SpalteHintergrundOrange .leadTitle {
    color: #fff;
}




/*********************************************************************************************************************************/
#container {
    margin: 0 auto;
    /* Used for the sticky footer */
    flex: 1 0 auto;
    padding: var(--space) var(--space) 0;
    max-width: 1920px;
    width: 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 {
    position: absolute;
    top: 0;
    z-index: 99;
    right: 0;
    left: 0;
    top: 0;
    height: 140px;
    max-width: 1920px;
    margin: 0 auto;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0));
}


#headerContent {
    position: relative;
    margin: 0 auto;
    max-width: 1920px;
    padding: 0;
}

#headerTopContent {
    right: 70px;
    top: 12px;
    color: #fff;
    position: absolute;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 17px;
}

#headerTopContent a,
#headerTopContent a:visited {
    color: #fff;
}

#headerTopContent a:hover {
    color:#E6E6F4;
    text-decoration: none;
}

#topContent p {
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: top;
}

#topContent ul
{
    margin: 0;
    padding: 0;
}

#topContent li {
    list-style: none;
    display: inline-block;
    margin-right: 15px;
}

#topContent li:last-child {
    margin-right: 0;
}


#topContent .fab,
#topContent .fal,
#topContent .far,
#topContent .fas,
#topContent .fa-brands,
#topContent .fa-light,
#topContent .fa-regular,
#topContent .fa-solid,
#topContent .fa-thin {
    font-size: 20px;
    color: #808080;
    margin-left: 12px;
}

#topContent .fa-xs,
#topContent .fa-sm,
#topContent .fa-lg,
#topContent .fa-2x,
#topContent .fa-3x,
#topContent .fa-5x,
#topContent .fa-7x,
#topContent .fa-10x {
    font-size: inherit;
}

#topContent .fab:hover,
#topContent .fal:hover,
#topContent .far:hover,
#topContent .fas:hover,
#topContent .fa-brands:hover,
#topContent .fa-light:hover,
#topContent .fa-regular:hover,
#topContent .fa-solid:hover,
#topContent .fa-thin:hover {
    color: #aaaaaa;
}

#headerTopContent #navigation2 a,
#headerTopContent #navigation2 a:visited {
    color: #e67e22;
    font-style: italic;
    font-size: 20px;
}

#headerTopContent #navigation2 a:hover {
    color: #E6E6F4;
    text-decoration: none;
}

#headerTopContent #navigation2 .sm-clean {
    padding: 0 0 0 0;
}

#headerTopContent #navigation2 .sm-clean a,
#headerTopContent #navigation2 .sm-clean a:visited,
#headerTopContent #navigation2 .sm-clean a:hover,
#headerTopContent #navigation2 .sm-clean a:focus,
#headerTopContent #navigation2 .sm-clean a:active,
#headerTopContent #navigation2 .sm-clean a.highlighted {
    padding: 5px 10px;
}

#navigationLogo {
    background-color: #2c2c84;
    display: inline-block;
    margin: 0;
    position: relative;
    z-index: 9999;
    height: 760px;
    width: 45%;
    clip-path: polygon(0 0, 100% 0, 35% 100%, 0% 100%);
}

@media screen and (max-width: 1919.9px) {
    #navigationLogo {
        height: 39vw;
    }
}

@media screen and (max-width: 1600px) {
    #navigationLogo {
        height: 37vw;
    }
}

@media screen and (max-width: 1279.9px) {
    #navigationWrapperNav2 {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    #navigationLogo {
        height: 35vw;
    }
}
@media screen and (max-width: 600px) {
    #navigationLogo {
        height: 140px;
        width: 55%;
        clip-path: polygon(0 0, 100% 0, 55% 100%, 0% 100%);
    }
}

@media screen and (max-width: 500px) {
    #navigationLogo {
        width: 200px;
        height: 130px;
    }
}

#siteLogo > a {
    background: url('../../layout/images/logo.svg') 0 0 no-repeat;
    background-size: 100%;
    height: 70px;
    width: 280px;
    display: block;
    text-indent: -9000px;
    margin-top: 7%;
    margin-left: 20%;
}

#languageSelection {
    line-height: 1.2;
    font-size: 20px;
    margin-top: 2px;
}

#languageSelection ul,
#languageSelection li {
    margin: 0;
    padding: 0;
}

#languageSelection li {
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #fff;
}

#languageSelection li:last-child {
    margin-right: 0;
    padding-right: 0;
    border: none;
}

#languageSelection li a,
#languageSelection li a:visited {
    color: #fff;
    text-decoration: none;
}

#languageSelection li a:hover {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
}

#languageSelection li a.current {
    font-weight: 700;
}

#navigationWrapper {
    position: absolute;
    right: 0;
    left: 0;
    top: 58px;
}

#navigationMain {
    float: right;
}

#menu-icon {
    display: none;
}

#headerSlider {
    max-width: 1920px;
    padding-left: 400px;
    overflow: hidden;
}

@media screen and (max-width: 1850px) {
    #headerSlider {
        padding-left: 350px;
    }
}

@media screen and (max-width: 1600px) {
    #headerSlider {
        padding-left: 250px;
        margin-top: -40px;
    }
}

@media screen and (max-width: 1024px) {
    #headerSlider {
        padding-left: 80px;
        margin-top: -100px;
    }
}

.swiper-container {
    width: 100%;
    clip-path: polygon(220% 0%, -350% 0%, 78% 100%);
}


#main {
    clear: both;
    margin: 40px auto 0 auto;
    overflow: hidden;
    max-width: 1260px;
    padding: 0 25px 30px 25px;
    position: relative;
}

.ModuleBlockEditor #main {
    max-width: 1920px;
    padding: 0;
}

#main ul {
    position: relative;
    margin: 0 0 25px 0;
    padding: 0;
}

#main li
{
    position: relative;
    list-style: none;
    margin: 0;
    padding: 4px 0 7px 20px;
}

#main li:before {
    content: ' ';
    position: absolute;
    left: 0;
    top: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #2C2C84;
}


/*-------------- Footer-Navigation -------------------------------------------------*/

#footerWrapperLightBlue {
    background-color: #EAEDFA;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

#footer {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    background: linear-gradient(90deg, rgba(44,44,132,1) 0%, rgba(17,17,75,1) 100%);
    clip-path: polygon(20% 0, 210% 100%, -60% 100%);
    /* Used for the sticky footer */
    flex: none;
    z-index: 2;
    color: #fff;
}


#footerContent {
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 40px 40px 40px;
    font-size: 15px;
    font-weight: 300;
}

#footerContent a {
    color: #fff;
    text-decoration: none;
    border: none;
}

#footerContent a:hover {
    color: #C66E1D;
}

#footerContent a[href^="tel:"]:hover {
    color: #fff;
}

#footerContent h2 {
    font-size: 28px;
    color: #fff;
    font-weight: 300;
}

#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;
}

#footerContent p
{
    margin: 0;
    padding: 0;
}

#footerLinks {
    position: relative;
    list-style: none;
    margin: 41px 0 0 0;
    padding: 0;
}

#footerLinks li {
    list-style: none;
    display: inline-block;
    margin-right: 15px;
}

#footerLinks li:last-child {
    margin-right: 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: 1919.9px) {
    #main {
        margin: 100px auto 0 auto;
    }
}


@media screen and (max-width: 1380px) {
    #siteLogo > a {
        margin-left: 25px;
    }

}


@media screen and (max-width: 1279.9px) {

    #navigationWrapper {
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        padding: 0;
    }

    #headerTopContent {
        right: 110px;
        z-index: 9999;
        top: 20px;
    }

    #navigationMain {
        float: none;
        z-index: 1;
        position: relative;
    }

    #menu-icon {
        float: right;
        display: block;
        text-decoration: none;
        position: relative;
        margin: 5px 35px 0 0;
        font-size: 40px;
        cursor: pointer;
    }

    #menu-icon .fa-bars {
        color: #fff;
        font-weight: 700;
    }

    #main-menu.hideNavigation {
        display: none;
    }

    #main-menu {
        top: 75px;
    }

    .showNavigation #navigationLogo {
        height: 75px;
        clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
    }

    .showNavigation #siteLogo > a {
        height: 50px;
        width: 176px;
        margin-top: 16px;
    }

    #footer {
        clip-path: polygon(20% 0, 350% 100%, -110% 100%);
    }

    #footer .layout-column {
        width: 100%;
    }
}

@media screen and (max-width: 1023.9px) {
    #siteLogo > a {
        height: 50px;
        width: 175px;
    }

    #topContent {
        display: none;
    }
}

@media screen and (max-width: 850px) {
    .beContainerBlock.HintergrundBlauTriangelUntenRechts, .HintergrundBlauTriangelUntenRechts {
        background: linear-gradient(90deg, rgba(44,44,132,1) 0%, rgba(17,17,75,1) 100%);
        clip-path: polygon(0 0, 100% 0, 100% 95%, 83% 90%, 0 98%, 0% 50%);
        color: #fff;
        padding: 45px 0 120px 0;
    }
}



@media screen and (max-width: 600px) {

    .leadTitle {
        font-size: 15px;
    }


    h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    body {
        font-size: 16px;
    }

    #headerSlider {
        margin-top: -120px;
    }

    #main {
        margin: 50px auto 0 auto;
    }

    #footer {
        clip-path: polygon(20% 0, 500% 100%, -200% 100%);
    }

    #footerLinks li {
        display: block;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 500px) {

    #siteLogo > a {
        height: 35px;
        width: 125px;
    }

    .showNavigation #siteLogo > a {
        height: 35px;
        width: 125px;
    }

    p {
        word-break: break-word;
    }
}

@media screen and (max-width: 400px) {

    #headerTopContent {
        right: 35px;
        z-index: 9999;
        top: 65px;
    }

    .showNavigation #headerTopContent {
        display: none;
    }
 
}



@media print {
    html, body {
        width: 210mm;
        -webkit-print-color-adjust: exact;
    }

    #navigationMain {
        display: none;
    }

    #headerTopContent {
        display: none;
    }

    .scroll-to-top {
        display: none;
    }

    #blogDetailShareIconsContainer {
        display: none;
    }

    #container {
        max-width: 210mm;
        margin: 0;
        display: inline-block;
        flex: none;
    }

    #header {
        max-width: 210mm;
        margin: 0;
        position: relative;
        height: 0;
    }

    #headerContent {
        max-width: 210mm;
    }

    #navigationLogo {
        height: 140px;
        width: 55%;
        clip-path: polygon(0 0, 100% 0, 55% 100%, 0% 100%);
    }

    #siteLogo > a {
        height: 50px;
        width: 175px;
        margin-left: 25px;
    }

    #headerSlider {
        max-width: 210mm;
        padding-left: 80px;
        margin-top: -180px !important;
    }

    #headerSlider img {
        max-width: 190mm;
    }

    #main {
        clear: both;
        margin: 40px 0 0 0;
        overflow: hidden;
        max-width: 210mm;
    }

    #footer {
        max-width: 210mm;
        margin: 30px 0 0 0 !important;
        clip-path: polygon(20% 0, 500% 100%, -200% 100%);
    }

    #footerContent {
        max-width: 210mm;
        padding: 50px 30px 30px 30px;
    }

    #footerLinks li {
        display: block;
        margin-bottom: 15px;
    }

    .container-fluid .row {
        margin-right: 0;
        margin-left: 0;
    }

    #footerContent .col-lg-1,
    #footerContent .col-lg-10,
    #footerContent .col-lg-11,
    #footerContent .col-lg-12,
    #footerContent .col-lg-2,
    #footerContent .col-lg-3,
    #footerContent .col-lg-4,
    #footerContent .col-lg-5,
    #footerContent .col-lg-6,
    #footerContent .col-lg-7,
    #footerContent .col-lg-8,
    #footerContent .col-lg-9 {
        float: none;
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
}