:root {
    --color-primary: #0069B3;
    --color-secondary: #faaf00;

    --color-primary-muted: #80B4D9;
    --color-dynamic-text: #000000;
    --color-teaser-wrapper: #0069B2;
    --color-footer: #0069b2;
    --font-family: Roboto, sans-serif;
    --font-size: 18px;
    --lightbox: rgb(0 0 0 / 0.75);
    --carousel-text: #fff;
    --table-row-alt-color: #D4E1F4;

}

html {
    min-height: 100vh;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden !important;
}
main {
    z-index: 4;
    flex: 1;
}
.logocontainer {
    height: 100px;
    align-items: center;
    display: flex;
}
.header-wrapper {
    z-index: 45;
    position: sticky;
    /*noinspection CssInvalidPropertyValue*/
    position: -webkit-sticky;
    width: 100%;
    top:0;
}

.header-bar {
    z-index: 100;
}

.nd-top-bar,
.nd-top-bar ul {
    z-index: 50;
    background-color: #FFFFFF;
}

.menu .is-submenu-item > a:hover,
.menu .is-active > a,
.menu .is-active-special > a {
    transition: all ease-in-out 0.2s;
    background-color: #B5C9E9;
    color: #FFFFFF;
}

.menu li.is-active > .submenu-toggle,
.menu li.is-active-special > .submenu-toggle {
    height: 43px;
}

.sticky-container {
    z-index: 3;
    min-width: 240px;
}

.is-dropdown-submenu {
    min-width: 300px;
}

.dropdown.menu.vertical>li>a::after,
.drilldown .is-drilldown-submenu-parent>a::after,
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right>a::after,
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left>a::after {
    display: none !important;
}

.menu.align-center li {
    flex-direction: column;
}

span.sub-arrow {
    display: none;
    line-height: 24px;
}

@media (min-width: 1024px) {
    span.sub-arrow {
        display: inline-block;
    }
}

.is-drilldown,
.is-drilldown-submenu-parent {
    width: 100%;
    text-align: center;
}

.align-special {
    align-items: center;
    justify-content: center;
    @media (min-width: 640px) {
        justify-content: right;
    }
}

.breadcrumbs {
    margin-top: 75px;
}
.breadcrumbs {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
    display: none;
}

.nd-breadcrumb-icon {
    width: 25px;
    height: 25px;
    display: none;
}
.breadcrumbs li {
    display: flex;
    text-transform: none;
    align-items: center;
}
.breadcrumbs li>a {
    font-size: 16px;
    padding: 0 1em;
}
.breadcrumbs :not([aria-current="page"]) {
    color: #575756;
}

@media (min-width: 640px) {
    .breadcrumbs {
        display: block;
    }
    .nd-breadcrumb-icon {
        display: inline-block;
    }
    .breadcrumbs li:first-child>a {
        padding-left: 0;
    }
}
@media (min-width: 640px) and (max-width: 1310px) {
    .breadcrumbs {
        padding-left: 3rem;
    }
}
footer.callout {
    margin-bottom: 0;
}
footer ul.menu.vertical>li>a {
    padding-left: inherit;
}

footer.callout {
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.text h4 {
    color: var(--color-primary);
}

.text ul {
    list-style: none;
    padding-left: 0;
    position: relative;
}
.text ul > li {
    position: relative;
    margin-left: 0.1rem;
    padding-left: 1rem;
    line-height: 35px;
}
.text ul > li::before {
    content:"";
    position: absolute;
    top: 18px;
    left: 0;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    display: inline-block;
    line-height: 2rem;
    color: var(--color-primary-muted);
    background: var(--color-primary-muted);
    text-align: center;
    margin-right: 0.5rem;
}
a.button-wrapper {
    padding-top: 1em;
    display: inline-block;
    width: fit-content;
    margin-bottom: 15px;
}
a.button-wrapper span {
    display: block;
    border-style: solid;
    border-width: 0 0 0 0;
    border-color: #FFFFFF;
    border-radius: 0 0 0 0;
    padding: 10px 20px 10px 20px;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    background-color: var(--color-primary);
    transition-duration: .3s;
    transition-property: transform, background-color;
    transition-timing-function: ease-out;
    color: #FFFFFF;
}
a.button-wrapper:hover span {
    background-color: var(--color-primary-muted);
    transform: translateY(-0.5em);
    color: var(--color-primary);
}

.fa, .fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    background-color: var(--color-primary);
    color: #fff;
    border: 4px solid var(--color-secondary);
    outline: none;
    cursor: pointer;
    padding: 10px 20px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s, opacity 0.3s;
}

