/*
 * Helper: Typo
 */
.text-white { color: #fff; }
.text-right { text-align: right; }
.text-decoration-none { text-decoration: none; }

/*
 * Helper: Width
 */
@media (min-width: 768px) {
    .w-md-50 { width: 50%; }
}
@media (min-width: 992px) {
    .w-lg-33 { width: 33%; }
    .w-lg-28 { width: 28%; }
}
@media (min-width: 1200px) {
    .w-xl-28 { width: 28%; }
}

/*
 * Helper: Space
 */
.frame-space-before-no-space     { margin-top: 0 !important; }
.frame-space-before-extra-small  { margin-top: 15px !important; }
.frame-space-before-small        { margin-top: 30px !important; }
.frame-space-before-medium       { margin-top: 40px !important; }
.frame-space-before-large        { margin-top: 60px !important; }
.frame-space-before-extra-large  { margin-top: 90px !important; }

.frame-space-after-no-space     { margin-bottom: 0 !important; }
.frame-space-after-extra-small  { margin-bottom: 15px !important; }
.frame-space-after-small        { margin-bottom: 30px !important; }
.frame-space-after-medium       { margin-bottom: 40px !important; }
.frame-space-after-large        { margin-bottom: 60px !important; }
.frame-space-after-extra-large  { margin-bottom: 90px !important; }

/**
 * Helper:
 */
 .container-breakout {
    width: calc(100vw - (30px / 4));
    margin-left: calc(50% - 50vw);
}

/**
 * Base:
 */
html {
    overflow-x: hidden;
}


/*
 * Component: Button
 */
.btn,
.accordion .accContent .csc-textpic-caption,
form fieldset input[type=submit],
form.route input[type="submit"],
.download,
.item.right.box .csc-textpic-caption,
.item.left.box .csc-textpic-caption,
.hero .slideItem a,
button,
input[type=submit] {
    border-radius: 0;
}

.btn-white {
    color: #fff;
}

/*
 * Component: Typo
 */
 .subheading {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}
.subheading span {
    background: #d8d8d8;
    border-radius: 5px;
    padding: 3px 10px;
    font-weight: normal;
    text-align: center;
}
.subheading span:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #d8d8d8;
    display: block;
    bottom: 10px;
    z-index: -1;
}
h5.subheading span {
    font-size: 16px;
}

/*
 * Component: grid
 */
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.col {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
@media (min-width: 768px) {
    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col._md-childs-h-100 > div {
        height: 100%;
    }
}

/*
 * Component: divider
 */
.ce-div {
    border-top: 2px solid #dbdbdb;
}

/*
 * Component: text-image-teaser
 */
.text-image-teaser {
    position: relative;
    height: 100%;
}
.text-image-teaser-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}
.text-image-teaser-bg {
    position: relative;
    background-position: center center;
    background-size: cover;
    width: 100%;
    padding-bottom: 60%;
    z-index: 1;
    transition: all 0.15s ease;
}
.text-image-teaser._landscape:hover .text-image-teaser-bg {
    filter: grayscale(100%);
}
.text-image-teaser._portrait .text-image-teaser-container {
    display: flex;
    height: 100%;
}
.text-image-teaser._portrait .text-image-teaser-content {
    width: 100%;
}
.btn-teaser {
    position: relative;
    padding-left: 110px;
    background-color: transparent;
    color: #464749;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    transition: color 0.2s ease;
}
.btn-teaser:before {
    position: absolute;
    top: 50%;
    content: " ";
    width: 75px;
    height: 2px;
    display: block;
    border-top: 1px solid #464749;
    left: 0;
    transition: border 0.2s ease;
}
.text-image-teaser:hover .btn-teaser,
.btn-teaser:hover {
    color: #db172a;
    background-color: transparent;
}
.text-image-teaser:hover .btn-teaser:before,
.btn-teaser:hover:before {
    border-top: 1px solid #db172a;
}
.text-image-teaser-content {
    z-index: 1;
    position: relative;
    padding-left: 22px;
    color: #464749;
    font-size: 15px;
}
.text-image-teaser-content h2 {
    line-height: 1.2;
    margin-left: -22px;
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 5px;
}
.text-image-teaser-content h2 + p {
    line-height: 27px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .text-image-teaser-container {
        padding: 45px 30px;
    }
    .text-image-teaser._portrait {
        padding-bottom: 30%;
    }
    .text-image-teaser._portrait .text-image-teaser-container {
        width: auto;
        max-width: 600px; /* x = (container width / 2 columns) */
        align-items: flex-start;
        margin-right: 0;
    }
    .text-image-teaser._portrait .text-image-teaser-container {
        padding: 15% 30px;
    }
    .text-image-teaser-bg {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding-bottom: 0;
    }
    .text-image-teaser._landscape .text-image-teaser-bg {
        background-position: center left;
    }
    .text-image-teaser._landscape .text-image-teaser-bg._bg-pos-right {
        background-position: center right;
    }
    .text-image-teaser-content {
        font-size: 14px;
        color: #fff;
    }
    .text-image-teaser-content h2 {
        margin-bottom: 30px;
    }
    .text-image-teaser-content h2 + p {
        margin-bottom: 20px;
    }
    .text-image-teaser._portrait .text-image-teaser-content h2 + p {
        margin-bottom: 30px;
    }
    .text-image-teaser._portrait .text-image-teaser-content h2 {
        margin-bottom: 20px;
    }
    .text-image-teaser-container.right .text-image-teaser-content {
        margin-left: auto;
        margin-right: 0;
    }
    .btn-teaser {
        color: #fff;
    }
    .btn-teaser:before {
        border-top: 1px solid #fff;
    }
}

