/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
/* VARS */
:root {
    --cyan-gradient: linear-gradient(135deg, #d5dd7e 0%, var(--cyan) 100%);
    --green-gradient: linear-gradient(135deg, var(--green) 0%, var(--cyan) 100%);
    --green-gradient-reverse: linear-gradient(160deg, rgba(0,158,227,1) 44%, rgba(150,203,156,1) 100%);
    --cyan: #009ee3;
    --lime: #d5dd7e;
    --green: #96CB9C;
    --cyan-green: #45aecc;
    --light-cyan: #82cff5;
    --dark-gray: #666;
    --light-bg-color: #EFF6FD;
    --bg-color: #e3eefa;
    --light-gray: #ccc;
    --dark-cyan: #032D40;
    --dark-cyan-a: #043e59;
    --br: 20px;
    --swiper-navigation-size: 30px;
    --swiper-theme-color: #fff;
    /* --transition: all ease .35s!important;*/
    --transition: all ease .35s!important;
}
.collapse:not(.show) {
    display: none;
}
/* Fonts */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url('/static/fonts/MaterialIcons-Regular.woff2') format('woff2');
}
/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local(''),
    url('/static/fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('/static/fonts/roboto-v30-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-700 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: local(''),
    url('/static/fonts/roboto-v30-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('/static/fonts/roboto-v30-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* montserrat-regular - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: local(''),
    url('/static/fonts/montserrat-v25-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('/static/fonts/montserrat-v25-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-700 - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: local(''),
    url('/static/fonts/montserrat-v25-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('/static/fonts/montserrat-v25-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


/* GLOBAL */

body, html {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    background: var(--bg-color);
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    color: var(--dark-cyan);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    line-height: 1.65;
    max-width: 100%;
    width: 100%;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    scroll-behavior: smooth;
    padding: 0!important;

}
img {
    max-width: 100%;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
.material-icons {
    font-family: 'Material Icons'!important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
}
.shadow {
    /*box-shadow: 0 0 4rem rgba(69, 174, 204, 0.25) !important;*/
    /*-webkit-box-shadow: 0 0.35rem 0.75rem rgba(3, 45, 64, 0.25) !important;
    box-shadow: 0 0.35rem 0.75rem rgba(3, 45, 64, 0.25) !important;*/
    box-shadow: 0 0 0rem 1px rgba(69, 174, 204, 0.25), 0.15rem 0.15rem 0.35rem -0.15rem rgb(3 45 64 / 35%) !important;
    -webkit-box-shadow: 0 0 0rem 1px rgba(69, 174, 204, 0.25), 0.15rem 0.15rem 0.35rem -0.15rem rgb(3 45 64 / 35%) !important;
    -webkit-transition: var(--transition)!important;
    -o-transition: var(--transition)!important;
    transition: var(--transition)!important;
}
.shadow:hover {
    box-shadow: 0 0 0rem 1px rgba(69, 174, 204, 0.25), 0.15rem 1rem 0.75rem -0.75rem rgb(3 45 64 / 40%) !important;
    -webkit-box-shadow: 0 0 0rem 1px rgba(69, 174, 204, 0.25), 0.15rem 1rem 0.75rem -0.75rem rgb(3 45 64 / 40%) !important;
    -webkit-transition: var(--transition)!important;
    -o-transition: var(--transition)!important;
    transition: var(--transition)!important;
}
.container {
    position: relative;
}
.portal-page {
    position: relative;
    z-index: 1;
}

ul {
    margin: 15px 0;
}

main {
    position: relative;
}
main:after {
    content: '';
    width: 100%;
    height: 500px;
    background-color: #fff;
    position: absolute;
    display: block;
    z-index: 0;
    bottom: -350px;
}
.main-content  {
    min-height: 70vh;
}
.main-content.no-heading {
    margin-top: 150px;
}
.main-content.no-heading .heading-summary {
    text-align: left;
    -webkit-column-count: 1!important;
    -moz-column-count: 1!important;
    column-count: 1!important;
}
.main-content.no-heading .heading-summary h4 {
    margin: 50px 0 15px 0;
}

.display-block {
    display: block!important;
}
/* list styles */
.main-content ul:not(.pagination) {
    display: block;
    margin-left: -10px;
}

.main-content ul:not(.pagination) li {
    display: flex;
    position: relative;
}

.main-content ul:not(.pagination) li:not(:last-child) {
    margin-bottom: 16px;
}

.main-content ul:not(.pagination) li:before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: -25px;
    margin-top: -1rem;
    background: var(--green);
    height: 12px;
    width: 12px;
    border-radius: 50%;
}

.show:not(.popover) {
    display: block!important;
    -webkit-transition: var(--transition)!important;
    -o-transition: var(--transition)!important;
    transition: var(--transition)!important;
}
.hide-me {
    display: none!important;
}
.row.with-bg {
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center 60%;
}
/* Mobile Menu */
/*body.nav-open {
    overflow: hidden;
}*/
header.header-nav-open {
    position: fixed;
    z-index: 10000;
    width: 100vw;
    top: 0;
    background: #fff;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

body.nav-open .navbar-collapse.show li a  {
    color: var(--cyan);
}

/* Loader */

.loader-wrapper {
    --line-width: 5px;
    --curtain-color: #fff;
    --outer-line-color: var(--cyan);
    --middle-line-color: var(--cyan);
    --inner-line-color: var(--cyan);
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:10000;
}

.loader {
    display:block;
    position: relative;
    top:50%;
    left:50%;
    /*   transform: translate(-50%, -50%); */
    width:150px;
    height:150px;
    margin:-75px 0 0 -75px;
    border:var(--line-width) solid transparent;
    border-top-color: var(--outer-line-color);
    border-radius:100%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index:10001;
}
.loader-logo {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    background: url(/static/images/signet_mm.svg) center;
    z-index: 10001;
    -webkit-transition: var(--transition)!important;
    -o-transition: var(--transition)!important;
    transition: var(--transition)!important;
}

.loader:before {
    content:"";
    position: absolute;
    top:4px;
    left:4px;
    right:4px;
    bottom:4px;
    border:var(--line-width) solid transparent;
    border-top-color: var(--inner-line-color);
    border-radius:100%;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader:after {
    content:"";
    position: absolute;
    top:14px;
    left:14px;
    right:14px;
    bottom:14px;
    border:var(--line-width) solid transparent;
    border-top-color: var(--middle-line-color);
    border-radius:100%;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-wrapper .loader-section {
    position:fixed;
    top:0;
    background:var(--curtain-color);
    width:51%;
    height:100%;
    z-index:10000;
}

.loader-wrapper .loader-section.section-left {
    left:0
}
.loader-wrapper .loader-section.section-right {
    right:0;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
    -o-transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
}
.loaded .loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
    -o-transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
}
.loaded .loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.loaded .loader-logo {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.loaded .loader-wrapper {
    visibility: hidden;
    -webkit-transform:translateY(-100%);
    -ms-transform:translateY(-100%);
    transform:translateY(-100%);
    -webkit-transition: all .3s 1s ease-out;
    -o-transition: all .3s 1s ease-out;
    transition: all .3s 1s ease-out;
}

/* Pimcore area blocks */
.pimcore_area_content {
    position: relative;
}
.pimcore_area_hero-teaser {
    margin-bottom: -180px;
    z-index: 3;
}
.pimcore_area_intro-teaser {
    z-index: 3;
    position: relative;
}
/* Forms */
.form-check {
    display: inline-block;
    margin-right: 25px;
}
.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: 0;
    left: 0;
}

/* parallaxes */
.bg-parallax {
    background: url('/static/images/bg_parallax.png') no-repeat top left;
    height: 100%;
    width: 100%;
    display: none;
    z-index: 2;
    position: absolute;
    top: 55%;
    background-size: contain;
}
.divider.is-skewed::before
,.colored-section::before {
    position: absolute;
    content: '';
    height: 200px;
    background: var(--bg-color);
    /*border-bottom: 30px solid var(--light-bg-color);*/
    width: 100%;
    -webkit-transform: skew(0deg, 5deg);
    -ms-transform: skew(0deg, 5deg);
    transform: skew(0deg, 5deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    left: 0;
    top: -200px;
    z-index: 1;
}
.divider.is-skewed-reverse::before {
    position: absolute;
    content: '';
    height: 200px;
    background: var(--bg-color);
    /*border-bottom: 30px solid var(--light-bg-color);*/
    width: 100%;
    -webkit-transform: skew(0deg, -5deg);
    -ms-transform: skew(0deg, -5deg);
    transform: skew(0deg, -5deg);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    left: 0;
    top: -200px;
    z-index: 1;
}
.contactblock::before,
.section-hero::before {
    position: absolute;
    content: '';
    height: 200px;
    background: rgba(255,255,255,1);
    width: 100%;
    -webkit-transform: skew(0deg, -5deg);
    -ms-transform: skew(0deg, -5deg);
    transform: skew(0deg, -5deg);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    left: 0;
    top: -200px;
}

.contactblock::after,
.section-hero::after {
    position: absolute;
    content: '';
    height: 200px;
    background: #fff;
    /*border-bottom: 30px solid var(--bg-color);*/
    width: 100%;
    -webkit-transform: skew(0deg, 5deg);
    -ms-transform: skew(0deg, 5deg);
    transform: skew(0deg, 5deg);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    left: 0;
    bottom: -200px;
}

/* links */
a:visited,
a:hover,
a:active
{
    color: var(--light-gray);
    text-decoration: none;
}
a.content {
    display: inline-block;
    color: var(--dark-cyan-a)!important;
    border-bottom: 1px dotted var(--dark-cyan-a);
    opacity: 1;
}
a.content:visited,
a.content:hover,
a.content:active {
    display: inline-block;
    color: var(--dark-cyan-a)!important;
    border-bottom: 1px solid var(--dark-cyan-a);
    opacity: 1;
}

/* Logo */
.logo-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}
#logo {
    display: block;
    width: 275px;
}
#logo.logo_blue polygon,
#logo.logo_blue rect,
#logo.logo_blue path
{
    fill: var(--cyan);
}

/* GLOBAL - (Display) Headings */

h1, .display-1 {
    font-family: "Montserrat", sans-serif;
    font-size: 3.33rem;
    color: var(--dark-cyan)!important;
    font-weight: 700;
    line-height: 3.5rem;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow-wrap: break-word;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

h2, .display-2 {
    font-family: "Montserrat", sans-serif;
    color: var(--cyan-green)!important;
    font-size: 2.33rem;
    font-weight: 700;
    line-height: 2.75rem;
    text-transform: initial;
    overflow-wrap: break-word;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

h3, .display-3 {
    font-family: "Montserrat", sans-serif;
    color: var(--cyan-green);
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.35rem;
    text-transform: initial;
    overflow-wrap: break-word;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

h4, .display-4 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    color: var(--cyan-green);
    font-weight: 700;
    line-height: 2.1rem;
    text-transform: initial;
    overflow-wrap: break-word;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

h5, .display-5 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    line-height: 1.75rem;
    overflow-wrap: break-word;
}

h6, .display-6 {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5rem;
    overflow-wrap: break-word;
}


.small, small {
    font-size: 100%;
    font-weight: 400;
    display: block;
}

.label {
    font-size: .9rempx;
    line-height: 22px;
}
.hyphens-auto h1,
.hyphens-auto h2,
.hyphens-auto h3
{
    -webkit-hyphens: auto!important;
    -ms-hyphens: auto!important;
    hyphens: auto!important;
}
/* fix paddings due to font */
.list-group-item, .card-header {
    padding-top: 15px;
    padding-bottom: 9px;
}

.custom-control label {
    padding-top: 3.5px;
}

.navbar-nav.menu-links li a {
    padding-top: 10px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    z-index: 5;
}

input.form-control {
    padding-top: 10px;
    padding-bottom: 5px;
}

.quantity input {
    padding-top: 5px;
    padding-bottom: 0px;
    padding-left: 4px;
    padding-right: 4px;
}

.input-group .input-group-append .btn {
    padding-top: 7px;
    padding-bottom: 1px;
}

.badge {
    padding-top: 6.5px;
    padding-bottom: 2px;
}



.badge-primary {
    background-color: var(--dark-gray);
}

.list-group-item-secondary .badge-primary {
    background-color: var(--dark-cyan);
}
/* colored section */

.colored-section {
    margin: 100px 0;
    overflow: hidden;
}
.colored-section .colored-container, .colored-section .colored-container > .row {
    height: 100%;
}
.colored-section .divider {
    padding-top: 450px;
    margin: 0;
    background-position: top;
}
.colored-section .divider.totara {
    background-image: -o-linear-gradient(74deg, rgba(108, 181, 44, 0.5) 25%, rgba(108, 181, 44, 0.15) 100%), url( /Slider/154/image-thumb__154__infoBlockBG/learning_handlaptop.jpg )!important;
    background-image: linear-gradient(16deg, rgba(108, 181, 44, 0.5) 25%, rgba(108, 181, 44, 0.15) 100%), url( /Slider/154/image-thumb__154__infoBlockBG/learning_handlaptop.jpg )!important;
}

.colored-section div.rellax-h {
    margin-left: 65%;
}
.colored-section .colored-block * {
    color: #fff;
}
.colored-section .colored-block .btn span {
    color: var(--cyan-green);
}
.colored-section .colored-block h3 {
    font-weight: 700;
}
.colored-section .colored-block h3 small {
    font-weight: 400;
}

.colored-section .colored-block {
    min-height: 135px;
    margin-left: -20%!important;
    margin-bottom: 100px;
}
.rellax-h svg {
    height: 75px;
}
/* blockliste */
.blocklist {
    z-index: 1;
    position: relative;
}
.blocklist h3 {
    margin-bottom: 30px;
}
.blocklist.as-overlay h3 {
    color: #fff;
}
/* Contentklassen */

.tb-pic {
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0rem 1px rgba(69, 174, 204, 0.25), 0.15rem 0.15rem 0.35rem -0.15rem rgb(3 45 64 / 35%) !important;
    box-shadow: 0 0 0rem 1px rgba(69, 174, 204, 0.25), 0.15rem 0.15rem 0.35rem -0.15rem rgb(3 45 64 / 35%) !important;
    height: 425px!important;
    width: 425px!important;
    background-size: cover!important;
}
.background-center {
    background-position: center!important;
}

/* Divider */
.divider {
    margin: 0;
    padding: 0;
    position: relative;
    border-radius: 0px;
    border:none;
    background-size: cover!important;
    z-index: 0;
    margin-top: -180px;
    background-position: top;
}



/* Contact-Block (pseudo classes separatly) */

.contactblock {
    margin-top: 150px;
    z-index: 2!important;
}
.contactblock .contact-name,
.contactblock .contact-function,
.contactblock .contact-email,
.contactblock .contact-phone {
    padding: 2px 0;
}
.contactblock.no-rellax {
    margin-bottom: 75px!important;
    margin-top: 250px!important;
}
.contactblock .pic-container {
    text-align: right;
}
.contactblock .contact-pic {
    height: 200px;
    width: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    text-align: left;
    box-shadow: 0 0 0rem 1px rgba(69, 174, 204, 0.25), 0.15rem 0.15rem 0.35rem -0.15rem rgb(3 45 64 / 35%) !important;
}
.contact-email a, .contact-phone a {
    color: var(--dark-cyan)!important;
}
.contact-email span, .contact-phone span {
    margin-right: 5px;
}
/* Special Sections */

body.career .video-caption  {
    display: none;
}


/* FOOTER */
footer {
    background: -o-linear-gradient(250deg, rgba(0,158,227,1) 44%, rgba(150,203,156,1) 100%);
    background: linear-gradient(200deg, rgba(0,158,227,1) 44%, rgba(150,203,156,1) 100%);
    position: relative;
    z-index: 0;
    padding-top: 275px;
    margin-top: -100px;
}


footer .footer-copy {
    -webkit-box-shadow: 0px -2px 4px rgb(255, 255, 255, .15)!important;
    box-shadow: 0px -2px 4px rgb(255, 255, 255, .15)!important;
    color: #fff!important;
}
footer .footer-copy ul {
    display: inline-block;
    margin: 0;
}
footer .footer-copy ul li {
    display: inline-block;
    padding: 0 25px;
    color: #fff;
}
footer .footer-copy ul li a {
    color: #fff!important;
}
footer .footer-copy ul li a:hover {
    text-decoration: underline;
}

footer .social-media-icons {
    padding: 5px 0 50px 0;
}
footer .social-media-link > img {
    padding: 10px;
    margin-right: 25px;
    width: 50px;
    height: 50px;
    display: block;
}
footer .footer-widget {
    display: flex;
    flex-direction: row;
    align-content: flex-end;
    align-items: center;
    justify-content: flex-start;
}
footer .footer-widget a {
    display: inline-block;
    position: relative;
    max-height: 160px;
    width: auto;

}
footer .footer-widget a img {
    object-fit: contain;
    display: inline-block;
    max-height: 160px;
}
#logo-footer {
    display: block;
    width: 320px;
    margin-bottom: 50px;
}
.kontakt-footer {
    color: #fff;
    min-width: 320px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.kontakt-footer > p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0;
}
.kontakt-footer > p span {
    margin-right: 10px;
    margin-top: 2px;
}
/* Hero Teaser */
section.jumbotron {
    background-color: #fff;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
}

.jumbotron.with-background::after {
    background-color: var(--cyan);
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
}
section.jumbotron > .container {
    z-index: 1;
    position: relative;
}
.section-hero.jumbotron {
    padding: 0;
    padding-bottom: 2rem;
}
.portal .section-hero.jumbotron {
    padding-top: 2rem;

}
/* Text-Divider */

section.section-divider {
    background: transparent;
}
section.section-divider.as-overlay h2,
section.section-divider.as-overlay .heading-summary,
.as-overlay h2,
.as-overlay .heading-summary
{
    color: #fff!important;
    text-shadow: 0px 0px 3px var(--dark-cyan);
}

/* Jobs Liste */


/* Snippet-Areas */

.snippet-area h2 {
    text-align: center;
}
/* News-Teaser Liste */

/*.data-list {
    background-image: url("/static/images/bg_organic.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}*/
.data-list {
    position: relative;
    z-index: 5;
}
.data-detail h3 {
    margin-top: 50px;
    margin-bottom: 15px;
}
.detail-wrap {
    margin-top: 75px;
}
.detail-pic {
    width: 100%;
    height: 650px;
    display: block;
    background-size: cover;
    background-position: top;
    margin-top: -50px;

}
.detail-text {
    font-size: 1rem;
}
.detail-summary {
    max-width: 1000px;
    margin: 0 auto;
}
.teaser.list {
    opacity: 1;
    padding: 20px 0;
    -webkit-transform: translateX(0) scale(1);
    -ms-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    -webkit-transition: var(--transition)!important;
    -o-transition: var(--transition)!important;
    transition: var(--transition)!important;
    border-bottom: 2px dotted var(--light-gray);
    height: 260px;
    width: 100%!important;


}
.teaser.list:hover {
    -webkit-transform: translateX(10px) scale(1.03);
    -ms-transform: translateX(10px) scale(1.03);
    transform: translateX(10px) scale(1.03);
    -webkit-transition: var(--transition)!important;
    -o-transition: var(--transition)!important;
    transition: var(--transition)!important;

}
.teaser.list:hover .list-pic {
    opacity: 1!important;
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
    -webkit-transition: var(--transition)!important;
    -o-transition: var(--transition)!important;
    transition: var(--transition)!important;
}
.teaser.list .list-item {
    width: 100%;
}
.teaser.list .list-pic{
    height: 200px;
    width: 200px;
    background-size: cover;
    background-position: center;
    -ms-flex-preferred-size: 200px;
    flex-basis: 200px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid #fff;
    opacity: 0.85!important;
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
    -webkit-transition: var(--transition)!important;
    -o-transition: var(--transition)!important;
    transition: var(--transition)!important;
}
.teaser.list .list-title {
    margin-bottom: 15px!important;
}
.teaser.list .list-text p {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow:hidden;
}
.teaser.list .list-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 30px;
    color: var(--dark-cyan);
    width: 100%;
}
.teaser.list .list-body-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.teaser.list .list-date, .teaser.list .list-loc, .teaser.list .list-jobtype {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.teaser.list .list-date span, .teaser.list .list-loc span, .teaser.list .list-jobtype span {
    margin-right: 5px;
    width: 25px;
}
.btn-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid var(--cyan-green);
    padding: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--cyan-green);
}
.teaser.list .btn-list span {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: var(--transition)!important;
    -o-transition: var(--transition)!important;
    transition: var(--transition)!important;
}
.teaser.list:hover .btn-list span {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: var(--transition)!important;
    -o-transition: var(--transition)!important;
    transition: var(--transition)!important;
}
.teaser.list:hover .btn-list span {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: var(--transition)!important;
    -o-transition: var(--transition)!important;
    transition: var(--transition)!important;
}

/* Teaser List Filter */
.filtr-wrap {
    margin-bottom: 220px;
}
.filtr-control {
    list-style-image: none;
    padding: 30px;
    background: #fff;
    border-radius: var(--br);
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    justify-content: space-between;

}
.filtr-control input {
    min-width: 300px;
    border-radius: var(--br);
    width: auto;
}
.filtr-control ul {
    list-style-image: none;
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    margin-left: 0!important;
    margin-top: 0!important;
    margin-bottom: 0!important;
    padding-left: 0;

}
.filtr-control ul li {
    list-style-image: none;
    display: inline-flex!important;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    padding: 5px 20px;
    border: 1px solid var(--cyan-green);
    color: #fff;
    background: var(--cyan-green);
    margin-bottom: 0!important;
    border-radius: 10px;
    margin-right: 10px;
}
.filtr-control .sort.asc, .sort.desc {
    background-color: var(--cyan-green);
}
.filtr-control .sort.asc::after {
    content: "\e5cf";
    padding-left: 3px;
    font-family: 'Material Icons';
}
.filtr-control .sort.desc::after {
    content: "\e5ce";
    padding-left: 3px;
    font-family: 'Material Icons';
}
.filtr-control ul li:before {
    content: none!important;
}
/* NavPills */

.nav-pills {
    padding: 30px;
    border-radius: var(--br);
    background-color: #fff;
}
.nav-pills .nav-link {
    border-radius: 5px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--cyan-green);
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--cyan-green);
    -webkit-box-shadow: 2px 2px 2px rgba(0,0,0,0.15) inset;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.15) inset;/* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
}
.tab-content>.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.tabs-wysiwyg-content {
    margin: 50px 0;
}
/* Text-Bild-Block */
.text-pic {
    position: relative;
    padding: 50px 0;
    z-index: 2;
}
.text-pic .pic {
    display: inline-block;
    height: 425px;
    width: 100%;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
}

.text-pic .pic-wrap,
.text-pic .text-wrap {
    display: inline-block;
}
.text-pic .item-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.text-pic .text-wrap {
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.text-pic-2sp .pic {
    height: auto;
    min-height: 300px;
}
.text-pic-2sp .text-wrap {
    text-align: left;
}
.text-pic-2sp .text-wrap h4 {
    text-align: left;
    font-size: 1.45rem;
}
.text-pic-2sp .item-wrap > div {
    margin-bottom: 50px;
}

/* Video-Header */
video {
    width: 100%;
}
.video-head {
    background-color: #fff;
}
.video-wrap {
    position: relative;
    height: 950px;
    width: 100%;
    overflow: hidden;
    z-index: 0;
}
.video-caption, .caption-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 1;
}
.portal .content-swiper-b-wrap, .portal .content-swiper-b  {
    height: 1000px;
}
.portal .content-swiper-b-wrap:before {
    content: none;
    position: absolute;
    top: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,158,227,0.75)), color-stop(40%, rgba(255,255,255,0)), color-stop(50%, rgba(255,255,255,0)), to(rgba(0, 0, 0, 0.4)));
    background-image: -o-linear-gradient(top, rgba(0,158,227,0.75) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 50%, rgba(0, 0, 0, 0.4) 100%);
    background-image: linear-gradient(180deg, rgba(0,158,227,0.75) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 50%, rgba(0, 0, 0, 0.4) 100%);
    width: 100%;
    height: 1000px;
    z-index: 1;
}
.portal .caption-wrap {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,158,227,0.75)), color-stop(40%, rgba(255,255,255,0)), color-stop(50%, rgba(255,255,255,0)), to(rgba(0, 0, 0, 0.4)));
    background-image: -o-linear-gradient(top, rgba(0,158,227,0.75) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 50%, rgba(0, 0, 0, 0.4) 100%);
    background-image: linear-gradient(180deg, rgba(0,158,227,0.75) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 50%, rgba(0, 0, 0, 0.4) 100%);

}
.portal .inner-wrap {
    position: relative!important;
    max-width: 650px;
    height: 650px!important;
    background: -o-linear-gradient(95deg, rgb(255 255 255) 28%, rgb(255 255 255 / 70%) 100%);
    background: linear-gradient(-5deg, rgb(255 255 255) 28%, rgb(255 255 255 / 70%) 100%);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 115px;
    -webkit-transform: translate3d(-115px,0,0);
    transform: translate3d(-115px,0,0);
    border-top: 6px solid var(--bg-color);
    border-left: 6px solid var(--bg-color);
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=25, Direction=180, Color=#000000)";/*IE 8*//*FF 3.5+*/
    -webkit-box-shadow: 6px 0 25px -11px rgba(0,0,0,0.5);/*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
    box-shadow: 6px 0 25px -11px rgba(0,0,0,0.5);/* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=25, Direction=135, Color=#000000); /*IE 5.5-7*/
}
.as-circle .inner-wrap {
    background: none;
    height: auto !important;
    max-width: 1000px;
    border: none;
    box-shadow: none;
    margin-bottom: 50px;
}