.showScrollBtn {
    transform: translateY(0);
    opacity: 1;
}

.scrollToTopBtn:hover {
    background-color: var(--color-primary-muted);
}

.fillwhite {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg) scaleX(300%) scaleY(50%) translateY(-50%);
}
.spacer-tiny {
    height: 50px;
}
.spacer-small {
    height: 100px;
}
.spacer-medium {
    height: 150px;
}
.spacer-large {
    height: 200px;
}
.spacer-huge {
    height: 250px;
}

.spacerimg {
    max-width: 100%;
}

.container {
    z-index: 2;
}

.page-headline-wrapper {
    margin: 0;
    padding: 0 15px;
    display: flex;
    max-width: 100%;
    width: 100%;
    flex-direction: column;
    align-items: start;
    align-self: center;
}
.page-headline {
    color: #FFFFFF;
    font-weight: 600;
}
.is-homepage .page-headline {
    padding-top: 20px;
    padding-bottom: 70px;
    font-size: 50px;
    line-height: 50px;
    color: #FFFFFF;
    max-width: 100%;
}
.page-headline-muted {
    font-size: 25px;
    color: var(--color-primary-muted);
    text-transform: none;
    margin-top: -20px;
}
@media (min-width: 1024px) {
    .page-headline-wrapper {
        padding: 0;
    }
    .is-homepage .page-headline-wrapper {
        margin-top: 0;
        margin-bottom: 500px;
        margin-left: 65px;
        padding-top: 20px;
        padding-right: 210px;
        padding-bottom: 0;
        padding-left: 0;
        align-self: start;
    }
    .is-homepage .page-headline {
        padding: 0;
        font-size: 100px;
        line-height: 150px;
        color: #FFFFFF;
        max-width: 100%;
    }
    .page-headline-muted {
        font-size: 50px;
    }
}
.headline {
    font-size: 30px;
    line-height: 35px;
    font-weight: 600;
    color: var(--color-primary);
    padding-bottom: 10px;
    border-bottom: 7px solid var(--color-secondary);
    width: 100%;
    margin-bottom: 50px;
}

@media (min-width: 640px) {
    .headline {
        font-size: 50px;
        line-height: 50px;
    }
}

.page-headline .suffixes {
    display: block;
    line-height: 1.2;
    font-weight: 800;
    color: var(--color-secondary);
    position: relative;
    margin-top: -10px;
}
@media (min-width: 1024px) {
    .page-headline {
        font-size: 100px;
    }
    .page-headline .suffixes {
        display: inline-block;
        font-size: 100px;
        margin-top: 10px;
        margin-left: 0.75rem;
    }
}
.page-headline {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: flex-start;
}
.page-headline .suffixes span {
    line-height: 1.2;
    font-weight: 800;
    position: absolute;
    opacity: 0;
}
.page-headline .suffixes span.active {
    opacity: 1;
    animation: active 0.5s;
    animation-timing-function: cubic-bezier(0.15, 0.32, 0.55, 1.35);
}
.page-headline .suffixes span:not(.initial).inactive {
    opacity: 0;
    animation: 0.5s ease-in-out 0s inactive;
}

@keyframes active {
    0% {
        opacity: 0;
        transform: translateX(-10rem);
    }
    55% {
        opacity: 1;
        transform: translateX(1rem);
    }
    100% {
        opacity: 1;
        transform: translateX(0rem);
    }
}

@keyframes inactive {
    0% {
        opacity: 1;
        transform: translateX(0rem);
    }
    55% {
        opacity: 0;
        transform: translateX(10rem);
    }
}
@keyframes zoomin {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.lightbox-modal .modal-content {
    background-color: var(--lightbox);
}

.lightbox-modal .btn-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.25rem;
    z-index: 10;
    filter: invert(1) grayscale(100);
}
.lightbox-modal .btn-fullscreen-exit,
.lightbox-modal .btn-fullscreen-enlarge {
    font-size: 1.25rem;
    filter: invert(1) grayscale(100);
    z-index: 10;
}

.lightbox-modal .modal-body {
    display: flex;
    align-items: center;
    padding: 0;
}