@media (min-width: 992px) {
    .text-image-teaser._portrait .text-image-teaser-container {
        padding: 12% 30px;
    }
    .container-breakout .col + .col .text-image-teaser._portrait .text-image-teaser-container {
        margin-left: 45px;
        margin-right: auto;
    }
    .text-image-teaser._portrait {
        padding-bottom: 60%;
    }
    .text-image-teaser-container.right .text-image-teaser-content {
        margin-right: 22px;
    }
}
@media (min-width: 1200px) {
    .text-image-teaser-container {
        padding: 7% 0;
    }
    .text-image-teaser._portrait .text-image-teaser-container {
        padding: 12% 0;
    }
    .text-image-teaser._portrait .text-image-teaser-content {
        width: 60%;
    }
}

@media (min-width: 1280px) {
    .text-image-teaser-container.right .text-image-teaser-content {
        margin-right: 0;
    }
}

/* END component: text-image-teaser */


/**
 * Component: border
 */
.item.border {
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

/*
 * Component: hero & slide on homepage
 */
#uid207 .hero {
    margin-bottom: -76px;
}
.hero + .intro {
    padding-top: 0;
}
.slide_5 h2,
.slide_5 p {
    color: #fff;
}
.slide_6 h2 {
    margin-top: inherit !important;
}
.slide_6 .slideImage {
    margin: 0;
    padding-top: 45px;
    padding-bottom: 45px;
}
.slide_7 .slideImage {
    padding-top: 45px;
}
.slide_7 h2,
.slide_7 p {
    color: #003c27;
}
.slide_7 h2 {
    margin-top: 0 !important;
}
.slide_8 .inner {
    max-width: 1220px;
    font-size: inherit;
    line-height: inherit;
    text-align: left;
}
.slide_8 a {
    margin-top: 0 !important;
}
.slide_8 h2 {
    margin-top: 435px !important;
}
.slide_8 .slideImage {
    padding-top: 0;
    margin-top: -250px;
}

@media screen and (max-width: 1860px) {
    .slide_8 h2 {
        margin-top: 380px !important;
    }
}

@media screen and (max-width: 1100px) {
    #uid207 .hero {
        margin-bottom: -10px;
    }
    .slide_5 .slideImage.bildlinks {
        margin-top: 55px !important;
    }
    .slide_6.slideItem .inner {
        top: 320px;
    }
    .slide_6 .slideImage.bildrechts {
        margin-top: -20px;
        padding-top: 0;
    }
    .slide_7 .slideImage {
        padding-top: 0;
    }
    .slide_8.slideItem .inner {
        top: 245px;
    }
}
@media screen and (max-width: 991px) {
    .slide_8 h2 {
       margin-top: 0 !important;
    }
}
@media screen and (max-width: 820px) {
    #uid207 .hero {
        height: calc(100vh - 38px) !important;
        min-height: 500px;
    }

    #uid207 .hero .slides {
        height: 100% !important;
    }

    .hero .slideItem .inner {
        text-align: center;
    }
    .hero .slide_6 .slideImage.bildrechts {
      float: none;
      width: 100%;
      margin: 0 auto;
    }
    .hero .slide_7 .slideImage.bildrechts {
        float: none;
        width: 100%;
        margin: 50px auto 0;
    }
    .hero .slide_7 .slideImage {
        float: left;
        text-align: center;
        max-width: 50%;
        margin-top: 35px;
    }
    .hero .slideItem.slide_8 .inner {
        top: 0;
    }
    .hero .slide_8 .slideImage {
        margin-top: 30px;
        margin: 0 auto;
        float: none;
    }
}
@media screen and (max-width: 500px) {
    .hero .slide_5 .slideImage {
        margin-top: 65px !important;
    }
    .hero .slide_7 .slideImage {
        max-width: 100%;
    }
    .hero .slide_8 .slideImage {
        margin-top: 20px;
    }
}
@media screen and (max-width: 400px) {
    .text-image-teaser-content h2 {
        font-size: 24px;
    }
    .hero .slide_5 .slideImage {
        margin-top: 135px !important;
    }
    .hero .slide_6 .slideImage {
        margin-top: 120px !important;
    }
    .hero .slideItem.slide_6 .inner {
        top: 0;
    }
    .hero .slide_7 .slideImage {
        margin-top: 70px !important;
    }
    .hero .slideItem.slide_8 .inner {
        top: 10px;
    }
}