.as-circle .inner-wrap .display-1,
.as-circle .inner-wrap .hero-text,
.as-circle .inner-wrap .btn-arrowlink
{
    color: #fff!important;
}
.portal .as-circle .inner-wrap .display-1 {
    font-size: 4rem;
    line-height: 4rem;
}

.inner-wrap {
    max-width: 550px;
    height: 550px;
    background: -o-linear-gradient(95deg, rgb(255 255 255) 28%, rgb(255 255 255 / 70%) 100%);
    background: linear-gradient(-5deg, rgb(255 255 255) 28%, rgb(255 255 255 / 70%) 100%);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 85px;
    -webkit-transform: translate3d(-115px,0,0);
    transform: translate3d(-115px,0,0);
    border-top: 6px solid var(--bg-color);
    border-left: 6px solid var(--bg-color);
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=25, Direction=180, Color=#000000)";/*IE 8*//*FF 3.5+*/
    -webkit-box-shadow: 6px 0 25px -11px rgba(0,0,0,0.5);/*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
    box-shadow: 6px 0 25px -11px rgba(0,0,0,0.5);/* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=25, Direction=135, Color=#000000); /*IE 5.5-7*/
}
.inner-wrap .hero-text {
    font-size: 1rem;
    display: block;
    margin-top: 20px;
}
.inner-wrap h2 {
    color: var(--cyan-green)!important;
}
.inner-wrap p, .inner-wrap a  {
    color: var(--dark-cyan)!important;
}
.video-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,158,227,0.75)), color-stop(40%, rgba(255,255,255,0)), color-stop(50%, rgba(255,255,255,0)), to(rgba(0,158,227,1)));
    background-image: -o-linear-gradient(top, rgba(0,158,227,0.75) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 50%, rgba(0,158,227,1) 100%);
    background-image: linear-gradient(180deg, rgba(0,158,227,0.75) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 50%, rgba(0,158,227,1) 100%);
    /*background-image: linear-gradient(160deg, rgba(0,158,227,0.95) 5%, rgba(150,203,156,0.5) 50%);*/
    /*background-image: linear-gradient(16deg, rgba(0,158,227,1) 25%, rgba(150,203,156,0.4) 100%);*/
    width: 100%;
    height: 950px;
    z-index: 1;
}
/* Infoblock mit Bild */