.lightbox-modal .lightbox-content {
    width: 100%;
}

.lightbox-modal .carousel-indicators {
    margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
    background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
    width: 75%;
}

.lightbox-modal .carousel-inner img {
    animation: zoomin 10s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
    right: 0;
    bottom: 0;
    left: 0;
    padding-bottom: 2rem;
    background-color: var(--lightbox);
    color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
    width: auto;
}

.lightbox-modal .carousel-control-prev {
    left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
    right: 1.25rem;
}

@media (min-width: 1400px) {
    .lightbox-modal .carousel-inner {
        max-width: 60%;
    }
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
    position: absolute;
    top: 1.25rem;
    right: 3.5rem;
    z-index: 10;
    border: 0;
    background: transparent;
    opacity: .6;
    font-size: 1.25rem;
}

.bi {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.035em;
    fill: currentcolor;
}

.teaser-wrapper .teaser {
    flex-grow: 1;
    border: 0;
}
.teaser-wrapper .teaser.card {
    text-align: center;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 45px;
}
.teaser-wrapper.teaser-blue .teaser {
    background-color: var(--color-teaser-wrapper);
    border-top: 5px solid var(--color-secondary);
    color: #fff;
}
.teaser-wrapper.teaser-blue .teaser h1 {
    color: #fff;
}
.teaser-wrapper.teaser-white .teaser {
    background-color: #fff;
    color: var(--color-dynamic-text);
}
.teaser-wrapper.teaser-white .teaser h1 {
    color: var(--color-primary);
    font-size: 32px;
    font-weight: 900;
    line-height: 40px;
}
.teaser h1 {
}
.teaser h4 {
    font-size: 18px;
    font-weight: 800;
}
.teaser-wrapper.teaser-white .teaser h5 {
    margin-top: 10px;
    color: var(--color-primary);
    font-size: 29px;
}
.teaser-wrapper.teaser-blue .teaser .button-wrapper {
    background-color: transparent;
    padding-top: 1em;
    display: inline-block;
    width: fit-content;
}
.teaser-wrapper.teaser-blue .teaser .button-wrapper span {
    border-style: solid;
    border-width: 0 0 2px 0;
    border-color: transparent;
    border-radius: 0 0 0 0;
    padding: 5px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0;
    background-color: transparent;
    transition-duration: .3s;
    transition-property: border-bottom-color;
    transition-timing-function: ease-out;
    color: #FFFFFF;
}
.teaser-wrapper.teaser-blue .teaser .button-wrapper:hover span {
    border-bottom-color: #FFFFFF;
    transform: none;
}

.list-group-item {
    border: 0;
}

.card-footer {
    background-color: transparent !important;
}

label + textarea {
    display: block;
}

.nd-hp-fld {
    display: none;
}

.gallery-item .figure-caption {
    background-color: #FFFFFF;
    line-height: 22px;
    padding-top: 8px;
    padding-bottom: 10px;
    font-size: 14px;
}

@media (min-width: 1024px) {
    .gallery-item .figure-caption {
        font-size: 18px;
    }
}

figure.table {
    margin: 2rem;
}

figure.table tr,
figure.table tr td {
    border: none !important;
}
figure.table tr td {
    padding: 1rem;
    background: transparent !important;
}
figure.table tr td:nth-child(1) {
    padding-right: 5rem;
}
figure.table tr:nth-child(odd) {
    background-color: var(--table-row-alt-color) !important;
}

.teaser .button-wrapper {
    width: auto !important;
}

.subpage-illustration {
    z-index: -1;
    left: -20%;
}

div[class^="youtube-player"] {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

div[class^="youtube-player"] iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent;
}

div[class^="youtube-player"] img {
    object-fit: cover;
    display: block;
    left: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    transition: 0.4s all;
}

div[class^="youtube-player"] .play {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    position: absolute;
    cursor: pointer;
}

@media (min-width: 1921px) {
    body,
    p,
    p strong,
    li {
        font-size: 22px;
        line-height: 35px;
    }
}