@media screen and (max-width: 360px) {
    .hero .slide_5 .slideImage {
        margin-top: 185px !important;
    }
    .hero .slide_6 .slideImage {
        margin-top: 80px !important;
    }
    .hero .slide_7 .slideImage {
        margin-top: 120px !important;
    }
}


/*
 * Component: hero-video
 */
.hero-video {
    width: 100%;
    height: 100%;
    background-size: cover;
    object-fit: cover;
}
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero .slideItem .inner.hero-video-inner {
    position: absolute;
    padding: 2rem 2rem 3rem 2rem;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}
.hero-video-inner:before {
    content: "";
    position: absolute;
    left: -50vw;
    right: -50vw;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    height: 100%;
    z-index: -1;
}
.hero .slideItem .inner.hero-video-inner h2,
.hero .slideItem .inner.hero-video-inner p {
    color: #fff;
    display: inline;
}
.hero .slideItem .inner.hero-video-inner h2 {
    font-family: "Helvetica Neue", Arial;
    font-weight: 500;
    text-transform: none;
    margin-bottom: 0;
    font-size: calc(20px + (54 - 20) * ((100vw - 320px) / (992 - 320)));
}
.hero .slideItem .inner.hero-video-inner h2:after {
    content: " ";
    display: inline;
    padding-right: 295px;
}
.hero .slideItem .inner.hero-video-inner h2 + p {
    margin-bottom: 30px;
}

.hero .hero-video-inner .btn-teaser {
    position: absolute;
    display: block;
    right: 2rem;
    bottom: 2rem;
    padding-left: 110px;
    background-color: transparent;
    letter-spacing: 1px;
    font-weight: bold;
    font-family: "Helvetica Neue", Arial;
}
.hero .hero-video-inner .btn-teaser:before {
    border-top: 1px solid #db172a;
}
.hero .hero-video-inner .btn-teaser:hover,
.hero .hero-video-inner .btn-teaser:focus {
    background-color: transparent;
}
@media (min-width: 768px) {
    .hero .hero-video-inner .btn-teaser {
        bottom: 3rem;
    }
}
@media (min-width: 1200px) {
    .hero .slideItem .inner.hero-video-inner h2 {
        font-size: 56px;
    }
}

/*
 * Typo3 Styles: Text-Media
 */
.ce-right.ce-nowrap .ce-bodytext {
    padding-right: 0;
}
.ce-left.ce-nowrap .ce-bodytext {
    padding-left: 0;
}
.ce-left .ce-gallery {
    width: 40%;
}
.ce-right .ce-gallery {
    width: 40%;
}
.ce-intext.ce-right .ce-gallery {
    margin-left: 0;
}
.ce-intext.ce-left .ce-gallery {
    margin-right: 0;
}
.ce-border img {
    padding: 10px;
    border: 1px solid #d8d8d8;
    -webkit-box-shadow: inset 0px 0px 0px 5px #fff;
    box-shadow: inset 0px 0px 0px 5px #fff;
    max-width: 100%;
    height: auto;
}