.area-infoblock {
    padding: 100px 0 50px 0;
}

.infoblock-wrap {
    background-color: rgba(255, 255, 255, .75);
    backdrop-filter: blur(5px);
    border-radius: var(--br);
    position: relative;
    z-index: 1;
    padding: 50px 15px;

}
.infoblock-teaser {
    width: 100%;
    padding: 0 50px;
}
.infoblock-body {
    margin-top: -100px;
}
/* Counter */
.counter-block {
    padding: 5rem 0;
    min-height: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.counterblock-teaser {
    width: 100%;
    padding: 50px;
    background-color: rgba(255,255,255,0.7);
    border-radius: var(--br);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
}
.counterblock-body {
    margin-top: -90px;
    border-left: 2px dotted var(--cyan-green);
}
.count {
    color: var(--cyan-green);
    font-size: 2.5rem;
    font-weight: 700;
}
.hero-counter.with-icons.as-circle .counterblock-body {
    border-radius: 50%;
    aspect-ratio: 1;
    background: #ffffff;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    max-width: 250px;
}
.hero-counter.with-icons .counterblock-body {
    border-radius: 0;
    aspect-ratio: none;
    background: #ffffff;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    max-width: none;
    box-shadow: none!important;
}
.hero-counter.with-icons.as-circle  {
    justify-content: space-evenly;
}
.hero-counter.with-icons.as-circle .counterblock-body .image,
.hero-counter.with-icons .counterblock-body .image{
    position: relative;
    left: auto;
    top: auto;
    background: transparent;
    border: none;
    margin: 0;
    height: 80px;
    width: 65px;
}

.hero-counter.with-icons .counterblock-body .image > span {
    font-size: 3rem;
    color: var(--cyan-green);
    opacity: .85;


}
/* Hero Counter */
.hero-counter {
    margin-top: 50px;
}
.hero-counter .count, div.counterblock-unit {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--cyan-green);
}
.hero-counter div.counterblock-unit {
    margin-left: 10px;
    font-size: 3rem;
}
.hero-counter span.count-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 250px;
    width: 250px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--cyan-green);
    padding: 50px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    border-radius: 50%;

}
.hero-counter .counterblock-teaser {
    padding: 0;
    height: 100%;
}
.hero-counter .counterblock-body {
    padding: 0;
    min-height: 200px;
    margin-top: 0;
}
.hero-counter > div {
    min-height: 250px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.hero-counter .counterblock-body .image {
    position: absolute;
    left: -46px;
    top: 0;
}
/* BUTTONS */
.btn-primary {
    color: var(--cyan-green)!important;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    text-transform: none;
    border-radius: 25px;
    background: -o-radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 100%);
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 100%);
    padding: 9px 25px;
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    font-size: .9rem;
    font-weight: 700;
    display: inline-flex;
    border: 2px solid var(--cyan-green);

}
.btn-primary span.material-arrow {
    margin-left: 15px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
}
.btn-primary:hover {
    color: var(--cyan-green)!important;
    background: -o-radial-gradient(linear, rgba(255,255,255,1) 0%, rgba(69,174,204,1) 100%)!important;
    background: radial-gradient(linear, rgba(255,255,255,1) 0%, rgba(69,174,204,1) 100%)!important;
    padding: 9px 25px;
    border: none;
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    border: 2px solid var(--cyan-green);
    -webkit-box-shadow: 0px 12px 5px -9px rgb(0, 0, 0,.3);
    box-shadow: 0px 12px 5px -9px rgb(0, 0, 0,.3);
}
.btn-primary:hover span.material-arrow {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
}