:not(.is-homepage) > main > .pageImage-container {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

:not(.is-homepage) > main > .pageImage-container .page-headline {
    text-shadow: 0 0 10px black;
    font-size: 45px;
    line-height: 40px;
    margin-bottom: 1.5rem;
}
:not(.is-homepage) > main > .pageImage-container .page-headline-muted {
    text-shadow: 0 0 10px black;
}

@media (min-width: 640px) {
    :not(.is-homepage) > main > .pageImage-container .page-headline {
        font-size: 60px;
        line-height: 55px;
    }
}

@media (min-width: 1024px) {
    :not(.is-homepage) > main > .pageImage-container .page-headline {
        font-size: 90px;
        line-height: 85px;
    }

}

.subpage-wrapper .page-headline {
    color: var(--color-primary-muted);
    font-size: 30px;
}
.subpage-wrapper .page-headline-muted {
    color: #FFFFFF;
}

.callout.large {
    padding-left: 0px;
    padding-right: 0px;
}

@media (min-width: 640px) {

    .subpage-wrapper {
        text-align: left;
    }
    .callout.large {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    :not(.is-homepage) > main > .pageImage-container {
        aspect-ratio: 4.5 / 1;
        margin-bottom: 75px;
    }
    .subpage-wrapper {
        padding-left: 55px;
    }
    .logo-container a {
        padding-left: 25px;
    }
    .subpage-wrapper .page-headline {
        font-size: 97px;
        font-weight: 700;
    }
    .subpage-wrapper .page-headline-muted {
        margin-bottom: 30px;
        font-size: 42px;
    }
}

/* MOBILE (425 but from higher!!) */
@media (min-width: 640px) and (max-width: 992px) {
    body .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    .is-homepage {
        max-width: 100% !important;
    }
    .list-group:not(.employee-details) a.list-group-item {
        width: 100%;
    }
    figure.table {
        margin: 0rem;
    }
    .spacer-tiny {
        height: 0px;
    }
    .spacer-small {
        height: 25px;
    }
    .spacer-medium {
        height: 50px;
    }
    .spacer-large {
        height: 75px;
    }
    .spacer-huge {
        height: 100px;
    }
    .page-headline-wrapper,
    .is-homepage .page-headline-wrapper {
        margin-top: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        padding-top: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 0 !important;
    }
    .page-headline,
    .page-headline .suffixes,
    .page-headline .suffixes span,
    .is-homepage .page-headline,
    .is-homepage .page-headline .suffixes,
    .is-homepage .page-headline .suffixes span {
        font-size: 70px !important;
        line-height: 65px;
        -webkit-text-stroke: 0px transparent;
        stroke: none !important;
        padding-bottom:15px;
    }
    .is-homepage .page-headline .suffixes {
        margin-top: -4px;
        padding-left:15px;
    }
    .subpage-heading-wrapper .page-headline,
    .subpage-heading-wrapper .page-headline-muted {
        -webkit-text-stroke: 0px transparent;
        stroke: none !important;
    }
    .headline {
        font-size: 38px !important;
        stroke: none !important;
    }
    .page-headline-muted {
        font-size: 35px;
    }
    .is-homepage .page-headline-muted {
    }
    .is-homepage .page-illustration {
        display: block !important;
        position:relative;
        top: -45px;
    }
    .employee-details .list-group-item.user-select-none {
        display: none;
    }
    .is-homepage .page-headline-wrapper {
        margin-top: 15px !important;
    }
    .footer svg {
        height: 20px;
        width: 100%;
    }
    .footer h3 {
        font-size: 25px;
    }
    #breadcrumbs a {
        font-size: 14px;
    }
    #breadcrumbs .nd-breadcrumb-icon {
        width: 36px;
        height: 36px;
    }
    .button-wrapper .btn-primary {
        font-size: 16px;
    }
    .list-group-item {
        padding: 0;
    }
}

@media (max-width: 500px) {
    .table {
        overflow-x: scroll !important;
    }
}
@media (max-width: 425px) {
    .single_employee {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}
@media (max-width: 375px) {
    .page-headline,
    .page-headline .suffixes,
    .page-headline .suffixes span,
    .is-homepage .page-headline,
    .is-homepage .page-headline .suffixes,
    .is-homepage .page-headline .suffixes span,
    .headline {
        font-size: 35px !important;
    }
    .page-headline-muted {
        font-size: 20px;
        margin-top: 50px;
    }
}
@media (max-width: 320px) {
    .page-headline,
    .page-headline .suffixes,
    .page-headline .suffixes span,
    .is-homepage .page-headline,
    .is-homepage .page-headline .suffixes,
    .is-homepage .page-headline .suffixes span,
    .headline {
        font-size: 30px !important;
    }
    .page-headline-muted {
        font-size: 20px;
        margin-top: 40px;
    }
}





.pageImage-container {
    position: relative;
    margin-bottom: 25px;
    aspect-ratio: 1 / 1.25;
}
@media (min-width: 640px) {
    .is-homepage > main > .pageImage-container {
        margin-bottom: -100px;
    }
    .pageImage-container {
        aspect-ratio: 8 / 3;
    }
}

.pageImage-container .pageImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 0;
    user-select: none;
    -webkit-user-drag: none;
}