.content .item div.ce-textpic .csc-textpic-imagewrap .csc-textpic-image,
.content .item div.ce-textpic .csc-textpic-imagewrap img {
    max-width: 100%;
}
@media (max-width: 767px) {
    .ce-left .ce-gallery,
    .ce-right .ce-gallery {
        float: none;
        width: 100%;
    }

    .item.right div.ce-textpic .csc-textpic-imagewrap .csc-textpic-image,
    .item.right div.ce-textpic .csc-textpic-imagewrap .ce-column {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}
@media (min-width: 768px) {
    .ce-right.ce-nowrap .ce-bodytext {
        padding-right: 30px;
    }
    .ce-left.ce-nowrap .ce-bodytext {
        padding-left: 30px;
    }
}

_:-ms-fullscreen, :root .item.right .ce-intext.ce-right .ce-column {
    float: none;
}
_:-ms-fullscreen, :root .content .item div.ce-textpic .csc-textpic-imagewrap .csc-textpic-image {
    display: block;
}

/**
 * Akkordion content
 */
@media (max-width: 767px) {
    .content .item.left .accContent .ce-bodytext {
        width: 100%;
        padding-left: 0;
    }
}


/**
 * Header
 */
.topbar > .inner > .item {
    margin-bottom: 0;
}

/* divisions columns/images */
.pid207 .divisions h3 {
    margin-top: 0;
}
.divisions .innerWrap .item .ce-textpic {
    position: relative;
    border: 1px solid #d8d8d8;
    min-height: 510px;
}
.divisions .innerWrap .item.over .ce-textpic {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-color: #db172a;
    -webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.2);
    box-shadow: 0 1px 10px rgba(0,0,0,0.2);
}
.divisions .innerWrap .item .ce-gallery figure {
    display: block;
}
.divisions .innerWrap .item .ce-bodytext {
    padding: 15px 15px 0 15px;
}
.divisions .innerWrap .item .ce-bodytext a {
    position: absolute;
    bottom: 15px;
    left: 15px;
}
@media screen and (max-width: 991px) {
    .divisions .innerWrap .item .ce-bodytext a {
        position: relative;
        left: 0;
        bottom: 0;
    }
}

.item.right .ce-intext.ce-right .ce-column {
    float: right;
}
.item.hover-box {
    padding: 0 15px;
}

.item.hover-box .image,
.item.hover-box .image-embed-item {
    margin-bottom: 0 !important;
}

/* homepage: divisions columns */
#uid207 .divisions .innerWrap > .item {
    width: 100%;
}
/* homepage: Newslist */
#uid207 .page-navigation,
#uid207 .news-clear {
    display: none;
}

/* layout elements */
.labels {
    margin-bottom: 40px;
}
.divisions .innerWrap:empty {
    padding: 40px 0 0 0;
}
.frame-type-header h2.ce-headline-center {
    line-height: 24px;
}

/* Footer certificats */
#c4474 {
    width: 40%;
    float: left;
}
#c4474 p {
    text-align: right;
    margin: 40px 0 0;
}
#c4473 {
    width: 60%;
    float: left;
    padding-left: 15px;
}
#c4473 .ce-center .ce-outer {
    float: left;
    right: 0;
}
#c4473 .ce-center .ce-inner {
    position: relative;
    float: none;
    right: 0;
}
#c4473 .ce-row {
    display: inline-block;
    margin: 0 10px;
}
@media screen and (max-width: 820px) {
    .hero .slideItem .inner.hero-video-inner h2:after {
        display: none;
    }
    .hero .slideItem .inner.hero-video-inner p {
        display: block;
    }
    .hero .slideItem .hero-video-inner .btn-teaser {
        padding-left: 0;
        right: 0;
        left: 0;
    }
    .hero .slideItem .hero-video-inner .btn-teaser:before {
        position: relative;
        right: 0;
        margin: 0 auto 5px;
    }
}

_:-ms-fullscreen, :root .content .item.w33 .ce-column {
    float: none;
}

@media (max-width: 500px) {
    #uid1408 .item.right div.ce-textpic .csc-textpic-imagewrap .csc-textpic-image, #uid1408 .item.right div.ce-textpic .csc-textpic-imagewrap .ce-column {
        display: block;
        text-align: center;
    }
    #uid1408 .item.right img {
        display: inline-block;
    }
}

/*Cookie*/
.cc-window {
    display: none !important;
}
#CybotCookiebotDialog {
    border: none !important;
    border-radius: none !important;
    padding: 0 !important;
}
#CybotCookiebotDialog:before {
    content: '';
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: -1;
}
#CybotCookiebotDialogBody {
    background: #fff !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

a#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll,
a#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection,
a#CybotCookiebotDialogBodyLevelButtonLevelOptinDeclineAll {
    width: auto !important;
    background-color: #db172a !important;
    border: 2px solid #db172a !important;
    padding: 10px !important;
}
a#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:hover,
a#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection:hover,
a#CybotCookiebotDialogBodyLevelButtonLevelOptinDeclineAll:hover {
    background-color: #9c101e !important;
    border-color: #9c101e !important;
}

a#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection {
    opacity: 0.85 !important;
    background-color: transparent !important;
    border-color: #464749 !important;
    color: #464749 !important;
}
a#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection:hover {
    opacity: 0.6 !important;
    background-color: transparent !important;
    border-color: #464749 !important;
}