.btn-outline-primary {
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-outline-primary:hover {
    background-color: var(--cyan);
    border-color: var(--cyan);
}
.arrow-right {
    width: 100%;
}
.btn-secondary {
    color: var(--cyan);
    /*font-size: 18px;*/
    text-align: center;
    border-radius: var(--br);
    background-color: #FFFFFF;
    border-color: var(--cyan);
}
.btn-forward {
    width: 100%;
    padding: 30px 30px;
    font-size: 1.25rem;
    text-align: left;
    text-transform: uppercase;
    position: relative;
    border-radius: var(--br);
    background-color: rgba(0,158,227,.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-color: var(--cyan);
    color: #fff!important;
    font-family: 'Montserrat', sans-serif;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
    white-space: pre-wrap;
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
}
.btn-forward:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    background-color: rgba(0,158,227,1);
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
}

.btn-forward span {
    display: block;
    position: relative;
    font-size: 1.25rem;
}
.btn-forward span.material-arrow {
    position: absolute;
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    right: 0;
    bottom: 0;
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
}
.btn-forward:hover span.material-arrow {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
}

.btn-arrowlink {
    font-family: 'Montserrat', sans-serif;
    color: #fff!important;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}
.inner-wrap .btn-arrowlink {
    color: var(--cyan-green)!important;
}

.btn-arrowlink span.material-arrow {
    margin-left: 15px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
}
.btn-arrowlink:hover span.material-arrow {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
}
.btn-acc {
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 25px 0;
    font-weight: normal;
}


.page-item .page-link {
    color: var(--dark-cyan);
    padding-top: 10px;
    padding-bottom: 5px;
}

.page-item.active .page-link {
    color: #ffffff;
    background-color: var(--cyan);
    border: 1px solid #dee2e6;
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
    padding-right: 15px;
    padding-left: 15px;
}

.glightbox2 {
    display: inline-block;
    /*padding: 20px 0;*/
}

.flip {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.page-link {
    height: 100%;
}

.page-link span {
    background-image: url("../images/icons/arrow.svg");
    position: absolute;
    width: 8px;
    height: 16px;
    margin: 2px 0px 0px -3px;
    background-repeat: no-repeat;
}

#viewfullmovie {
    display: flex;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    z-index: 2;
}
/* Filtr
/* introblock */
.introblock {
    position: relative;
    padding: 100px 0;
}
.introblock h3 {
    margin-bottom: 30px;
}
.introblock-bg-image {
    display: block;
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 60%;
    max-height: 100%;
    max-width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .4;
    right: 0;
    top: 0;
}
.introblock-totara .blocklink {
    height: 390px;
}
/* appends */
.append-item {
    display: none;
    color: var(--dark-cyan)!important;
    height: auto;
    width: 300px;
    padding: 0;
    position: absolute;
    background: transparent;
}
.append-item li {
    color: var(--dark-cyan)!important;
}
/* blocklinks */
.blocklink-wrap {
    position: relative;
}
.blocklink .title small {
    display: inline-block;
    font-weight: 700;
    font-size: 2rem;
}
.blocklink-wrap .block-pic {
    height: 130px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bottomlink .block-pic {
    display: none;
}
.blocklink-wrap.block-video-wrap .blocklink.with-info {
    height: auto;
}
.blocklink-wrap.block-video-wrap .blocklink.with-info .row {
    width: 100%;
}
.blocklink-wrap.block-video-wrap .blocklink.with-info .block-video {
    height: 515px;
    display: block;
    overflow: hidden;
    border-top-left-radius: var(--br);
    border-bottom-left-radius: var(--br);
}
.blocklink-wrap.block-video-wrap .blocklink.with-info .block-video .pimcore_editable_video {
    margin-top: -2px;
}
.block-video video {
    width: 100%;
}
.blocklink.career {
    justify-content: flex-end!important;
    overflow: hidden;
    backdrop-filter: none;

}
.blocklink.career .title {
    z-index: 1;
    background: #fff;
    padding: 10px 20px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.blocklink.career .block-text {
    display: block;
    max-height: none;
    text-overflow: unset;
    opacity: 0;
    font-size: .9rem;
    transform: translateY(-20%);
    transition: var(--transition);
    padding-bottom: 50px;
}
.blocklink.career:hover .block-text {
    max-height: none;
    text-overflow: unset;
    opacity: .8;
    transform: translateY(0);
    transition: var(--transition);
}
.blocklink.career .block-pic {
    position: absolute;
    top: 0;
    border-radius: var(--br);
    overflow: hidden;
    height:100%;
    opacity: 1;
    transition: var(--transition);
}
.blocklink.career:hover .block-pic {
    position: absolute;
    top: 0;
    border-radius: var(--br);
    overflow: hidden;
    height:100%;
    opacity: .15;
    transition: var(--transition);
}
.blocklink.career .block-pic img {
    height: 100%;
    object-fit: cover;
}
.blocklink-wrap {
    position: relative;
}
.blocklink-wrap.block-video-wrap .blocklink.without-info {
    height: auto;
    padding: 0!important;
}
.blocklink-wrap.block-video-wrap .blocklink.without-info .row {
    width: 100%;
}
.blocklink-wrap.block-video-wrap .blocklink.without-info .block-video {
    max-height: 760px;
    height: auto;
    display: block;
    overflow: hidden;
    border-radius: var(--br);
    background-color: #fff;

}
.blocklink-wrap.block-video-wrap .blocklink.without-info .block-video video {
    max-height: 770px;
    height: 100%;
}
.blocklink-wrap.block-video-wrap .blocklink.without-info .block-video .pimcore_editable_video {
    margin-top: -2px;
}
.blocklink {
    position: relative;
    background-color: rgba(255,255,255,0.60);
    border-radius: var(--br);
    height: 275px;
    width: 100%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
}

.blocklink:not(.blocklink-empty):hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    background-color: rgba(255,255,255,1);
    box-shadow: 0 0 0rem 1px rgba(69, 174, 204, 0.25), 0.15rem 1rem 0.75rem -0.75rem rgb(3 45 64 / 40%) !important;
    -webkit-box-shadow: 0 0 0rem 1px rgba(69, 174, 204, 0.25), 0.15rem 1rem 0.75rem -0.75rem rgb(3 45 64 / 40%) !important;

    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
}
.blocklink:not(.blocklink-empty):hover span.material-arrow {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    color: var(--cyan-green);
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
}

.blocklink .title,
.teaser.list .list-title,
.hero-counter.with-icons .counterblock-title
{
    text-decoration: none!important;
    color: var(--cyan-green);
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 0;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
}
.blocklink span.material-arrow {
    z-index: 2;
    position: absolute;
    font-size: 28px;
    right: 0;
    bottom: 0;
    margin-top: -20px;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--cyan-green);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;

}
.blocklink-content {
    color: var(--dark-cyan);

}
/*.blocklink-content p {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow:hidden;
}*/
.blocklink-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 80px;
    width: 80px;
    background: transparent;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
    opacity: 1;
}
.blocklink-icon span.material-icons {
    font-size: 60px;
    color: var(--cyan-green);
    opacity: .85;
}

.blocklink .block-text {
    display:inline-block;
    margin-top: 10px;
    max-height: 200px;
    overflow: hidden;
    color: var(--dark-cyan);
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    width: 100%;
    z-index: 2;
}
.blocklink.icontext .block-text {
    overflow: visible;
    font-size: .9rem;
    opacity: 0;
    position: absolute;
    bottom: 0;
    text-align: center;
    transform:translateY(-100%);
    transition: var(--transition);
}
.blocklink.icontext:hover .block-text {
    overflow: visible;
    font-size: .9rem;
    opacity: .8;
    position: absolute;
    bottom: 0;
    text-align: center;
    transform:translateY(0);
    transition: var(--transition);
}
.blocklink.icontext .block-pic {
    height: 0;
    transition: var(--transition);
    transition-delay: .25s;
}
.blocklink.icontext:hover .block-pic {
    height:20px;
    transition: var(--transition);
    transition-delay: .25s;
}
.ribbon {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    overflow: hidden;
    width: 100px;
    height: 100px;
    text-align: right;
    border-top-right-radius: 10px;
}
.ribbon > span {
    color: #FFF;
    text-align: center;
    line-height: 30px;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 130px;
    display: block;
    background: var(--cyan-green);
    position: absolute;
    top: -10px;
    right: -45px;
}
.ribbon span.material-icons {
    margin: 33px 20px 0 20px;
}

/* timeline */
.timeline-area {
    position: relative;
    background-image: url(/static/images/historie-bg.png);
    background-size: contain;
    z-index: 1;
    padding: 100px 0;
    background-repeat: no-repeat;
    background-position: center;
}
.timeline__wrap {
    overflow: visible;
}
.timeline-pic {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0 auto;
    margin-top: -130px;
}
.timeline__content {
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: var(--br);
    color: var(--dark-cyan);
    display: block;
    padding: 30px;
    position: relative;
}
.timeline__content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 1rem 0;
    text-align: center;
}
.timeline:not(.timeline--horizontal):before {
    background-color: var(--cyan);
    bottom: -400px;
    content: '';
    left: 50%;
    margin-left: -2px;
    position: absolute;
    top: -100px;
    width: 4px;
    z-index: 1;
}
.timeline__item:after {
    background-color: #fff;
    border: 4px solid var(--cyan);
}
.timeline__content:before {
    border-left: 12px solid #fff;
}
.timeline__item--right .timeline__content:before {
    border-right: 12px solid #fff;
}
/* Modals */
.modal {
    z-index:10500;
    padding-right: 0!important;
    border-radius: 0;
    opacity: 0;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, .75);
    background-image: url("/static/images/bg_parallax.png");
    backdrop-filter: blur(15px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    -ms-flex-pack: justify;
    justify-content: center;
    padding: 0;
    border-bottom: 1px solid transparent;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
    align-items: center;
    flex-direction: column;
}
.modal .modal-content .image {
    margin-bottom: 0;
    margin-top: -48px;
}
.modal-header button.close {
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.modal.show {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}
.modal.move:not(.show) {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.modal.move {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.modal-dialog {
    max-width: 100%!important;
}
.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 750px;
    max-width: 100%;
    pointer-events: auto;
    background-color: transparent;
    background-clip: padding-box;
    border: none;
    border-radius: none;
    outline: 0;
}
.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
}
.modal-title {
    font-size: 3rem;
    font-weight: 700;
}
.modal-body {
    font-size: 1.8rem;
    color: var(--cyan-green);
}
.modal-title small {
    display: inline-block;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: #000;
}
.tb-modal .modal-content {
    width: 100%;
}
.tb-modal .modal-header {
    font-family: "Montserrat", sans-serif;
    width: 100%;
}
.modal-content video {
    max-height: 75vh;
}

.flex-equal > * {
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
}
@media (min-width: 768px) {
    .flex-md-equal > * {
        -ms-flex: 1;
        -webkit-box-flex: 1;
        flex: 1;
    }
}

.overflow-hidden { overflow: hidden; }

.menu-links {
    font-size: .8rem;
    position: relative;/*für standard drops*/
}

.menu-links .active {
    color: #ffffff;
}

.menu-icon {
    height: 20.5px;
    width: 20.5px;
}

/*

.hero-banner {
    overflow: hidden;
    width: auto;
    min-width: 100%;
    height: auto;
    background-image: url("../images/hero1.png");
    background-size: cover;
    min-height: 700px;
    background-position: bottom;
}

.hero-text {
    color: #FFFFFF;
    font-family: "Roboto", sans-serif;
    font-size: 26px;
    line-height: 26px;
    text-align: left;
}


.card-img-top {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
*/

.grid-gallery {
    margin-right: 0;
    margin-left: 0;
}
.grid-gallery .flex-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.grid-gallery-item .tint {
    background-color: initial;

}

.grid-gallery-item .tint img {
    opacity: 1;
}

.grid-gallery-item {
    padding: 0;
    max-height:50vh;
}

.grid-gallery-item img {
    max-width:100%;
    max-height:100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.grid-gallery-item h1,
.grid-gallery-item h2 {
    margin-bottom: 0;
    line-height: 1em;
}

.grid-gallery .pimcore_block_entry {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.grid-gallery-item-text  {
    position: absolute;
    right: 15%;
    bottom: 5%;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    vertical-align: text-bottom;
    text-align: center;
}



/* some special styles for grid with filters */
.col-md-9 .col-md-4 .custom-product-card .card-body.pricing i,
.col-md-3 .custom-product-card .card-body.pricing i {
    display: none;
}

.col-md-9 .col-md-4 .custom-product-card .card-body,
.col-md-3 .custom-product-card .card-body{
    padding: 1.25rem;
}


.col-md-9 .col-md-4 .custom-product-card .card-body .btn,
.col-md-3 .custom-product-card .card-body .btn {
    padding-top: 7px;
    padding-bottom: 2px;
    font-size: .9rem;
}

.col-md-9 .col-md-4 .custom-product-card .card-body .button-row,
.col-md-3 .custom-product-card .card-body .button-row {
    padding-left: 7px;
    padding-right: 7px;
}

/* end special stypes for grid with filters */





.image-holder:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,255,255, 0.5);
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.image-holder:hover:before {
    background: none;
}

/* BACKGROUND TINT */
.tint { background-color:black; display:inline-block; }
.tint img { opacity:0.7 }

/* ZOOMIN EFFECT */
.zoom-outer
{
    overflow: hidden;
}
.zoom-inner
{
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.zoom-inner:hover
{
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}


/* Box Hover */
*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; };

/* Navigation */
.cl-effect-4 a {
    padding: 0 0 10px;
}

.cl-effect-4 a::after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    content: '';
    opacity: 0;
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -o-transition: height 0.3s, opacity 0.3s, transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}
.cl-effect-4 .dropdown-menu li > a::after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--cyan);
    content: '';
    opacity: 0;
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -o-transition: height 0.3s, opacity 0.3s, transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.cl-effect-4 .dropdown-menu li > a:hover::after,
.cl-effect-4 a:hover::after,
.cl-effect-4 a:focus::after {
    height: 2px;
    opacity: 1;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.menu-links * {
    font-family: 'Montserrat', sans-serif;
}
.menu-links .active a.active {
    font-weight: 700!important;
}

@media screen and (min-width: 992px) {

    .menu-links > li {
        font-size: 17px;
        padding: 1rem 1.35rem 1rem 1.35rem !important;
        position: relative;  /* Hier für Megamenu-Fake*/
        height: 100px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .menu-links > li:last-of-type > a {

        padding: 5px 25px !important;
        background-color: #fff;
        border: 2px solid var(--cyan);
        color: var(--cyan)!important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-radius: 50px;
    }
    .menu-links > li:last-of-type > a::after {
        content: none;
    }
    .menu-links > li > a.main > span.open-button, .toggle {
        display: none;
    }

}
@media screen and (max-width: 991.9px) {
    .menu-links > li {
        font-size: 20px;
        padding: 1rem 1.35rem 1rem 1.35rem !important;
        position: relative;  /* Hier für Megamenu-Fake*/
        min-height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-open .menu-links > li:last-of-type > a {
        padding: 5px 25px !important;
        background-color: #fff;
        border: 2px solid var(--cyan)!important;
        color: var(--cyan) !important;
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
        -webkit-box-align: center!important;
        -ms-flex-align: center!important;
        align-items: center!important;
        border-radius: 50px;
        justify-content: center;
        font-weight: 700;
        max-width: 350px;
        width: 100%;
    }
    .dropdown .dropdown-menu a {
        -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px);
    }
    .nav-open .menu-links > li:last-of-type {
        border-bottom: none;
    }
    .nav-open .navbar-nav li > ul.dropdown-menu.sublvl1,
    .nav-open .navbar-nav li > ul.dropdown-menu.sublvl2 {
        display: none;

    }
    .open-button.rotate-down {
        transform:rotate(90deg);
        transition: var(--transition);
    }
    .navbar.site-header > .container {
        max-width: 95%!important;
    }
    .append-item {
        display: none!important;
    }
    .nav-open header .menu-links > li:last-of-type > a {
        background-color: transparent;
        border-color: #fff;
        color: var(--cyan) !important;
    }
    .menu-links > li a {
        width: 100%;
        max-width: 500px;
        display: flex!important;
        align-items: center;
        justify-content: space-between;

    }
    nav .menu-links .dropdown-menu .sublvl2.show {
        position: relative !important;
        background-color: transparent;
        left: auto;
        width: 100%;
        top: auto;
        padding-top: 0;
        height: auto;
    }
    .menu-links .dropdown-menu.show  {
        width: 100%;
        max-width: 500px;
        position: relative;
        left: .5rem;
        top: 0;
        min-height: auto;
        border: none;
        background-color: transparent;
        padding: 15px 0;
        z-index: 1;
        display: flex;
    }
    .menu-links > .dropdown-submenu li {
        font-size: 18px;
        padding: 1rem 1.35rem 1rem 1.35rem !important;
        position: relative;  /* Hier für Megamenu-Fake*/
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .header-nav-open .site-header  {
        align-items: flex-start;

    }
    .header-nav-open .site-header::before  {
        align-items: flex-start;

    }
    .header-nav-open.headroom {
        -webkit-transform: translateY(0%)!important;
        -ms-transform: translateY(0%)!important;
        transform: translateY(0%)!important;
    }
    .header-nav-open .logo-container {
        background: url(../images/signet_mm.svg) no-repeat left!important;
        width: 80px !important;
        height: 80px !important;
        opacity: 1!important;
        margin-top: 10px!important;
        transform: translateY(0)!important;
    }
    .header-nav-open .toggle {
        color: var(--cyan);
        z-index: 10;
    }
    .open-button {
        padding: 20px;
        color: var(--cyan);
    }
    .sublvl1 .open-button, .sublvl2 .open-button {
        padding: 10px 20px;
    }
    .dropdown-submenu.show > li {
        display: flex;
        color: #000;
        min-height: 60px;
        align-items: center;
        width: 100%;
        padding-right: 15px;
        flex-wrap: wrap;
    }
}
.menu-links .dropdown-menu li a {
    padding: .5em 0;
}

.navbar-nav li a {
    color: #ffffff;
    display: block;
    padding-bottom: 10px;
}

.menu-links .dropdown {
    top: 80%;
}

.menu-links .dropdown-menu {
    width: 100%;
    position: absolute;
    left: .5rem;
    top: 0;
    border: none;
    background-color: transparent;
    padding: 15px 0;
    z-index: 1;
    padding-top: 100px;

}
.menu-links::after {
    content:'';
    width: 300%;
    position: absolute;
    left: -100%;
    top: -600%;
    border: none;
    background: rgba(255,255,255,0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 0 0 15px 0;
    height: 600px;
    z-index:-1;
    -webkit-box-shadow: 0 .25rem 3rem rgba(69, 174, 204, 0.3) !important;
    box-shadow: 0 .25rem 3rem rgba(69, 174, 204, 0.3) !important;
    -webkit-transition: all ease .35s;
    -o-transition: all ease .35s;
    transition: all ease .35s;
    overflow: hidden;
    -webkit-transform: skew(0deg, 0deg);
    -ms-transform: skew(0deg, 0deg);
    transform: skew(0deg, 0deg)
}
.menu-links:hover::after {
    content:'';
    width: 300%;
    position: absolute;
    left: -100%;
    top: -150%;
    border: none;
    background: rgba(255,255,255,0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 0 0 15px 0;
    height: 600px;
    z-index:-1;
    -webkit-box-shadow: 0 .25rem 3rem rgba(69, 174, 204, 0.3) !important;
    box-shadow: 0 .25rem 3rem rgba(69, 174, 204, 0.3) !important;
    -webkit-transition: all ease .35s;
    -o-transition: all ease .35s;
    transition: all ease .35s;
    overflow: hidden;
    -webkit-transform: skew(0deg, 5deg);
    -ms-transform: skew(0deg, 5deg);
    transform: skew(0deg, 5deg)
}


.navbar-nav li .dropdown-menu a {
    color: var(--cyan);
}

.navbar-nav li:hover > ul.dropdown-menu {
    display: block;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all ease .35s;
    -o-transition: all ease .35s;
    transition: all ease .35s;
}

.dropdown-menu li {
    width: 310px;
    position: relative;
    padding-left: 15px;
}
.dropdown-menu li .has-sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.has-sub span {
    margin-right: 15px;
}
.dropdown-submenu {
    top: 0;
    left: 100%;
    margin-top: 0px;
    margin-left: 0px;
}
.sublvl1 {
    position: relative;
    min-height: 400px;
}
/*.sublvl2 {
    position: static!important;
    padding-left: 15px!important;
}*/
/*.sublvl2 li {
    padding-left: 15px;
    border-left: 1px dotted var(--cyan);
}*/

.sublvl2::after {
    content: none!important;
}
nav .menu-links .dropdown-menu .sublvl2 {
    position: absolute!important;
    background-color: transparent;
    left: 310px;
    width: auto;
    top: 0;
    padding-top: 0;
    height: calc(100% - 100px);
}

@media (min-width: 992px) {
    .dropdown .dropdown-menu {
        animation-duration: .35s;
        -webkit-animation-duration: .35s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
        -webkit-animation-name: slideIn;
        animation-name: slideIn;
    }
}

.form-control:focus{
    border-color: var(--cyan);
    box-shadow: none;
    -webkit-box-shadow: none;
}

.dropdown .dropdown-menu li > ul {
    margin: 0px;
}

.dropdown .dropdown-menu li > ul > li {
    list-style: none;
}

.dropdown .dropdown-menu a {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    transition: ease all 0.35s;
}
.dropdown .dropdown-menu a:hover {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
    -webkit-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    transition: ease all 0.35s;

}
.has-sub {};


/* mobile nav */
.hc-offcanvas-nav {
    z-index: 10;
}
.hc-offcanvas-nav .nav-next span::before, .hc-offcanvas-nav .nav-back span::before {
    content: none;
    border-top: none;
    border-left: none;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}
.site-header {
    padding: 0;
    height: 100px;
}

.toggle {
    right: 0;
    top: auto!important;
}
/*.toggle > span,
.toggle > span::before,
.toggle > span::after {
    height: 2px;
    background: #fff;
    -webkit-transition: var(--transition)!important;
    -o-transition: var(--transition)!important;
    transition: var(--transition)!important;
}*/
#hc-nav-1 .nav-container {
    width: 100%;
    max-width: 600px;
    padding-top: 100px;
}
.hc-offcanvas-nav .nav-item-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
}
.hc-offcanvas-nav .nav-container, .hc-offcanvas-nav .nav-wrapper, .hc-offcanvas-nav ul {
    background: #fff;
}
.hc-offcanvas-nav .nav-item-link, .hc-offcanvas-nav li.nav-close a, .hc-offcanvas-nav .nav-back a {
    color: var(--cyan);
}
.hc-offcanvas-nav .nav-item-wrapper {
    width: 100%;
}
.hc-offcanvas-nav .nav-next span::before, .hc-offcanvas-nav .nav-back span::before {
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}
.hc-offcanvas-nav a.nav-next span, .hc-offcanvas-nav .nav-back span  {
    content: url("/static/images/icons/arrow_forward_cyan.svg");
    height: 100%;
    width: 30px;
    position: relative;
}
.hc-offcanvas-nav .nav-back span {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.hc-offcanvas-nav .nav-close-button span, .hc-offcanvas-nav .nav-parent .nav-next {
    width: 75px;
}
.hc-offcanvas-nav li.nav-parent .nav-item-link:not(:last-child) {
    margin-right: 75px;
}
.hc-offcanvas-nav .nav-wrapper>.nav-content>ul:first-of-type>li:first-child:not(.nav-back):not(.nav-close)>.nav-item-wrapper>.nav-item-link {
    border-top: 1px solid var(--bg-color);
}
.hc-offcanvas-nav .nav-wrapper>.nav-content>ul:first-of-type>li:first-child:not(.nav-back):not(.nav-close)>.nav-item-wrapper>.nav-item-link+a {
    border-top: 1px solid var(--bg-color);
}
.hc-offcanvas-nav a.nav-next {
    border-left: 2px dotted var(--bg-color);
    border-bottom: 1px solid var(--bg-color);
}
.hc-offcanvas-nav .nav-item-link, .hc-offcanvas-nav li.nav-close a, .hc-offcanvas-nav .nav-back a {
    padding: 20px 35px;
    border-bottom: 1px solid var(--bg-color);
}
.hc-offcanvas-nav.nav-levels-overlap ul .nav-wrapper {
    padding-top: 100px;
}
.hc-offcanvas-nav .nav-content>h2, .hc-offcanvas-nav .nav-content>h3, .hc-offcanvas-nav .nav-content>h4, .hc-offcanvas-nav .nav-content>h5, .hc-offcanvas-nav .nav-content>h6 {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 20px 35px;
    color: var(--cyan);
}
.hc-offcanvas-nav .level-title {
    position: relative;
}
.hc-offcanvas-nav .level-title::before {
    content: 'Sie befinden sich hier:';
    display: inline-block;
    position: absolute;
    font-size: 0.8rem;
    font-weight: 400;
    top: 0;
}
.hc-offcanvas-nav .nav-back-button {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
    -webkit-box-pack: justify!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between!important;
    background: var(--bg-color)!important;
    border-bottom: 2px dotted var(--bg-color)!important;
    border-top: 2px dotted var(--bg-color)!important;
    font-family: 'Montserrat', sans-serif!important;
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;

}
/* nav animations */
@media (min-width: 992px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

@keyframes slideIn {
    0% {
        -webkit-transform: translateY(-2rem);
        transform: translateY(-2rem);
        opacity: 0;
    }
    100% {
        -webkit-transform:translateY(0rem);
        transform:translateY(0rem);
        opacity: 1;
    }
    0% {
        -webkit-transform: translateY(-2rem);
        transform: translateY(-2rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }
    0% {
        -webkit-transform: translateY(-2rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

/* accordion */
.accordion {
    z-index: 1;
    position: relative;
    background-color: rgba(255, 255, 255, .75);
    backdrop-filter: blur(5px);
    border-radius: var(--br);
    max-width: 1000px;
    margin: 100px auto;
}
.accordion .indicator {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 40px 20px;
}

.accordion .btn-acc .indicator span {
    font-size: 28px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
    color: var(--cyan-green);
}
.accordion .btn-acc.collapsed .indicator span {
    font-size: 28px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
}
.accordion .card {
    border: none;
    border-bottom: none!important;
    background-color: transparent;
    margin-left: -75px;
}
.accordion h2 {
    margin-top: 15px;
}
.accordion h2, .accordion .heading-summary {
    padding: 0 70px;
}
.accordion .card:first-of-type::before {
    top: 44px;
}
.accordion .card:last-of-type::before {
    bottom: 44px;
}
.accordion .card-header {
    padding: 0;
    border-bottom: none;
    background-color: transparent;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.accordion .card .card-body {
    padding: 25px 146px 50px 146px;

}
.accordion .card .card-body h6 {
    margin-top: 1rem;

}
.accordion .card-header h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cyan-green);
    white-space: normal;
}
.accordion .card-header .subline {
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: var(--dark-cyan);
    white-space: normal;
}
.accordion .card-header .image {
    margin: 25px;
    min-width: 80px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 96px;
    flex-basis: 96px;
}
.accordion .card-header .image.accordion-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: #fff;
    border-radius: 5px;

}

.accordion .card-header .btn {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid var(--bg-color);
    padding-right: 60px;
}

/* embed */
.area-embed .embed > *, .area-embed .embed iframe {
    width: 100%;
}

.area-embed .embed {
    padding-bottom: 20px;
}
/* Cards */
.card {
    border-radius: var(--br);
    overflow: hidden;
    border: none;
}
.card .card-body  {
    padding: 30px;
}
.card .card-pic {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.card .card-date {
    display: inline-block;
    position: absolute;
    padding: 25px;
    right: 0;
    background: var(--cyan);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50%;
    width: 100px;
}
.card .card-title {
    font-weight: 400;
    font-size: 25px;
}
.card .card-text {
    margin-bottom: 30px;
    display: block;
}
.card .card-text p {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* news list */
.list-pic {
    display: block;
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;

}

/* icon teaser */
.area-icon-teaser-row.as-overlay h2,
.area-icon-teaser-row.as-overlay .heading-summary {
    color: #fff;
}
.area-icon-teaser-row h2
{
    color: var(--cyan-green);
}
.icon-row-werte {
    display: none;
}
.area-icon-teaser-row .heading-summary {
    color: var(--dark-cyan);
}
.teaser-icon > .icon {
    text-align: center;
    position: relative;
}

.modal-content .image,
.teaser-icon > .icon > .image,
.card-header > .image,
.infoblock-body > .image,
.counterblock-body > .image {
    position: relative;
    z-index: 2;
    margin: auto;
    width: 96px;
    height: 96px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: -o-linear-gradient(315deg, var(--green) 0%, var(--cyan) 100%);
    background: linear-gradient(135deg, var(--green) 0%, var(--cyan) 100%);
    border: 2px solid #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 15px;
    -webkit-transition: all ease 0.35s;
    -o-transition: all ease 0.35s;
    transition: all ease 0.35s;
    line-height: 80px;

}
.modal-content .image > span.material-icons,
.teaser-icon > .icon > .image > span.material-icons,
.card-header > .image > span.material-icons,
.infoblock-body > .image > span.material-icons,
.counterblock-body >  .image > span.material-icons {
    font-size: 40px;
    color: #fff;
}



.teaser-icon > .icon > .info {
    margin-top: -60px;
    background-color: rgba(255,255,255,1);
    border-radius: var(--br);
    border: none;
    padding: 30px;
    min-height: 400px;

}



.teaser-icon > .icon > .info > h3.title {
    font-size: 30px !important;
    line-height: 1.25em;
    margin-top: 1em;
}

.teaser-icon > .icon > .info > p, .teaser-icon > .icon > .info > div {
    color: var(--dark-cyan);
    line-height: 1.5em;
    margin: 20px;
}



.fa-selection .x-combo-list-item, .fa-selection .x-boundlist-item {
    font-family: "FontAwesome" !important;
    font-size: 26px !important;
}

.image-hotspot {
    position: absolute;
    background: rgba(100, 40, 180, 0.5);
}

.image-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: var(--br);
    background: #2aabeb;
}

.area-gallery-single-images {
    text-align: center;
}

.area-gallery-folder a ,
.area-gallery-single-images a {
    text-decoration: none;
}

.area-gallery-single-images .pimcore_block_entry,
.area-gallery-folder a img ,
.area-gallery-single-images a img {
    margin: 0.5em;
}

.featurette-divider {
    margin: 40px 0;
}

.img-responsive {
    width: 100%;
    height: auto;
}

.carousel-item .carousel-caption, .carousel-item .carousel-caption .hero-text {
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
}

.area-gallery-carousel .carousel-item {
    height: auto;
}

.area-gallery-carousel .carousel-inner .carousel-caption {
    bottom: 6vh;
}

/* Indicators list style */
.carousel-indicators.preview li {
    border: medium none;
    border-radius: 0;
    height: 54px;
    margin-bottom: 5px;
    margin-left: 0;
    margin-right: 5px !important;
    margin-top: 0;
    width: 100px;
}
/* Indicators images style */
.carousel-indicators.preview img {
    border: 2px solid #FFFFFF;
    float: left;
    height: 54px;
    left: 0;
    width: 100px;
    opacity: 0.7;
}
/* Indicators active image style */
.carousel-indicators.preview .active img {
    border: 2px solid #428BCA;
    opacity: 1;
}

/*
 * Side navigation
 *
 * Scrollspy and affixed enhanced navigation to highlight sections and secondary
 * sections of docs content.
 */

/* By default it's not affixed in mobile views, so undo that */
.bs-sidebar.affix {
    position: static;
}

/* First level of nav */
.bs-sidenav {
    /*margin-top: 30px;*/
    margin-bottom: 30px;
    padding-top:    10px;
    padding-bottom: 10px;
    text-shadow: 0 1px 0 #fff;
    background-color: #ffffff;
    border-radius: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.sticky {
    position: sticky;
    top: 8em;
    padding-bottom: 8em;
}

/* All levels of nav */
.bs-sidebar .nav > li > ul > li,
.bs-sidebar .nav > li {
    display: block;
}
.bs-sidebar .nav > li > a,
.bs-sidebar .nav li ul li a {
    display: block;
    color: #716b7a;
    padding: 5px 20px;
}

.bs-sidebar .nav > li > ul > li > a {
    text-decoration: none;
    color: #716b7a;
}

.bs-sidebar .nav li ul {
    list-style: none;
    text-decoration: none;
}

.bs-sidebar .nav > li > a:hover,
.bs-sidebar .nav > li > a:focus,
.bs-sidebar .nav > li > ul > li a:hover {
    text-decoration: none;
    background-color: #e5e3e9 !important;
}
.bs-sidebar .nav .active > a {
    color: var(--dark-cyan);
    font-weight: bold;
    background-color: transparent;
    border-right: 5px solid var(--dark-cyan);
}


.bs-sidebar .nav a:hover,
.bs-sidebar .nav a:focus {
    color: var(--dark-cyan);
}

/* Nav: second level (shown on .active) */
.bs-sidebar .nav .nav {
    display: none; /* Hide by default, but at >768px, show it */
    margin-bottom: 8px;
}
.bs-sidebar .nav .nav > li > a {
    padding-top:    3px;
    padding-bottom: 3px;
    padding-left: 30px;
    font-size: 90%;
}

/* Show and affix the side nav when space allows it */
@media screen and (min-width: 992px) {
    .bs-sidebar .nav > .active > ul {
        padding-left: 1em;
        display: block;
    }
    /* Widen the fixed sidebar */
    .bs-sidebar.affix,
    .bs-sidebar.affix-bottom {
        width: 213px;
    }
    .bs-sidebar.affix {
        position: fixed; /* Undo the static from mobile first approach */
        top: 80px;
    }
    .bs-sidebar.affix-bottom {
        position: absolute; /* Undo the static from mobile first approach */
    }
    .bs-sidebar.affix-bottom .bs-sidenav,
    .bs-sidebar.affix .bs-sidenav {
        margin-top: 0;
        margin-bottom: 0;
    }

    .languages {
        display: block;
    }
}


@media screen and (min-width: 1200px) {
    /* Widen the fixed sidebar again */
    .bs-sidebar.affix-bottom,
    .bs-sidebar.affix {
        width: 263px;
    }
}

/* small screen devices */
@media only screen and (max-width: 768px) {

    h2, .display-2 {
        line-height: 48px;
    }

    .sticky-top {
        position: relative;
    }

    .search-button {
        display: none !important;
    }

    #navbarCollapse .search-box {
        width: 100% !important;
    }

    .menu-links .dropdown-menu {
        width: 100%;
    }

    .menu-icons .dropdown-menu {
        position: absolute;
        top: 250%;
    }

    .menu-icons {
        margin-bottom: 30px;
    }

    .menu-icon {
        height: 23.5px;
        width: 23.5px;
    }

    .menu-icons > li > a {
        display: block !important;
    }

    ul.dropdown-menu, .navbar-nav li:hover > ul.dropdown-menu {
        display: none;
    }

    .main-menu-icon>a:after {
        font-family: "Font Awesome 5 Free"; font-weight: 600; content: "\f067";
        float: right;
        border: none;
        padding: 0px 5px 0 5px;
    }

    .main-menu-icon.active-icon>a:after {
        font-family: "Font Awesome 5 Free"; font-weight: 600; content: "\f068";
        float: right;
        border: none;
        padding: 0px 5px 0 5px;
    }

    .search-toggle {
        margin-top: 10px !important;
    }

    /*hide sidebar*/
    .sidebar {
        display: none;
    }

    .area-gallery-carousel .carousel-inner .carousel-caption {
        top: 4vh;
    }

    .area-gallery-carousel .carousel-inner .carousel-caption h3 {
        line-height: 1em;
    }

    .area-gallery-carousel .carousel-indicators {
        display: none;
    }
}

/* Breadcrumbs */
.breadcrumb-header a {
    color: var(--dark-cyan);
}

.breadcrumb-header a:hover {
    color: var(--cyan-green);
}
.breadcrumb-section {
    padding: 15px;
    background: transparent;
    color: var(--dark-cyan)!important;
    font-size: .8rem;
}


.thumbnail-examples .row {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

section img {
    max-width: 100%;
}

section picture img {
    height: auto;
}

.thumbnail-examples h5 {
    margin-top:1em;
    line-height: 1em;
    font-size: 26px;
}

.thumbnail-examples .img-container {
    background: url(/static/images/transparent-background-placeholder.png);
}

.image-container {
    position:relative;
    max-width: 100%;
}

.image-hotspot {
    position: absolute;
    background: rgba(235, 105, 9, 0.2);
}

.image-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: var(--br);
    background: #2aabeb;
}


.detail-price {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 22px;
}

.detail-price.original {
    font-size: 20px;
    text-decoration: line-through;
    font-weight: normal;
    letter-spacing: 2px;
    line-height: 22px;
}

.detail-tax, .detail-tax p {
    font-size: 14px;
}

.filter .hide-me[aria-expanded="true"] {
    display: none;
}

/* SWIPER */
/* overflows */
.content-swiper-b {
    overflow: hidden;
}
.image-slider-wrap {
    margin-top: -250px;
}
.image-slider-intro-img {
    display: inline-block;
    height: 300px;
    width: 300px;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    border: 1px solid #fff;
}
.image-slider-intro-text {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
}
.thumb-overlay {
    margin-top: -100px;
    margin-bottom: 50px;
}
.thumb-wrap {
    padding: 50px;
    border-radius: var(--br);
    background: #fff;
    position: relative;
    z-index: 2;
}
.pimcore_area_image-slider {
    margin-bottom: 400px;
}
.main-content > div.pimcore_area_image-slider:nth-last-child(2) {
    margin-bottom: 100px;
}


.image-swiper img {
    border-radius: 10px;

}
.topswiper {
    height: 100vh;
    /*height: 885px;*/
    background: #fff;
}
.topswiper .swiper-img {
    position: absolute;
    top: 0;
    left: 0;
}

.topswiper .swiper-caption {
    position: relative;
    margin-top: 225px;
    width: 750px;
    max-width: 100%;
}

.topswiper .swiper-caption h2 {
    color: #fff;
    text-shadow: 2px 2px 5px rgb(0,0,0,0.2)
}
.video-caption .category,
.topswiper .swiper-caption .category,
.content-swiper-wrap .category,
.content-swiper-b-wrap .caption-wrap .category {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: var(--cyan)!important;
    font-weight: 400;
    font-size: 0.9rem;
    background-color: rgba(255,255,255,.85);
    padding: 3px 8px;
    letter-spacing: 1px;
    border-radius: 5px;
}
.swiper-slide > div {
    background-position: center;
}
.swiper-img {
    height: 100%;
    width: 100%;
    display: block;
    background-size: cover;
    background-position: bottom left;
}

.testimonial-swiper {
    min-height: 550px;
    overflow:hidden;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;


}
.testimonial-swiper .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: var(--cyan-green);
}
.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
    color: var(--cyan-green);
}
.testimonial-swiper h5 {
    position: relative;
    line-height: 40px;
    padding-top: 20px;
    z-index: 5;
    color: var(--cyan-green);
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-swiper svg path {
    opacity: .85;
}
.testimonial-swiper h5 small {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    display: inline-block;
    margin-top: 20px;
    position: relative;
    z-index: 5;
    color: var(--dark-cyan);
    border-top: 2px dotted var(--dark-cyan);
    padding-top: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.testimonial-swiper .ts-swiper-wrap {
    margin: 100px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

}
.testimonial-swiper .ts-swiper-caption {
    align-items: flex-end;

}
.testimonial-swiper .ts-swiper-pic {
    height: 400px;
    width: 400px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
    border: 2px solid #fff;
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px;
    -ms-flex-negative: 0;
    flex-shrink: 0;

}
.testimonial-swiper .svg {
    display: block;
    z-index: 1;
    position: absolute;
    left: -50px;
    top: -55px;
    opacity: .8;
}
.content-swiper .swiper-wrapper {
    height: 700px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.content-swiper .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}
.content-swiper .content-swiper-pic {
    height: 55%;
    width: 91%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    margin-top: 0;
}
.content-swiper-wrap {
    position: relative;
    background-color: #fff;
    height: 1000px;
    background-size: cover;
    z-index: 0;
    background-position: center right;
    display: flex;
    align-items: flex-end;
}
.content-swiper-b-wrap {
    position: relative;
    padding: 0;
    background-color: #fff;
    height: 1000px;
}
.content-swiper-wrap .inner-wrap {
    width: 650px;
}
.content-swiper-wrap > .container {
    z-index: 3;
    padding-top: 100px;
}
.content-swiper-wrap::before {
    content: '';
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,158,227,0.75)), color-stop(40%, rgba(255,255,255,0)), color-stop(50%, rgba(255,255,255,0)), to(rgba(0, 0, 0, 0.4)));
    background: -o-linear-gradient(top, rgba(0,158,227,0.75) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 50%, rgba(0, 0, 0, 0.4) 100%);
    background: linear-gradient(180deg, rgba(0,158,227,0.75) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 50%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.content-swiper-b .content-swiper-pic {
    height: 100%;
    background-size: cover;
}
.content-swiper-b .topslide,
.content-swiper .topslide{
    max-width: none;
    object-fit: cover;
    height: 100%;
    position: relative;
    z-index: -1;
    visibility: hidden;
}
.content-swiper-b {
    height: 1000px;
    position: relative;
    z-index: 0;
}
.content-swiper-b-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,158,227,0.75)), color-stop(40%, rgba(255,255,255,0)), color-stop(50%, rgba(255,255,255,0)), to(rgba(0, 0, 0, 0.4)));
    background-image: -o-linear-gradient(top, rgba(0,158,227,0.75) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 50%, rgba(0, 0, 0, 0.4) 100%);
    background-image: linear-gradient(180deg, rgba(0, 158, 227, 0.75) 0%, rgb(3 45 64 / 48%) 10%, rgb(3 45 64 / 5%) 30%, rgb(3 45 64 / 5%) 50%, rgb(3 45 64) 100%);
    width: 100%;
    height: 1000px;
    z-index: 1;
}
.content-swiper-b .inner-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;

}


/* Swiper Scroll */
.line-container {
    width: 1px;
    height: 44px;
    position: relative;
    margin-bottom: 100px;

}
.line {
    position: absolute;
    width: 2px;
    height: 0px;
    background-color: #fff;
    top: 0;
    bottom: initial;
    -webkit-animation: line-animation 2.5s ease-in-out 0s infinite normal;
    animation: line-animation 2.5s ease-in-out 0s infinite normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}
.line::before {
    content: ' ';
    width: 16px;
    height: 16px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
    position: absolute;
    bottom: 0;
    -webkit-animation: arrow-animation 2.5s ease-in-out 0s infinite normal;
    animation: arrow-animation 2.5s ease-in-out 0s infinite normal;
}
.jumper {
    position: absolute;
    bottom: 0;
    z-index: 10;
    width: 100%;
}
.jumper a {
    width: 75px;
    height: 75px;
}
@-webkit-keyframes line-animation {
    0% {height: 0px; top: 0px; opacity: 0;}
    50% {height: 44px; top: 0px; opacity: 1;}
    100% {height: 0px; top: 44px; opacity: 0;}
}
@keyframes line-animation {
    0% {height: 0px; top: 0px; opacity: 0;}
    50% {height: 44px; top: 0px; opacity: 1;}
    100% {height: 0px; top: 44px; opacity: 0;}
}

@-webkit-keyframes arrow-animation {
    0% {opacity: 0}
    50% {opacity: 1}
    100% {opacity: 0}
}

@keyframes arrow-animation {
    0% {opacity: 0}
    50% {opacity: 1}
    100% {opacity: 0}
}


/* Content Wrap */

.jumbotron-heading {
    max-width: 1000px;
    margin: 0 auto;
}
.pimcore_area_text-divider .heading-summary.one-column,
.pimcore_area_divider .heading-summary.one-column,
.pimcore_area_hero-teaser .heading-summary.one-column {
    -webkit-column-count: 1!important;
    -moz-column-count: 1!important;
    column-count: 1!important;
    max-width: 1000px;
    margin: 0 auto;
}
.pimcore_area_text-divider .heading-summary:not(.one-column),
.pimcore_area_hero-teaser .heading-summary:not(.one-column),
.pimcore_area_divider .heading-summary:not(.one-column)
{
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
}
.pimcore_area_text-divider .heading-summary:not(.one-column) p,
.pimcore_area_hero-teaser .heading-summary:not(.one-column) p,
.pimcore_area_divider .heading-summary.one-column p
{
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}
.pimcore_area_divider .jumbotron.divider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 100px 0;
    margin-top: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.pimcore_area_divider .jumbotron.divider.is-skewed,
.pimcore_area_divider .jumbotron.divider.is-skewed-reverse {
    margin-top: 350px;
}
.is-clipped {
    background: var(--cyan-gradient);
    clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0% 84%);
    padding: 100px 0;
}
.is-clipped::before {
    content: none;
}
.pimcore_area_divider .as-overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 180px;
}