.pageImage-container .page-headline-wrapper {
    position: relative;
    z-index: 1;
}

.is-homepage .page-headline-wrapper .page-headline {

    display: flex;
    flex-direction: column;
}

@media (min-width: 640px) {
    .is-homepage .page-headline-wrapper .page-headline {
        display: flex;
        flex-direction: row;
    }
}

.page-content {
    position: relative;
    z-index: 2;
}

.one-column.align-middle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.one-column h3 {
    padding-bottom: 10px;
    border-bottom: 7px solid var(--color-secondary);
    width: 100%;
    margin-bottom: 50px;
}

.one-column > * {
    width: 100%;
}

footer .menu.vertical a ,
.contact-email {
    color: #FFFFFF;
}

header:not(.is-anchored) {
    box-shadow: 0px 10px 8px 0px rgba(0, 0, 0, 0.19);
}

#animated-menu {
    display: none;
}

@media screen and (min-width: 40em) {
    #animated-menu {
        display: block;
    }

    .no-js .title-bar {
        display: none;
    }
}

.pull-width {
    margin-left: initial;
    margin-right: initial;
}
@media (min-width: 1440px) {
    .pull-width {
        margin-left: -100px;
        margin-right: -100px;
    }
}

.employees {
    justify-content: flex-start;
}

.employees .card {
    border-radius: 0;
    flex-direction: column;
    border: 0;
}

.employee-body .card-title,
.teaser .card-title{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    color: var(--color-primary);
    margin-top: 20px;
}

.employee-body .card-title,
.employee-body .card-subtitle {
    padding-left: 22px;
    padding-right: 22px;
}

.employees .card-body {
    padding: 0;
}

.employee-body .card-subtitle {
    margin-bottom: 20px;
}

.thumbnail {
    box-shadow: none;
}

.employee-icon {
    color: var(--color-primary);
    fill: var(--color-primary);
}

.employee-details {
    list-style: none;
}

.list-group:not(.employee-details) a.list-group-item {
    width: 50%;
}

.title-bar {
    padding: 0.5rem;
    background: #FFFFFF;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
}

.menu-icon {
    margin-top: 15px;
}

.menu-icon::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #0069B3;
    box-shadow: 0 7px 0 #0069B3, 0 14px 0 #0069B3;
    content: "";
}

.teaser {
    & h6 {
        font-size: 19px;
        font-weight: 700;
    }
    & h5 {
        font-size: 42px;
        font-weight: 700;
    }
}

@media (min-width: 640px) {
    header nav > ul > li > a {
        font-size: 22px;
    }
}

.top-bar {
    padding: 20px;
}

#dynamic_form1_textarea {
    height: 200px;
}

.cc-window {
    border: 5px solid var(--color-secondary);
}

.cc-btn {
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    padding: 10px 20px 10px 20px !important;
    border-radius: 0 0 0 0 !important;
}

.cc-highlight {
    margin-bottom: 10px !important;
}

.cc-revoke {
    display: none !important;
}

.cc-window.cc-floating {
    max-width: 80% !important;
}

.cc-main-content {
    overflow-y: scroll;
}

.cc-message,
.cc-customize-message {
    font-size: 14px;
}

.socialicon > span {
    border: 1px solid var(--color-secondary) !important;
}

.socialicon:hover > span {
    border: 1px solid #FFFFFF !important;
}

@media (min-width: 1024px) {
    .cc-window.cc-floating {
        max-width: 24em !important;
    }
    .cc-main-content {
        overflow-y: auto;
    }
    .cc-message,
    .cc-customize-message {
        font-size: 18px;
    }
    .single_employee {
        max-width: 300px;
    }
    .noimage-left {
        padding-left: 0px !important;
        margin-left: 0px !important;
    }
}

.downloads h4 {
    margin-bottom: 0;
}