/* HEADROOM */
header {
    position: fixed;
    z-index: 10000;
    width: 100%;
    top: 0;
}

.headroom {
    will-change: transform;
    -webkit-transition: -webkit-transform 200ms ease-in-out;
    transition: -webkit-transform 200ms ease-in-out;
    -o-transition: transform 200ms ease-in-out;
    transition: transform 200ms ease-in-out;
    transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;
}
.headroom:not(.headroom--pinned, .headroom--top) {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}
/* pinned */
.headroom--pinned {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}
.headroom--pinned .logo-container {
    background: url("../images/signet_mm.svg") no-repeat left;
    height: 100px;
    width: 100px;
    -webkit-transform: translateY(35px);
    -ms-transform: translateY(35px);
    transform: translateY(35px);
    -webkit-transition: all ease-in-out 0.35s;
    -o-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
    opacity: 1;
    z-index: 5;
}
.headroom--pinned .logo-container #logo {
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
    -webkit-transition: all ease-in-out 0.35s;
    -o-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
}
.headroom--pinned .site-header {
    background-color: rgba(255,255,255,1);
    -webkit-transition: all ease-in-out 0.35s;
    -o-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.headroom--pinned .site-header .menu-links > li > a {
    color: var(--cyan);
    -webkit-transition: all ease-in-out 0.35s;
    -o-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
}
.headroom--pinned .site-header .menu-links > li > a:after {
    background: var(--cyan);
    -webkit-transition: all ease-in-out 0.35s;
    -o-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
}
.headroom--pinned .toggle {
    right: 0;
}
/*.headroom--pinned .toggle > span,
.headroom--pinned .toggle > span::before,
.headroom--pinned .toggle > span::after {
    height: 2px;
    background: var(--cyan);
}*/

/* unpinned */
.headroom--unpinned {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);

}
.headroom--unpinned .site-header {
    background-color: rgba(255,255,255,1);
    -webkit-transition: all ease-in-out 0.35s;
    -o-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
}
.headroom--unpinned .logo-container {
    background: url("../images/signet_mm.svg") no-repeat left;
    height: 100px;
    width: 100px;
    opacity: 0;
}
.headroom--unpinned .logo-container #logo {
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
    -webkit-transition: all ease-in-out 0.35s;
    -o-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
}


/* top */
.headroom--top .logo-container {
    background: none;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all ease-in-out 0.35s;
    -o-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
    margin-top: 10px;
    height: 60px!important;
    width: 275px!important;
}
.headroom--top .logo-container #logo {
    -webkit-transform: translateY(0)!important;
    -ms-transform: translateY(0)!important;
    transform: translateY(0)!important;
    opacity: 1!important;
    -webkit-transition: all ease-in-out 0.35s;
    -o-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
}
.headroom--top .site-header, .headroom--top.headroom--pinned .site-header {
    /*background-color: var(--cyan);*/
    background-color: transparent;
    -webkit-transition: all ease-in-out 0.35s;
    -o-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
    -webkit-box-shadow: 0px 2px 4px rgb(255, 255, 255, .15)!important;
    box-shadow: 0px 2px 4px rgb(255, 255, 255, .15)!important;
}

.headroom--top .site-header .menu-links:hover > li:last-of-type > a {
    color: var(--cyan)!important;
    border: 2px solid var(--cyan);
    -webkit-transition: all ease-in-out 0.35s;
    -o-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
}

.headroom--top .menu-links > li:last-of-type > a {
    background-color: transparent;
    border-color: #fff;
    color: #fff!important;
}
.headroom--unpinned .menu-links > li:last-of-type > a {
    background-color: transparent;

}
.headroom--top .site-header .menu-links > li > a {
    color: #fff;
    -webkit-transition: all ease-in-out 0.35s;
    -o-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
}
.headroom--top .site-header .menu-links  li:hover a  {
    color: var(--cyan)!important;
    -webkit-transition: all ease-in-out 0.35s;
    -o-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
}
.headroom--top .site-header .menu-links:hover  li a  {
    color: var(--cyan)!important;
    -webkit-transition: all ease-in-out 0.35s;
    -o-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
}

.headroom--top .site-header .menu-links > li > a:after {
    background: var(--cyan)!important;
    -webkit-transition: all ease-in-out 0.35s;
    -o-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
}
.headroom--top .toggle {
    right: 0;
}
/*.headroom--top .toggle > span,
.headroom--top .toggle > span::before,
.headroom--top .toggle > span::after {
    height: 2px;
    background: #fff;
}*/

/* Accordion Snippets */
.datalinks-area {
    margin: 30px 0;
}

.datalink-link {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
}
.datalink-img {
    height: 100px;
    width: 100px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;

}
.datalink-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    color: #000000;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: initial;
    overflow-wrap: break-word;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    text-align: center;
    margin-top: 10px;
}
.datalink-link {
    transform: translateY(0);
    transition: var(--transition);
}
.datalink-link .datalink-img {
    transform: translateY(0);
    transition: var(--transition);
    border: 8px solid #fff;
}
.datalink-link:hover .datalink-img {
    transform: translateY(-10px);
    transition: var(--transition);
}
.datalink-link .datalink-title {
    color: #000;
    transition: var(--transition);
}
.datalink-link:hover .datalink-title {
    color: var(--cyan);
    transition: var(--transition);
}
/* BRD-Karte */

.section-lotto-refs {
    background-image: -o-linear-gradient(315deg, var(--green) 0%, var(--cyan) 100%);
    background-image: linear-gradient(135deg, var(--green) 0%, var(--cyan) 100%);
    background-repeat: no-repeat;
    background-position: center;
    padding: 200px 0;
    margin-top: -400px;
    margin-bottom: -400px;
}
svg#brd-svg {
    -webkit-filter: drop-shadow(0 0.35rem 0.75rem rgba(3, 45, 64, 0.25))!important;
    filter: drop-shadow(0 0.35rem 0.75rem rgba(3, 45, 64, 0.25))!important;
}

svg#brd-svg a.active .st0,
svg#brd-svg a.active .st1{
    fill:#FFFFFF;
    stroke:#dfdfdf;
    stroke-miterlimit:10;
    -webkit-transition: var(--transition)!important;
    -o-transition: var(--transition)!important;
    transition: var(--transition)!important;
}
svg#brd-svg a.active:hover .st0,
svg#brd-svg a.active:hover .st1{
    fill: #df0026;
    -webkit-transform: translate(2px 2px);
    -ms-transform: translate(2px 2px);
    transform: translate(2px 2px);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: var(--transition)!important;
    -o-transition: var(--transition)!important;
    transition: var(--transition)!important;
}
svg#brd-svg a.inactive .st0,
svg#brd-svg a.inactive .st1{
    fill:var(--light-bg-color);
    stroke: #dfdfdf;
    stroke-miterlimit:10;
}

.brd.active {
    position: relative;
}

/*.brd-sidebar {
    position: relative;
    padding-top: 175px;
    width: 100%;
    max-width: 450px;

}*/

.target_brd {

    margin-top: 50px;
}
.brd-info-wrap {
    border-radius: var(--br);
    background-color: #fff;
}

.brd-info-logo {
    display: block;
    width: 300px;
    height: 200px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
}
.popover {
    border-radius: 50%;
    height: 135px;
    width: 135px;
    display: inline-block;
    position: relative;
    border: none;
    background: transparent;
}
.brd-info-body {
    background-color: #fff;
    border-radius: var(--br);
    padding: 30px 50px 50px 50px;
}
.brd-info-body ul {
    padding-left: 20px;
    margin: 0;
}
.brd-info-ttlogo {
    width: 200px;
    height: 200px;
    background-size: 110%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -100px;
    left: 50%;
    border-radius: 50%;
    background-color: #fff;
    margin-left: -100px;
}
.brd-info-img {
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    height: 300px;
    display: block;
    background-size: cover;
}
/*.brd.active.first path {
    fill: #df0026!important;
}*/

/* search bar */

.search-toggle {
    background-image: url(/static/images/icons/search.svg);
    background-repeat: no-repeat;
    height: 100%;
    background-position: center;
    background-size: contain;
    margin-top: 3px;
}

.search-toggle.active {
    background-image: url("/static/images/icons/close.svg");
}

.search-input:focus {
    outline: none;
}

#navbarCollapse .search-box {
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 100%;
    max-height: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    background-color: var(--cyan);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

#navbarCollapse .search-box .search-input {
    width: 100%;
    height: 100%;
    padding: 0 2em;
    border: 0;
    background-color: var(--cyan);
    opacity: 0;
    color: #fff;
    text-transform: uppercase;
    caret-color: #fff;
}

#navbarCollapse .search-box .search-input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#navbarCollapse.show .search-box {
    max-height: 4em;
}

#navbarCollapse.show .search-box .search-input {
    opacity: 1;
}

#autoComplete_results_list {
    width: 100%;
}
.autoComplete_result {
    margin: 0;
    padding: 0.6rem 0 0.6rem 2.5rem;
    max-width: 100%;
    border: 0;
    list-style: none;
    text-align: left;
    font-size: 1.1rem;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    background-color: rgba(0, 0, 0,0.6);
    color: var(--light-gray);
}

.autoComplete_result:last-child {
    border-radius: 0;
}

.autoComplete_highlighted {
    color: #ffffff;
    font-weight: normal;
}

.autoComplete_result:hover,
.autoComplete_result:focus {
    cursor: pointer;
    background-color: var(--dark-cyan);
    border: 0;
}

#autoComplete:focus::-moz-selection {
    background-color: var(--light-cyan);
}

#autoComplete:focus::selection {
    background-color: var(--light-cyan);
}


.form-signin {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
}
.form-signin .checkbox {
    font-weight: 400;
}
.form-signin .form-control {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
}
.form-signin .form-control:focus {
    z-index: 2;
}
.form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.pimcore_tag_video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.pimcore_tag_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 5px;
    right: 5px;
    display: none;
    z-index: 1000;
    transition: var(--transition);
    transition-duration: 1s;
    padding: 10px!important;
    height: 50px;
    width: 50px;
}

.display-block.back-to-top {
    transition: var(--transition);
    transition-duration: 1s;
}

.custom-product-card .product-img {
    position: relative;
}

/** events page **/
#vueapp .header {
    background: #f2f2f2;
    border: 1px solid #ddd;
    padding: 1em;
}

#vueapp .back-button {
    position: absolute;
    width: 130px;
    z-index: 1;
}

#vueapp h3 {
    line-height: 1;
    margin-top: .5em;
}

#vueapp .badge {
    font-size: 80%;
    font-weight: 400;
}

[v-cloak] {
    display: none;
}



.iframe-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.iframe-responsive {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/*@media (min-width: 992px) {
    .has-sub span.material-icons {
        display: none;
    }
}*/
@media (min-width: 1200px) {
    .container {
        max-width: 95%;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}


@media (max-width: 1440px) {
    .menu-links > li {
        padding: 1rem 1.25rem!important;
    }
    .menu-links > li > a {
        font-size: 16px!important;
    }
    .navbar.site-header > .container {
        max-width: 100%;
    }
    .inner-wrap {
        -webkit-transform: translate3d(-100px,0,0);
        transform: translate3d(-100px,0,0);
    }
    .headroom--top .logo-container, #logo {
        width: 225px!important;

    }
}
@media (max-width: 1340px) {
    .headroom--top .logo-container {
        background: url(../images/signet_mm.svg) no-repeat left;
        width: 80px!important;
        height: 80px!important
    }
    .logo-container #logo {
        display: none;
    }
    video {
        width: auto;
        height: 100%;
    }
}
@media (max-width: 1340px) and (orientation: landscape) and (max-height: 800px) {
    .video-wrap,
    .video-wrap::before,
    .content-swiper-b-wrap,
    .content-swiper-wrap {
        height: 800px;
    }
}
@media (max-width: 1280px) {
    .container {
        max-width: 95%;
    }
    .menu-links > li {
        padding: 1rem .75rem!important;
    }
    .menu-links > li:last-of-type > a {
        padding: 5px 15px !important;
    }
    .hc-nav-open .toggle > span, .hc-nav-open .toggle > span::before, .hc-nav-open .toggle > span::after {
        height: 2px;
        background: var(--cyan);
        -webkit-transition: var(--transition)!important;
        -o-transition: var(--transition)!important;
        transition: var(--transition)!important;
    }
    .hc-nav-open header {
        background: #fff;
        -webkit-transition: var(--transition)!important;
        -o-transition: var(--transition)!important;
        transition: var(--transition)!important;
    }
    .hc-offcanvas-nav::after, .hc-offcanvas-nav .nav-wrapper::after {
        background: -o-linear-gradient(74deg, rgba(0,158,227,1) 25%, rgba(150,203,156,0.4) 100%);
        background: linear-gradient(16deg, rgba(0,158,227,1) 25%, rgba(150,203,156,0.4) 100%);
    }
    .btn-forward {
        padding: 20px;
        font-size: 20px;
    }
    .contactblock::before, .section-hero::before {
        top: -125px;
    }
    .video-wrap,
    .video-wrap::before,
    .content-swiper-b-wrap,
    .content-swiper-wrap {
        height: 800px;
    }
    footer {
        padding-top: 310px;
        margin-top: -100px;
    }
    .accordion {
        margin-left: 30px;
    }

}

@media (max-width: 1024px) {
    body, html {
        font-size: 16px;
        line-height: 1.55;
        max-width: 100%;
    }
    .pimcore_area_hero-teaser {
        margin-bottom: 30px;
        z-index: 3;
    }
    .infoblock-wrap .infoblock-teaser:not(:first-of-type) .infoblock-body {
        margin-top: -100px;
    }
    .text-pic .pic-wrap .pic, .text-pic .text-wrap {
        text-align: left!important;
        background-position: center!important;
    }
    .colored-section div.rellax-h {
        margin-left: 0!important;
    }

    .tb-pic {
        height: 300px!important;
        width: 300px!important;
        background-size: cover!important;
    }
    .hc-offcanvas-nav.disable-body::after, .hc-offcanvas-nav .nav-wrapper::after {
        content: '';
        z-index: 9990;
        padding-top: 100px;
    }

    .filtr-control ul {
        padding: 20px;
    }
    .filtr-control ul li {
        padding: 5px 10px;
    }
    .inner-wrap {
        max-width: 500px;
        height: 500px;
    }
    .accordion .card-header .image {
        margin: 0;
        margin-right: 15px;
        min-width: 70px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        -ms-flex-preferred-size: 70px;
        flex-basis: 70px;
        height: 70px;
    }

    .accordion .card {
        margin-left: -35px;
    }
    .accordion .card .card-body {
        padding: 15px 25px 15px 85px;
    }
    .accordion .indicator {
        padding: 25px 10px;
    }
}
@media (max-width: 992px) {
    .infoblock-wrap .infoblock-teaser:not(:first-of-type) .infoblock-body {
        margin-top: 75px;
    }

}
@media (max-width: 768px) {
    .content-swiper .swiper-slide {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .data-detail .detail-pic {
        height:350px;
    }
    .data-detail .detail-wrap {
        margin-top: 100px;
    }
    .jumbotron.divider {
        min-height: 600px!important;
        margin-top: -100px!important;
        margin-bottom: 0!important;
    }
    .as-circle .inner-wrap {
        background: none;
        height: auto !important;
        max-width: 1000px;
        border: none;
        box-shadow: none;
        margin-bottom: 100px;
    }
    .as-overlay h3 {
        color: var(--cyan-green)!important;
    }
    .svg-werte {
        display: none;
    }
    .icon-row-werte {
        display: block!important;
    }
    h3 {
        font-size: 1.75rem;
    }
    .thumb-wrap {
        padding: 30px;
    }
    .thumb-overlay {
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .image-swiper2 .swiper-slide img {
        max-width: 200%;
    }
    .image-swiper .swiper-slide img {
        max-width: 250%;
        margin-bottom: 10px;
    }
    .image-swiper .swiper-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .area-icon-teaser-row .teaser-icon {
        padding-bottom: 50px;
    }
    .accordion .card-header h5 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--cyan-green);
        white-space: normal;
    }
    .text-pic .pic {
        height: 250px;
    }
    .video-caption .category, .topswiper .swiper-caption .category, .content-swiper-wrap .category, .content-swiper-b-wrap .caption-wrap .category {
        background: rgba(255,255,255,0.85);
        padding: 2px 5px;
        color: var(--cyan-green)!important;
    }
    .teaser-icon > .icon > .info {
        min-height: auto;
    }
    .teaser.list {
        height: 500px;
    }
    .contactblock .pic-container {
        text-align: center;

    }
    .contactblock .contact-pic {
        margin-right: 0!important;
    }
    .teaser.list .list-title {
        margin: 0 auto;
        font-size: 1.5rem;
        margin-top: 10px;
    }
    .teaser.list .list-body {
        padding-left: 0;
    }
    .teaser.list .list-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .testimonial-swiper .ts-swiper-wrap {
        margin: 100px 25px;
        padding: 0;
    }
    .ts-swiper-caption {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .content-swiper-wrap .inner-wrap {
        height: 250px;
    }

    .content-swiper .content-swiper-pic {
        height: 55%;
        width: 100%;
        background-position: center;
        margin-top: 0;
    }
    .content-swiper .swiper-wrapper {
        height: 450px;
    }
    .list-section {
        margin-top: 120px;
    }
    .filtr-control ul {
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .filtr-control ul li {
        margin-right: 0!important;
        margin-bottom: 5px!important;
    }
    .blocklink {
        height: 250px;
        margin: 1rem 0!important;
        padding: 30px!important;
    }
    .contactblock .contact-name,
    .contactblock .contact-function,
    .contactblock .contact-email,
    .contactblock .contact-phone {
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

    }
    .arrow-right {
        padding: 15px 0;
        width: 100%;
    }
    .counterblock-body {
        text-align: center;
        padding-left: 0!important;
    }
    .colored-section {
        margin: 0;
    }
    .heading-summary. heading-wrap {
        max-height:999999px;
    }
    .heading-summary p {
        -webkit-text-size-adjust: none;
        -moz-text-size-adjust: none;
        -ms-text-size-adjust: none;
        text-size-adjust: none;
        font-size: 1rem;
    }
    .contactblock .contact-pic {
        text-align: center;
    }
    .inner-wrap {
        background: transparent!important;
        -webkit-transform: none!important;
        -ms-transform: none!important;
        transform: none!important;
        max-width: 100%!important;
        padding: 15px!important;
        border-top: none!important;
        border-left: none!important;
        -webkit-box-shadow: none!important;
        box-shadow: none!important;

    }
    .contactblock::after, .section-hero::after {
        bottom: -100px;
    }
    .pimcore_area_hero-teaser {
        margin-bottom: 0;
        z-index: 3;
    }
    .inner-wrap .display-1, .inner-wrap .btn-arrowlink, .inner-wrap * {
        color: #fff!important;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    .pimcore_area_text-divider .heading-summary:not(.one-column),
    .pimcore_area_hero-teaser .heading-summary:not(.one-column),
    .pimcore_area_divider .heading-summary:not(.one-column) {
        -webkit-column-count: 1!important;
        -moz-column-count: 1!important;
        column-count: 1!important;
    }
    .pimcore_area_divider .divider {
        height: auto!important;
        padding: 100px 0;

    }
    h1, h2, h3, h4 {
        -webkit-hyphens: auto!important;
        -ms-hyphens: auto!important;
        hyphens: auto!important;
    }
    .data-list .teaser a {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    h1, .display-1 {
        font-size: 2.5rem;
        line-height: 2.75rem;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .counterblock-body {
        border-left: none;
    }
    .divider {
        margin-top: -150px;
    }
    .pimcore_area_image-slider {
        margin: 400px 0;
    }
    .teaser.list {
        height: 480px;
    }
    .filtr-control, .filtr-control ul  {
        flex-direction: column;
    }
    .filtr-control ul  {
        padding: 0;
        margin-bottom: 20px!important;
    }
    .filtr-control input  {
        max-width: 100%!important;
        min-width: auto;
    }
    .timeline-pic {
        margin-top: 0;
    }

    .teaser.list .list-body-bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 25px;
    }
    .teaser.list .list-body-bottom .btn-list {
        position: absolute;
        right: 0;
    }
    .teaser.list .list-pic {
        height: 150px;
        width: 150px;
        -ms-flex-preferred-size: 150px;
        flex-basis: 150px;
    }
    .text-pic .pic {
        height:300px;
        width: 100%;
        position: relative;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top center;
    }
    .infoblock-teaser {
        width: 100%;
        padding: 0 30px;
    }
    h1 {
        font-size: 2.5rem!important;
        line-height: 50px!important;
    }
    .nav-pills .nav-link {
        display: block;
        width: 100%;
    }

    h2 {
        font-size: 1.85rem;
        line-height: 36px;
    }
    body, html {
        font-size: 15px;
    }

    .breadcrumb-section {
        display: none;
    }

    .ts-swiper-caption {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .testimonial-swiper .ts-swiper-wrap {
        padding: 0;
        margin: 0 auto;
        max-width: 80%;
    }
    footer .widget-img {
        margin: 15px 0!important;

    }
    footer .footer-widget {
        text-align: center;

    }
    .kontakt-footer-wrap {
        margin-top: 30px;
        -webkit-box-align: center!important;
        -ms-flex-align: center!important;
        align-items: center!important;
    }

}
