/* Fehler bei der Verkleinerung. Der Inhalt wird unverkleinert zurückgegeben.
(743,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(754,35): run-time error CSS1039: Token not allowed after unary operator: '-itwicon-size'
(754,55): run-time error CSS1039: Token not allowed after unary operator: '-itwicon-size'
(755,26): run-time error CSS1039: Token not allowed after unary operator: '-itwicon-size'
(756,25): run-time error CSS1039: Token not allowed after unary operator: '-itwicon-size'
(760,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(801,46): run-time error CSS1038: Expected hex color, found '#0002'
(806,46): run-time error CSS1038: Expected hex color, found '#0002'
(807,25): run-time error CSS1038: Expected hex color, found '#0002'
(811,32): run-time error CSS1038: Expected hex color, found '#0002'
(812,25): run-time error CSS1038: Expected hex color, found '#0002'
(816,32): run-time error CSS1038: Expected hex color, found '#0002'
(1356,27): run-time error CSS1030: Expected identifier, found ','
(1356,56): run-time error CSS1031: Expected selector, found ')'
(1356,56): run-time error CSS1025: Expected comma or open brace, found ')'
(2690,26): run-time error CSS1039: Token not allowed after unary operator: '-bs-body-font-size'
(2814,26): run-time error CSS1039: Token not allowed after unary operator: '-bs-body-font-size'
(2972,26): run-time error CSS1039: Token not allowed after unary operator: '-bs-body-font-size'
(2980,30): run-time error CSS1039: Token not allowed after unary operator: '-bs-body-font-size'
(2986,21): run-time error CSS1039: Token not allowed after unary operator: '-bs-body-font-size'
(2995,26): run-time error CSS1039: Token not allowed after unary operator: '-bs-body-font-size'
(4529,13): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4530,13): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4531,13): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4532,13): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4627,17): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4628,17): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4629,17): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4630,17): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
 */
body {
}

.itwcard img {
    mix-blend-mode: multiply;
}

.itwcard2 {
    border: none;
    border-radius: 0px 0px;
    background-color: rgba(32, 113, 72, 0.05);
}

.itwcard3 {
    border-radius: 5px 5px;
    border-color: rgba(32, 113, 72, 0.15);
    background-color: rgba(255, 255, 255, .25);
}
.itwcard3_outline {
    padding: 10px;
    border-radius: 5px 5px;
    border: 0.5px solid rgba(32, 113, 72, 0.15);
    border-color: rgba(32, 113, 72, 0.15);
    background-color: rgba(255,255,255,0.75);
}

.itwcard3:hover {
    transition: 0.25s ease-in-out;
    border-color: rgba(32, 113, 72, 0.75);
}
.itwcard3_outline:hover {
    transition: 0.25s ease-in-out;
    border-color: rgba(32, 113, 72, 0.75);
}

.itwcard3 .itweditorbutton {
    visibility: hidden;
    transition: none;
}
.itwcard3_outline .itweditorbutton {
    visibility: hidden;
    transition: none;
}

.itwcard3{
    position: relative;
}
.itwcard3 .itwselectedcard_checkmark{
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(10px, -10px);
    background-color: green;
    width: 25px;
    height: 25px;
    text-align: center;
    color: white;
    opacity: 0.75;
    border-radius: 50%;
    visibility: hidden;
}

.itwcard3.selected {
    background-color: rgba(32, 113, 72, 0.15) !important;
    box-shadow: 0 0 3px 2px rgba(32, 113, 72, 0.15);
}
.itwcard3.selected .itwselectedcard_checkmark{
    visibility: visible;
}

.itwentrytile{
    position: relative;
}
.itwentrytile .itwselectedcard_checkmark {
    position: absolute;
    right: 50%;
    top: 50%;
    /*transform: translate(-50%, -50%);*/
    background-color: green;
    width: 50px;
    height: 50px;
    text-align: center;
    color: white;
    opacity: 0.75;
    border-radius: 50%;
    visibility: hidden;
    font-size: xx-large;
}

.itwentrytile.selected {
    background-color: rgba(32, 113, 72, 0.15) !important;
    box-shadow: 0 0 3px 2px rgba(32, 113, 72, 0.15);
}

.itwentrytile.selected .itwselectedcard_checkmark {
    visibility: visible;
}

.itwentrytile.dimmed {
    background-color: lightgrey;
    opacity: 0.5;
}
.itwentrytile.dimmed .itwentrytile_image {
    filter: grayscale(100%);
}
.itwentrytile.dimmed::before{
    content: '! Diese Kachel wird nicht angezeigt, weil das Ziel nicht sichtbar ist !';
    font-size: small;
    color: darkred;
    font-weight: bold;
}
.card-zoomin figure {
    border: none !important;
    max-width: 100%;
    padding: 0px;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
}

.card-zoomin img {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    padding: 0px !important;
}

.card-zoomin:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.itwcard3:hover .itweditorbutton {
    visibility: visible;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 5px 5px 5px 5px;
}
.itwcard3_outline:hover .itweditorbutton {
    visibility: visible;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 5px 5px 5px 5px;
}

.itwcardcheckable:hover {
    transform: scale(1.05);
    transition: 0.2s;
}

.itwcardcheckable .checked {
    border: 2px solid rgb(32, 113, 72);
}

.itwcard3 .card-text {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    padding-bottom: 5px;
}
.itwcard3_outline .card-text {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    padding-bottom: 5px;
}

.itwcard4 {
    border-radius: 6px 7px;
    background-color: rgba(32, 113, 72, 0.15);
}

.itwcard_trimcontent_10 .card-text {
    max-height: 300px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    overflow: hidden;
    text-overflow: ellipsis;
}

.itweditorbutton {
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: 45px;
    /*z-index: 10000;*/
}

.hiddenbutton {
    display: inline-flex;
}

.hiddenbutton .btn {
    visibility: hidden;
}

.hiddenbutton:hover .btn {
    visibility: visible;
}

.fadein {
    opacity: 0;
    /*von links*/
    /*transform: translate(-50px, 0);*/
    /*von unten*/
    /*transform: translate(0, 50px);*/
    transition: all ease-in-out 0.5s;
}
.fadein-left {
    transform: translate(-150px, 0);
}
.fadein-right {
    transform: translate(+150px, 0);
}
.fadein-top {
    transform: translate(0, -100px);
}
.fadein-bottom {
    transform: translate(0, 100px);
}

.fadein.visible {
    opacity: 1;
    /*transition: opacity linear 0.5s;*/
    transition: transform ease-out 0.5s, opacity linear 1s;
    transform: translate(0, 0);
}

.btn-outline-secondary-itw {
    color: white;
    border: 0.5px rgba(32, 113, 72, 0.5);
}

.btn-outline-secondary-itw:hover {
    text-shadow: none;
    background-color: rgba(32, 113, 72, 0.3);
    border-left: 2.5px solid rgba(32, 113, 72, 0.75);
}

.btn-outline-itw {
    color: black;
    border: 0.5px solid rgba(32, 113, 72, 0.3);
    padding-left: 8px;
}

.btn-outline-itw:hover {
    text-shadow: none;
    background-color: rgba(32, 113, 72, 0.3);
    border-left: 5px solid rgb(32, 113, 72);
    padding-left: 4px;
}

.ui-widget-overlay {
    opacity: 0 !important;
    visibility: hidden;
}

.ui-widget-overlay.modal-opened {
    background: rgba(32, 113, 72, 0.25);
    opacity: 1.0 !important;
    visibility: visible;
}

.btn {
    border: 1px solid rgba(32, 113, 72, 0.25);
    transition: 0.5s;
}

.btn:hover {
    transform: none;
    transition: 0.5s;
    border: 1px solid rgb(32, 113, 72);
}

.btn-inactive:hover {
    border-color: transparent;
    cursor: default;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.itwtexteditor-element {
    border: none !important;
}

.itwtexteditor-element:hover {
    border: none !important;
    background-color: rgba(32, 113, 72, 0.1) !important;
}


.itwtexteditor-element-background:hover {
    border: none !important;
    background-color: rgba(32, 113, 72, 0.1) !important;
}

.itwtexteditor-element:focus {
    margin: 5px !important;
}

.itwtexteditorext-preview {
    display: inline-flex;
    transition: none 0s !important;
    -webkit-transition: none 0s !important;
    animation: fadeIn 0.4s;
}

.itwtexteditorext-preview .itweditor_button {
    visibility: hidden;
    opacity: 0;
}

.itwtexteditorext-preview:hover {
    background-color: rgba(32, 113, 72, 0.05) !important;
}

.itwtexteditorext-preview:hover .itweditor_button {
    visibility: visible;
    opacity: 1;
    margin-left: 10px;
}

.itwtexteditorext-editor {
    display: inline-flex;
    white-space: nowrap;
    transition: none 0s !important;
    -webkit-transition: none 0s !important;
    animation: fadeIn 0.4s;
}

.itwfulltexteditorext-preview {
    display: block;
    transition: none 0s !important;
    -webkit-transition: none 0s !important;
    animation: fadeIn 0.4s;
}

.itwtexteditor_preview_text:empty:before {
    content: 'kein Text vorhanden';
}

.itwtexteditor_preview_text:empty {
    border: 1px dashed rgb(187, 191, 189) !important;
    min-width: 250px;
    min-height: 150px;
}

.itwfulltexteditorext-preview .itweditor_button {
    opacity: 0;
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
}

.itwfulltexteditorext-preview-editable {
    border: 4px solid rgba(32, 113, 82, 0.025); /*transparent;*/
}
.itwfulltexteditorext-preview-editable:hover {
    /*background-color: rgba(32, 113, 72, 0.15) !important;*/
    border: 4px dashed rgba(32, 113, 82, 0.1);
}

.itweditor_contents_element.active {
    /*background-color: rgba(32, 113, 72, 0.25) !important;*/
    background-color: rgba(230, 68, 43, 0.1) !important;
}

.itwfulltexteditorext-preview:hover .itweditor_button {
    opacity: 1;
}

.itwfulltexteditorext-preview .itweditor_modifymenu{
    opacity: 0;
    position: absolute;
    bottom: 5px;
    right: 5px;
}
.itwfulltexteditorext-preview .itweditor_modifymenu_down {
    opacity: 0;
    position: absolute;
    bottom: 5px;
    left: 5px;
}

.itwsubsite_entrytile .itwtileeditor_modifymenu {
    opacity: 0;
    position: relative;
    top: -40px;
    left: 10px;
}
.itwpagebox_item .itwpagebox_modifymenu{
    position: relative;
    bottom: 40px;
    right: 10px;
    opacity: 0;
}
.itwpagebox_modifymenu {
    align-self: end;
    text-align: right;
    transition: ease-in 0.25s;
    transition: ease-out 0.75s;
}
.itwpagebox_item:hover .itwpagebox_modifymenu{
    opacity: 1;
}

.itweditor_modifymenu {
    align-self: center;
    transition: ease-in 0.25s;
    transition: ease-out 0.75s;
}
.itwfulltexteditorext-preview:hover .itweditor_modifymenu {
    opacity: 1;
}
.itwfulltexteditorext-preview:hover .itweditor_modifymenu_down {
    opacity: 1;
}
.itwsubsite_entrytile:hover .itwtileeditor_modifymenu {
    opacity: 1;
}
.itweditor_modify{
    margin: 0.5px;
}

.itwfulltexteditorext-preview {
    display: block;
    transition: none 0s !important;
    -webkit-transition: none 0s !important;
    animation: fadeIn 0.4s;
    position: relative;
}

.itweditor_button {
}

.itwmodifyimage {
    position: relative;
    animation: fadeIn 0.4s;
    border: 1px dashed rgba(32, 113, 72, 0.15);
}

.itwmodifyimage .btn {
    opacity: 0;
    position: absolute;
    right: 25px;
    bottom: 5px;
}

.itwmodifyimage:hover .btn {
    opacity: 1;
    right: 5px;
    bottom: 5px;
}

.itwtablerow-hover:hover {
    background-color: rgba(32, 113, 72, 0.15);
    cursor: pointer;
}

.itwdiv {
    animation: fadeIn 0.25s;
    opacity: 1;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
}

.itwtexteditor_menu {
    transition: opacity 0.6s linear;
    opacity: 0 !important;
    display: none;
    padding: 0px;
}

.itwtexteditor_menu.show {
    opacity: 1 !important;
    padding: 10px;
    display: inline-flex;
    white-space: nowrap;
}

.itwtexteditor_element-content.active {
    background-color: rgba(32, 113, 72, 0.25);
}

.itwtexteditor-paragraph-modify:hover {
    background-color: rgba(32, 113, 72, 0.05);
}

.itwtexteditor-heading-modify:hover {
    background-color: rgba(32, 113, 72, 0.05);
}

.itwrow{
    border: 1px solid rgba(32, 113, 72, 0);
}
.itwrow:hover{
    border: 1px solid rgba(32, 113, 72, 0.75);
}
.itwrow .card-text {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    padding-bottom: 5px;
}
.itwrow .itweditorbutton{
    visibility: hidden;
    transition: none;
}
.itwrow:hover .itweditorbutton{
    visibility: visible;
    margin-right: 10px;
    margin-bottom: 10px;
}

.itwcardimg{
    overflow: hidden;
    border-radius: 0px;
}
.itwcardimg > figure {
    overflow: hidden;
    border-radius: 0px;
}

.itwcardimg > figure > img {
    min-width: 100%;
    max-width: 100%;
    max-height: 145px;
    min-height: 145px;
    max-height: 145px;
    object-fit: cover;
    transition: all ease-in-out 0.24s;
    mix-blend-mode: multiply;
}


.itwcardimg .nofit{
    vertical-align: middle !important;
    text-align: center !important;
}
.itwcardimg .nofit .img {
    object-fit: fill;    
}
.itwcard3:hover .itwcardimg > figure > img {
    transform: scale(1.25);
}

h1{
    color: rgb(32, 113, 72);
    font-weight: lighter;
    letter-spacing: 4px;
    /*text-transform: uppercase;*/
}
h2 {
    color: rgb(32, 113, 72);
    font-weight: lighter;
    letter-spacing: 3px;
}
h3 {
    color: rgb(32, 113, 72) !important;
    letter-spacing: 3px !important;
    font-size: calc(1.3rem + 0.6vw) !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.2 !important;
}

h4 {
    color: rgb(32, 113, 72) !important;
    letter-spacing: 2.5px !important;
    font-size: calc(1.275rem + 0.3vw) !important;
    line-height: 1.2;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
}
h7, h6, h5 {
    color: rgb(32, 113, 72);
}
.card-title {
    color: rgb(32, 113, 72);
}


.itwMenulink_main:hover > i {
    color: rgb(32, 113, 72);
}

.swiper-slide {
    height: auto;
}
.swiper-slide > .card{
    height: 265px;    
}
.swiper-slide > .card > .card-body{
    text-align: center;
    font-size: small;
}
.swiper-slide > .card > .btn{
    width: auto;
    font-size: small;
}
.swiper-button-prev{
}
.itwbullet {
    background-color: rgb(32, 113, 72) !important;
}

/*@include media-breakpoint-only(lg) {
    .card-columns {
        column-count: 3;
    }
}
@include media-breakpoint-only(xl) {
    .card-columns {
        column-count: 3;
    }
}
*/
    .modal-draggable:hover {
        cursor: move;
    }

    .itwreloadimage {
        opacity: 0;
    }

        .itwreloadimage .showimage {
            opacity: 1;
        }

    .itweditor_mainmenu {
        justify-content: space-evenly;
        text-align: center;
    }

    .swiper-slide {
        vertical-align: middle !important;
        align-items: center;
        align-content: center;
    }

    .itwlimittext-6 {
        -webkit-box-orient: vertical;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .itwlimittext-10 {
        -webkit-box-orient: vertical;
        display: -webkit-box;
        -webkit-line-clamp: 10;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    :root {
        --itwicon-size: 24px;
    }

    .itwicon {
        display: inline-flex;
        align-items: center;
    }

        .itwicon:before {
            content: ' ';
            display: flex;
            background-size: var(--itwicon-size) var(--itwicon-size);
            height: var(--itwicon-size);
            width: var(--itwicon-size);
        }

    .itwicon-large {
        --itwicon-size: 48px;
    }

    .itwicon-onecol:before {
        background-image: url('../Content/ownIcons/onecol_2_filled.svg');
    }

    .itwicon-twocols_right:before {
        background-image: url('../Content/ownIcons/twocols_2_right_filled.svg');
    }

    .itwicon-twocols_left:before {
        background-image: url('../Content/ownIcons/twocols_2_left_filled.svg');
    }

    .itwicon-threecols_middle:before {
        background-image: url('../Content/ownIcons/threecols_2_middle_filled.svg');
    }

    .card-text {
        min-height: 30px;
    }

    .itwloading-dots {
        width: 10px !important;
        max-width: 10px !important;
        min-width: 10px !important;
        aspect-ratio: 1;
        border-radius: 50%;
        animation: d5 1s infinite linear alternate;
        position: relative;
        top: 10px;
        left: 25px;
    }

        .itwloading-dots.btn {
            opacity: 0;
        }

    @keyframes d5 {
        0% {
            box-shadow: 20px 0 #000, -20px 0 #0002;
            background: #000
        }

        33% {
            box-shadow: 20px 0 #000, -20px 0 #0002;
            background: #0002
        }

        66% {
            box-shadow: 20px 0 #0002,-20px 0 #000;
            background: #0002
        }

        100% {
            box-shadow: 20px 0 #0002,-20px 0 #000;
            background: #000
        }
    }
    /*Swiper Settings*/
    .itwswiper_news {
        height: auto;
    }

    .itwslide_news > .itwcard3_outline {
        min-height: 480px;
        max-height: 480px;
        overflow: hidden;
    }

    .itwnewsslider_linkbutton {
        position: absolute;
        left: 30px;
        bottom: 40px;
    }

    .itwswiper_pagebox {
        height: auto;
        margin-left: 65px !important;
        margin-right: 65px !important;
    }

    .itwslide_pagebox > .itwsubsite_entrytilenew {
        max-height: 280px;
    }

    .itwswiper-pagination_pagebox {
        color: rgb(32, 113, 72);
    }

    .itwswiper_imagesbox {
        height: auto;
        margin-left: 65px !important;
        margin-right: 65px !important;
    }

    .itwslide_imagesbox {
        max-height: 580px;
    }

        .itwslide_imagesbox .itwimagesbox_item {
            max-height: 100%;
            display: flow;
        }

            .itwslide_imagesbox .itwimagesbox_item figure {
                max-height: 500px;
            }

                .itwslide_imagesbox .itwimagesbox_item figure img {
                    max-height: 500px !important;
                }

    .itwswiper_pagination_imagesbox {
        color: rgb(32, 113, 72);
    }


    figcaption {
    }

    .itwimage_title {
        background-color: rgba(32, 113, 72, 0.15);
        padding: 8px;
        vertical-align: middle;
        border-radius: 5px 5px 0 0;
    }

    .itwimage_label {
        position: relative;
        top: -16px;
        font-style: italic;
        background-color: rgba(32, 113, 72, 0.15);
        padding: 5px;
        border-radius: 0 0 5px 5px;
    }

    .itwbtn-light {
        color: gray;
    }

        .itwbtn-light:hover {
            color: rgb(32, 113, 72);
        }

    .itwimg_zoomable {
        overflow: hidden;
    }

        .itwimg_zoomable:hover {
            box-shadow: 0 0 5px 5px rgba(32,113,72,0.5);
            transition: all ease-in-out 0.25s;
        }

        .itwimg_zoomable img {
            -webkit-transform: scale(1);
            -webkit-transition: 0.25s ease-in-out;
            transition: 0.25s ease-in-out;
        }

        .itwimg_zoomable:hover img {
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
            -webkit-transition: 0.25s ease-in-out;
            transition: 0.25s ease-in-out;
        }

    .itwimg_greyscale img {
        filter: grayscale(100%);
        transition: all linear 0.5s;
    }

        .itwimg_greyscale img:hover {
            filter: grayscale(0%);
            transition: all linear 0.25s;
        }

    .itwimg_notransponhover img:hover {
        opacity: 1 !important;
        transition: all ease-in-out 0.25s;
    }

    .itwdiv .itwmodmenu {
        opacity: 0;
        position: relative;
        left: 20%;
        top: 25%;
    }

    .itwdiv:hover .itwmodmenu {
        opacity: 1;
        -webkit-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

    .itwimagesbox_item .itwimagesbox_modifymenu {
        position: relative;
        bottom: 150px;
        opacity: 0;
    }

    .itwimagesbox_item:hover .itwimagesbox_modifymenu {
        opacity: 1;
        -webkit-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

    .itwimagesbox_item {
        display: grid;
        vertical-align: central;
    }

    .itweditor_contents_element {
        padding-top: 10px;
    }

    .itwtableeditor_col.editable {
        border: 1px dashed lightgrey;
    }

        .itwtableeditor_col.editable:hover {
            background-color: rgba(32, 113, 72, 0.15)
        }

    .clickable:hover {
        cursor: pointer;
    }

    .itwimagedialog {
        min-width: 75%;
        max-width: 95%;
        min-height: auto;
        max-height: 95%;
        text-align: center;
        border: 1px solid rgb(32, 113, 72);
        border-radius: 15px;
    }

    .modal-body:hover .itwdialogclosebtn {
        opacity: 1;
    }

    .itwimagedialog:hover .itwdialogclosebtn {
        opacity: 1;
    }

    .itwimagedialog[open] {
        animation: itwdlgfadein 0.35s ease normal;
    }

    .itwimagedialog[close] {
        animation: itwdlgfadeout 0.35s ease normal;
    }

    @keyframes itwdlgfadein {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes itwdlgfadeout {
        from {
            opacity: 1;
        }

        to {
            opacity: 0;
        }
    }

    .itwimagedialog::backdrop {
        backdrop-filter: blur(2px);
    }

    .itwimagedialog img {
        max-width: 95%;
        min-width: 95%;
        max-height: 100%;
        display: block;
        overflow: hidden;
    }

    .itwdialogclosebtn {
        position: absolute;
        right: 10px;
        top: 10px;
        opacity: 0;
        z-index: 2000;
    }

    .itwimagedialog_title {
        position: absolute;
        top: 20px;
        left: 30px;
    }

    .itwimagedialog_label {
        position: absolute;
        left: 30px;
        bottom: 2px;
    }

    hr {
        color: rgb(32, 113, 72);
    }

    .itwcol_align_right {
        text-align: right;
    }

    @media only screen and (max-width: 768px) {
        /* settings for small screens */
        .itwcol_sm_align_left {
            text-align: left !important;
            /*padding-left: 0 !important;*/
        }

            .itwcol_sm_align_left .itwcontainer_header {
                text-align: left !important;
            }

            .itwcol_sm_align_left .itwcontainer_content {
                text-align: left !important;
            }

                .itwcol_sm_align_left .itwcontainer_content .itwcontact_image {
                    text-align: left !important;
                    display: block !important;
                }

                .itwcol_sm_align_left .itwcontainer_content > div {
                    text-align: left !important;
                }

            .itwcol_sm_align_left .itweditor_contents_element figure {
                text-align: left !important;
            }

            .itwcol_sm_align_left figure {
                text-align: left !important;
            }

            .itwcol_sm_align_left .itwcontainer_footer {
                text-align: left !important;
            }
    }

    .itwpage_header {
        min-height: 75px;
        background-color: rgba(32, 113, 72, 0.05);
        /*display: flex;*/
        justify-content: space-around;
        align-items: center;
        align-content: center;
        text-align: center;
        margin-top: 10px;
        overflow-wrap: break-word;
        inline-size: 100%;
        word-break: break-word;
        hyphens: auto;
        padding-bottom: 2px;
    }

    .itwpage_header_h1 {
        color: rgb(32,113,72);
        font-weight: lighter;
        letter-spacing: 4px;
        font-size: calc(1.375rem + 1.5vw);
        margin-top: 0;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .itwpage_content {
        background-color: white;
        padding: 10px;
        border-left: 1px solid rgba(32, 113, 72, 0.05);
        border-right: 1px solid rgba(32, 113, 72, 0.05);
        border-bottom: 1px solid rgba(32, 113, 72, 0.05);
    }

        .itwpage_content .btn-editentry {
            opacity: 0;
        }

        .itwpage_content:hover .btn-editentry {
            opacity: 1;
        }

    .card itwloading-dots {
        height: 20px;
    }

    .itwcard {
        transition: all 0.125s ease-in-out;
        border-radius: 5px;
        border: 1px solid rgba(32, 113, 72, 0.1);
    }

        .itwcard .btn_readmore {
            position: absolute;
            bottom: 0px;
            width: 100%;
            height: 45px;
            padding: 10px;
            vertical-align: central;
            text-align: center;
            border: 1px solid transparent;
            background-color: rgba(32, 113, 72, 0.025);
            border-radius: 0 0 5px 5px;
        }

        .itwcard:hover {
            border: 1px solid rgb(32, 113, 72);
        }

            .itwcard:hover img {
                transform: scale(1.05);
            }

    .itwcard_schedule {
        height: 600px;
        max-height: 600px;
    }

    .btn_readmore:hover {
        /*border: 1px solid rgb(32, 113, 72);*/
        background-color: rgba(32, 113, 72, 0.15)
    }

    .itwcard-image {
        width: 100%;
        min-height: 175px;
        max-height: 175px;
        overflow: hidden;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 1px;
    }

        .itwcard-image img {
            min-width: 100%;
            max-width: 100%;
            /*min-height: 175px;*/
            transform: scale(1.0);
            -webkit-transition: all ease-in-out 0.25s;
            transition: all ease-in-out 0.25s;
            border-radius: 5px 5px 0 0;
            padding-right: 2px;
            -o-object-fit: cover;
            object-fit: cover;
        }

    .itwcard_schedule .card-text {
        display: -webkit-box;
        -webkit-line-clamp: 12;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: justify;
    }

    .itwcard_subsite {
        height: 400px;
    }

        .itwcard_subsite .itwcard-image {
            max-height: 125px !important;
            min-height: 125px;
        }

        .itwcard_subsite > .card-body {
            max-height: 225px;
            overflow: auto;
        }

        .itwcard_subsite .ql-editor {
            overflow: initial !important;
        }

    .itwquotecontrol_quote {
        font-size: 24px !important;
        padding-right: 10px;
    }

    .itwquotecontrol_content {
        font-size: 35px !important;
    }

    .itwquote-author {
    }

    .itwbtn_settings_topright {
        position: absolute;
        right: 25px;
        top: 20px;
    }

    .itwmodifymenu {
        position: absolute;
        top: 5px;
        left: 5px;
        transition: all 0.35s ease-in-out;
    }

    div > .itwmodifymenu {
        opacity: 0;
    }

    div:hover > .itwmodifymenu {
        opacity: 1;
    }

    .itwhover_itwmodifymenu:hover .itwmodifymenu-center {
        opacity: 1;
    }

    .itwmodifymenu-center {
        opacity: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all ease-in-out 0.25s;
    }
    /*link settings*/
    a {
        color: rgb(32, 113, 72);
    }
    /*breadcrumb settings*/
    .breadcrumb {
        padding-top: 8px;
        opacity: 0;
        transition: all linear 0.5s;
    }

        .breadcrumb.visible {
            opacity: 1;
        }

        .breadcrumb > .small {
            color: rgba(32, 113, 72, 0.75);
        }

        .breadcrumb > li {
            text-transform: capitalize;
        }

        .breadcrumb > a {
            text-transform: capitalize;
        }

    .itwcontainer_header {
        background-color: rgba(32, 113, 72, 0.15);
        padding: 8px;
        vertical-align: middle;
        color: rgb(32, 113, 72);
        font-weight: 600;
        border-radius: 5px 5px 0 0;
    }

    .itwcontainer_content {
        border-left: 1px solid rgba(32, 113, 72, 0.15);
        border-right: 1px solid rgba(32, 113, 72, 0.15);
        border-bottom: 1px solid rgba(32, 113, 72, 0.15);
        padding: 8px;
        min-height: 35px;
    }

        .itwcontainer_content img {
            max-width: 100%;
            border-right: 2px solid rgba(32, 113, 72, 0.15);
            border-bottom: 2px solid rgba(32, 113, 72, 0.15);
            border-left: 1px solid rgba(32, 113, 72, 0.15);
            border-top: 1px solid rgba(32, 113, 72, 0.15);
        }

    .itwcontainer_footer {
        background-color: rgba(32, 113, 72, 0.15);
        padding: 8px;
        border-radius: 0 0 5px 5px;
    }

    .btn-readmore, .btn-editentry {
        margin-top: 20px;
    }

    ul {
        list-style: none;
    }

        ul:not(.navbar-nav, .nav-tabs, .itwsortablelist) li::before {
            content: "\2022";
            color: rgb(32, 113, 72) !important;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

    .itwmenu-admin {
        position: fixed;
        right: 10px;
        bottom: 5px;
        z-index: 1000;
    }

    .itwpage_modifycontent {
        position: fixed;
        right: 10px;
        bottom: 38px;
        z-index: 1000;
    }

    .itwpage_modifyschedulecontent {
        position: fixed;
        right: 10px;
        bottom: 70px;
        z-index: 1000;
    }

    .itwbtn-modifysite, .itwbtn-modifyschedule, .itwbtn-copyschedule, .itwbtn-createschedule, .itwbtn-createproject, .itwbtn-createpublication {
        width: 30px;
        overflow: hidden;
        white-space: nowrap;
    }

        .itwbtn-modifysite:hover {
            width: 150px;
        }

        .itwbtn-modifyschedule:hover {
            width: 250px;
        }

        .itwbtn-copyschedule:hover {
            width: 250px;
        }

        .itwbtn-createschedule:hover {
            width: 250px;
        }

        .itwbtn-createproject:hover {
            width: 175px;
        }

        .itwbtn-createpublication:hover {
            width: 175px;
        }

    .itwbtn-admin {
        width: 30px;
        overflow: hidden;
        white-space: nowrap;
        opacity: 0.25;
        transition: all 0.4s ease-in-out;
    }

    .itwbtn-admin-intranet {
        width: 30px;
        overflow: hidden;
        white-space: nowrap;
        opacity: 0.25;
    }

    .itwbtn-admin:hover {
        min-width: max-content;
        opacity: 1;
    }

    .itwbtn-admin-logout {
        width: 30px;
        overflow: hidden;
        white-space: nowrap;
    }

        .itwbtn-admin-logout:hover {
            width: 80px;
        }

    .itwbtn-admin-menu {
        width: 30px;
        overflow: hidden;
        white-space: nowrap;
    }

        .itwbtn-admin-menu:hover {
            width: 75px;
        }

    .itwsticky_top {
        position: sticky;
        top: 0;
    }
    /* menu inline controls */
    .ql-toolbar {
        position: sticky !important;
        top: 0px !important;
        background-color: white;
        z-index: 10000;
    }
    /*  */
    .form-check-input-itwmodify:checked {
        background-color: rgb(255, 193, 7) !important;
        border-color: rgb(255, 193, 7) !important;
    }

    .form-check-input-itwmodify:focus:not(:checked) {
        border-color: rgb(255, 193, 7) !important;
    }

    .itwinvisible .itwcard {
        background-color: lightgray !important;
    }

    .itwinvisible img {
        filter: grayscale(1);
    }

    .itweditor_contents_element .itweditor_modifycontrol {
        opacity: 0;
    }

    .itweditor_contents_element:hover .itweditor_modifycontrol {
        opacity: 1;
    }

    .itweditor_modifycontrol {
        position: absolute;
        left: 5px;
        top: 5px;
    }

    .itweditor_contents_element .itweditor_refreshoutput {
        opacity: 0;
    }

    .itweditor_contents_element:hover .itweditor_refreshoutput {
        opacity: 1;
    }

    .itweditor_refreshoutput {
        position: absolute;
        left: 40px;
        top: 5px;
    }

    .itwimagediv {
        position: relative;
    }

        .itwimagediv .itwimage_modifymenu {
            opacity: 0;
            transition: ease-in-out all 0.25s;
        }

        .itwimagediv:hover .itwimage_modifymenu {
            opacity: 1;
        }

    .itwimage_modifymenu {
        position: absolute;
        right: 10px;
        bottom: 10px;
    }


    .itwimage_fullresolution {
        max-height: calc(100vh - 225px);
    }
    /*css for projects*/
    .itwcard-project > .itwcard-image {
        max-height: 105px !important;
        min-height: 105px !important;
        height: 105px !important;
        border-radius: 5px 5px 0 0;
        overflow: hidden;
    }

    .itwproject-row {
        border: 1px solid rgba(32, 113, 72, 0.25);
        padding: 8px;
        margin-bottom: 15px;
        transition: all ease-in-out 0.25s;
        /*max-height: 200px;*/
        overflow: hidden;
        position: relative;
        cursor: pointer;
    }

        .itwproject-row:hover {
            box-shadow: 0 0 10px 5px rgba(32,133,72,0.5);
            border-radius: 10px;
            max-height: unset;
        }

            .itwproject-row:hover .itwmenu-modifyentry-bottomright {
                opacity: 1;
            }

        .itwproject-row.active {
            box-shadow: 0 0 10px 5px rgba(32,133,72,0.5);
            border-radius: 10px;
            max-height: unset;
        }

        .itwproject-row .itwproject-hoverelements {
            display: none;
        }

        .itwproject-row.active .itwproject-hoverelements {
            display: block;
        }

        .itwproject-row:hover .itwbtn-fueproject-readmore {
            background-color: rgb(32, 113, 72);
            color: white;
        }

    .itwproject-hoverelements {
        transition: opacity 0.25s ease-in-out;
    }

    .itwproject-linkbuttons {
        position: absolute;
        top: 5px;
        right: 5px;
        background-color: rgba(255,255,255, 0.75);
        border-radius: 0 0 0 5px;
        padding: 5px;
        padding-top: 8px;
        margin-top: 8px;
    }

    .itwproject-activeicon {
        transition: all ease-in-out 0.25s;
    }

    .itwproject-col-left {
        max-height: 200px;
        overflow: hidden;
    }

        .itwproject-col-left img {
            /*max-height: 100%;*/
            max-width: 100%;
            min-width: 100%;
        }

    .itwproject-subtitle {
        text-align: justify;
    }

    .itwproject {
        cursor: unset !important;
    }

    .itwclickablerow {
        cursor: pointer !important;
    }

    .itwbtn-fueproject-readmore {
        transition: all 0.25s ease-in-out;
        position: absolute;
        right: 0;
        bottom: 0;
        padding: 8px;
        padding-left: 10px;
        border-radius: 10px 0 5px 0;
        background-color: rgb(32,113,72);
        color: white;
    }
    /*.itwbtn-fueproject-readmore:hover {
    background-color: rgb(32,113,72);
    color: white;
}*/
    /*.itwclickablerow .itwbtn-fueproject-readmore {
    opacity: 0;
}

.itwclickablerow:hover .itwbtn-fueproject-readmore {
    opacity: 1;
}
*/

    .bg-itw {
        background-color: rgba(32, 113, 72, 0.05);
        border: 1px solid rgba(32,113,72,0.05);
        color: black;
        font-weight: normal;
        position: relative;
        transition: all ease-in-out 0.25s;
    }

        .bg-itw.selectable:hover {
            cursor: pointer;
            box-shadow: 0 0 5px 2px rgba(32, 113, 72, 0.5);
        }

        .bg-itw.selectable.badge-active {
            background-color: rgba(32, 113, 72, 1);
            box-shadow: 0 0 5px 2px rgba(32, 113, 72, 0.5);
            color: white;
        }

            .bg-itw.selectable.badge-active .bg-itw-secondary {
                background-color: rgba(223, 57, 35, 0.75) !important;
            }

    .bg-itw-secondary {
        margin-left: 5px;
        background-color: rgba(223, 57, 35, 0.5) !important;
    }

    .itwclose-small {
        opacity: 0.5;
        transition: all ease-in-out 0.25s;
    }

        .itwclose-small:hover {
            opacity: 1;
        }


    .itwproject-placeholder-search, .itwproject-placeholder-filter {
        padding: 8px;
        background-color: rgba(32, 113, 72, 0.1);
    }

    .itwimagechooser_preview {
        position: absolute;
        bottom: -10px;
        left: 0;
        background-color: white;
        width: 300px;
        height: 40px;
        border: 1px solid rgba(32, 113, 72, 0.5);
        border-radius: 8px 8px 8px 8px;
        padding: 8px;
        transition: all ease-in-out 0.25s;
    }

        .itwimagechooser_preview .itwimagechooser_previewimage {
            opacity: 0;
        }

        .itwimagechooser_preview.valid:hover {
            height: 300px;
            /*transform: translateY(-265px);*/
        }

            .itwimagechooser_preview.valid:hover .itwimagechooser_previewimage {
                opacity: 1;
            }

    .col.editable {
        border: 1px dashed lightgrey;
        min-height: 40px;
    }

    .itweditor_contents_element .itwmenu_topleft {
        opacity: 0;
    }

    .itweditor_contents_element:hover .itwmenu_topleft {
        opacity: 1;
    }

    .itwmenu_topleft {
        position: absolute;
        top: 5px;
        left: 5px;
    }
    /*neue kacheln*/
    .itwentrytile {
        max-width: 100%;
        max-height: 400px;
        min-height: 400px;
        border: 0.5px solid rgba(32, 113, 72, 0.25);
        border-radius: 8px;
        overflow: hidden;
        transition: all ease-in-out 0.25s;
        position: relative;
    }

    @media only screen and (max-width: 768px) {
        /* settings for small screens */
        .itwentrytile {
            max-height: 600px;
            min-height: unset;
        }
    }

    .itwentrytile.clickable {
        cursor: pointer;
    }

    .itwentrytile_readmore {
        position: absolute;
        right: 0;
        bottom: 0;
        max-width: 145px;
        padding: 8px;
        padding-right: 15px;
        text-align: right;
        /*color: white;*/
        background-color: rgba(32, 113, 72, 0.5);
        /*opacity: 0;*/
        transition: all ease-in-out 0.75s;
        border-radius: 10px 0 10px 0;
    }

    .itwentrytile:hover {
        transform: scale(1.01);
        box-shadow: 0 0 10px 5px rgba(32,133,72,0.5);
    }

        .itwentrytile:hover img {
            /*transform: scale(1.1);*/
        }

        .itwentrytile:hover .itwentrytile_readmore {
            opacity: 1;
            color: white;
            background-color: rgba(32,113,72, 1);
        }

    .itwentrytile_readmore {
        /*    color: rgb(32, 113, 72);
    background-color: rgba(255, 255, 255, 0.75);
*/
        color: white;
        background-color: rgba(32,113,72, 1);
    }

        .itwentrytile_readmore:hover {
            background-color: rgba(32, 113, 72, 0.75);
            color: white;
        }

    .itwentrytile .itwentrytile_image {
        max-height: 150px;
        height: 150px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .itwentrytile_image {
        background-size: cover;
        background-position: center;
        filter: grayscale(0.5);
        transition: all 0.25s ease-in-out;
    }

    .itwentrytile:hover .itwentrytile_image {
        filter: none;
    }

    .itwentrytile_image figure {
        min-width: 100%;
    }

    .itwentrytile_image img {
        margin: auto;
        display: block;
        width: 100%;
    }

    .itwentrytile_image.top {
        background-position: top;
    }

    .itwentrytile_image.bottom {
        background-position: bottom;
    }

    .itwentrytile_image.center {
        background-position: center;
    }

    .itwentrytile_text {
        padding-left: 8px;
        padding-right: 8px;
        text-align: justify;
        max-height: 200px;
    }

    .itwentrytile_body {
        padding: 8px;
        padding-top: 10px;
    }

    .bg-light {
        color: black;
        font-weight: normal;
    }


    .itwnews-row {
        /*border: 1px solid rgba(32, 113, 72, 0.05);*/
        border: 0.5px solid rgba(32, 113, 72, 0.25);
        border-radius: 8px;
        padding: 8px;
        margin-bottom: 15px;
        transition: all ease-in-out 0.25s;
        /*max-height: 200px;*/
        overflow: hidden;
        position: relative;
    }

        .itwnews-row .btn-editentry, .itwmenu-modifyentry-bottomright {
            position: absolute;
            bottom: 2px;
            right: 5px;
            opacity: 0;
        }

        .itwnews-row.itwnews-hoverelements {
            display: none;
        }

        .itwnews-row:hover {
            box-shadow: 0 0 10px 5px rgba(32,133,72,0.5);
            border-radius: 10px;
            max-height: unset;
            /*transform: scale(1.001);*/
        }

            .itwnews-row:hover .btn-editentry {
                opacity: 1;
            }

            .itwnews-row:hover .itwmenu-modifyentry-bottomright {
                opacity: 1;
            }

    .itwnew-row:hover img {
        transform: scale(1.01);
    }

    .itwnews-row .itwnews-linkreadmore {
        /*opacity: 0;*/
        background-color: rgba(32, 113, 72, 0.75);
        color: white;
    }

    .itwnews-row:hover .itwnews-linkreadmore {
        opacity: 1;
        background-color: rgba(32, 113, 72, 0.75);
        color: white;
    }

    .itwnews-linkreadmore {
        transition: all 0.5s ease-in-out;
        color: rgb(32, 113, 72);
        position: absolute;
        bottom: 0px;
        right: 0px;
        padding: 8px;
        padding-right: 15px;
        border-radius: 10px 0 8px 0px;
    }

        .itwnews-linkreadmore:hover {
            background-color: rgba(32, 113, 72, 0.75);
            color: white;
        }

    .itwmenu-modifyentry-bottomright {
        margin: 2px;
    }

    .itwnews-row.active {
        box-shadow: 0 0 10px 5px rgba(32,133,72,0.5);
        border-radius: 10px;
        max-height: unset;
    }

        .itwnews-row.active .itwnews-hoverelements {
            display: block;
        }

    .itwnews-linkbuttons {
        position: absolute;
        top: 5px;
        right: 5px;
    }

    .itwnews-activeicon {
        transition: all ease-in-out 0.25s;
    }

    .itwnews-col-left {
        max-height: 200px;
        overflow: hidden;
    }

        .itwnews-col-left > img {
            max-height: 100%;
        }

    .itwnews-text {
        text-align: justify;
    }

    .disableHover {
        text-decoration: none;
        color: unset;
    }


    .itwentrytile_row {
        border: 1px solid rgba(32, 113, 72, 0.05);
        padding: 8px;
        margin-bottom: 15px;
        transition: all ease-in-out 0.25s;
        overflow: hidden;
        position: relative;
        border-radius: 10px;
    }

        .itwentrytile_row:hover {
            box-shadow: 0 0 3px 5px rgba(32,133,72,0.5);
            transform: scale(1.01);
        }

        .itwentrytile_row .itwentrytile_readmore {
            max-width: 140px;
            border-radius: 10px 0 10px 0;
        }

        .itwentrytile_row:hover .itwentrytile_readmore {
            opacity: 1;
            color: white;
            background-color: rgba(32,113,72, 1);
        }

        .itwentrytile_row figure, img {
            max-width: 100%;
        }

        .itwentrytile_row.dimmed {
            background-color: lightgrey;
            opacity: 0.5;
        }

            .itwentrytile_row.dimmed img {
                filter: grayscale(100%);
            }

            .itwentrytile_row.dimmed::before {
                content: '! Diese Kachel wird nicht angezeigt, weil das Ziel nicht sichtbar ist !';
                font-size: small;
                color: darkred;
                font-weight: bold;
            }

    .itwnews-col-right {
        padding-top: 5px;
    }

    .itwbtn_fullresimages {
        position: absolute;
        top: 50%;
        height: 100%;
        width: 25%;
        transform: translateY(-50%);
        border: none;
        background-color: transparent;
        color: white;
        font-size: xx-large;
        transition: all 0.5s ease-in-out;
        opacity: 0;
    }

        .itwbtn_fullresimages:hover {
            /*background-color: rgba(32,113,72,0.25);*/
            opacity: 1;
        }

    .itwbtn_nextimage {
        right: 0;
        background-image: linear-gradient(to right, rgba(32, 113, 72, 0), rgba(32, 113, 72, 0.75));
    }

    .itwbtn_previmage {
        left: 0;
        background-image: linear-gradient(to right, rgba(32, 113, 72, 0.75), rgba(32, 113, 72, 0));
    }

    .nv {
        display: none;
    }


    .itw-rotate-90-cw {
        transform: rotate(90deg);
    }

    .itw-rotate-90-ccw {
        transform: rotate(-90deg);
    }

    .itw-mirror-horz {
        transform: scaleX(-1);
    }

    .itw-mirror-vert {
        transform: scaleY(-1);
    }
    /* contact boxes */
    .itwcperson_name {
        font-weight: 400;
        font-size: 1.3rem;/*x-large;*/
    }

    .itwcperson_function {
        font-size: 1.1rem; /*large;*/
    }

    .itwcperson_phone {
        font-size: 1rem; /*medium;*/
    }
    .itwcperson_email {
        font-size: 1rem; /*medium;*/
    }

    .itw-autocenter-sm {
        text-align: left;
    }

    .itw-autocenter-r-sm {
        text-align: right;
        justify-items: right;
    }

    .itw-autoleft-r-sm {
        text-align: right;
        justify-items: right;
    }

    .itw-autocenter-c-sm {
        text-align: center;
        justify-items: center;
    }

    .itw-autocenter-l-sm {
        text-align: left;
        justify-items: left;
    }


    .itw-force-fontsize-small * {
        font-size: small;
    }
    /* Online-Bewerbungsformular */
    .div-itw-onlinebewerbung {
        background-color: rgba(32, 113, 72, 0.15);
        clear: both;
        padding: 10px 10px 25px 10px;
        border-radius: 10px;
    }

        .div-itw-onlinebewerbung .form-label {
            margin-bottom: 5px;
            font-weight: 500;
            color: rgb(32, 113, 72);
        }

    .itw-btn-onlinebewerbung {
        text-align: right;
        position: sticky;
        top: 15px;
        bottom: 20px;
    }


    .itw-dropdownarea-files {
        border: 2px dashed rgba(32,113,72,0.25);
        border-radius: 8px;
        transition: all 0.4s ease-in-out;
        position: relative;
        min-width: 100%;
        min-height: 120px;
    }

    .itw-dropdownarea-ph-filelist {
        margin-top: 25px;
        padding-bottom: 60px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .itw-dropdownarea-addfile {
        position: absolute;
        left: 50%;
        bottom: 15px;
        transform: translateX(-50%);
        border: 1px solid rgb(32,113,72);
        border-radius: 5px;
        background-color: transparent;
        color: rgb(32,113,72);
        transition: all 0.4s ease-in-out;
        padding: 5px 10px 5px 10px;
    }

        .itw-dropdownarea-addfile:hover {
            background-color: rgb(32,113,72);
            color: white;
        }

    .itw-dropdownarea-hint {
        position: absolute;
        left: 3px;
        top: 3px;
        color: grey;
        font-size: small;
        padding-left: 8px;
        padding-right: 8px;
    }

    .itwform-submit {
        justify-content: left !important;
    }

    @media only screen and (max-width: 992px) { /* <== medium screens */
        .itw-autocenter-sm {
            text-align: center !important;
        }

        .itw-autocenter-r-sm {
            text-align: center !important;
            justify-items: center;
        }

        .itw-autocenter-l-sm {
            text-align: center !important;
            justify-items: center;
        }

        .itw-autoleft-sm, .itw-autoleft-r-sm {
            text-align: left !important;
            justify-items: left;
        }

        .itw-btn-onlinebewerbung {
            text-align: center;
            position: fixed;
            top: unset;
            bottom: 85px;
            right: 10px;
            z-index: 100;
        }

        .itw-autocenter {
            text-align: -webkit-center !important;
        }

        .itw-employee-portrait {
            margin-left: auto;
            margin-right: auto;
        }

        .right-autoleft {
            margin-left: 0 !important;
            margin-right: auto;
        }

        .medium-left {
            text-align: left !important;
        }

        .medium-center {
            text-align: center !important;
        }

        .itwform-submit {
            justify-content: center !important;
        }
    }
    /* Stellenausschreibungen, Studienthemen, Studieng�nge BA */
    .itwsa_header {
        /*border: 1px solid red;*/
        width: 100%;
        /*min-height: 200px;*/
        min-height: 330px;
        display: flex;
        position: relative;
    }

    .itwsa_header_text {
        background-color: rgb(32,113,72);
        min-width: 80%;
        padding: 8px;
        font-weight: 500;
        color: white;
    }

    .itwsa_header_text2 {
        position: absolute;
        padding: 8px;
        bottom: 0px;
        color: white;
        text-shadow: black 0 0 10px;
        width: 100%;
    }

    .itwsa_header_text a {
        color: white !important;
    }

    .itwsa_header_image {
        min-width: 20%;
    }
    /* itw-timeline */
    .itwtimeline {
    }

    .itwtimeline_entry {
        min-width: 100%;
        /* position: relative; */
        min-height: 100px;
        display: flex;
    }

    .itwtimeline_entry_left {
        max-width: 15%;
        min-width: 15%;
        position: relative;
        border-right: 4px solid rgb(32, 113, 72);
        min-height: 100%;
    }

    .itwtimeline_entry_right {
        /* position: absolute; */
        /*    min-width: 70%;
    max-width: 70%;
*/
        left: 18%;
        min-height: 100%;
        margin-bottom: 20px;
    }

    .itwtimeline_entry_titleleft {
        position: absolute;
        /* left: 100%; */
        top: 10px;
        right: 0;
        text-align: right;
        padding: 4px;
        padding-left: 10px;
        padding-right: 10px;
        background: rgb(32, 113, 72);
        color: white;
        font-weight: lighter;
        font-size: x-large;
        letter-spacing: 1px;
        width: fit-content;
    }

    .itwtimeline_entry_title {
    }

    .itwtimeline_entry_text {
        /* position: absolute; */
        /* top: 10px; */
        margin-top: 10px;
        margin-left: 10px;
    }
    /* divs mit bg-images */
    .itwdiv_bgimage {
        min-height: 100%;
    }

    .itwentrytile_imagectr {
        position: relative;
    }

    .itwdiv_bgimage_image {
        position: absolute;
        top: 0;
        bottom: 0;
        min-width: 100%;
        background-position: center;
        background-size: cover;
    }
    /* Quellenangaben bei Bildern */
    .itwimage_withquelle {
        /*max-width: fit-content;*/
        position: relative;
    }

    .itwimage_quellenangabe {
        position: absolute;
        left: 0;
        bottom: 0;
        padding: 4px;
        padding-left: 10px;
        width: 100%;
        background-color: rgba(255,255,255,0.25);
        font-weight: bold;
        text-shadow: 1px 1px 15px white;
        transition: all 0.4s ease-in-out;
    }

        .itwimage_quellenangabe:hover {
            text-shadow: none;
            background-color: rgba(255,255,255,0.75);
        }

            .itwimage_quellenangabe:hover i {
                color: dodgerblue;
            }
    /*.itwimage_quellenangabe_text {
    opacity: 0;
    transition: all 0.4s ease-in-out;
    padding: 5px;
    background-color: white;
    border-radius: 5px;
    position: absolute;
    left: 10px;
    z-index: 1000;
    min-width: max-content;
    border: 1px solid rgb(32, 113, 72);
}
*/
    /*.itwimage_quellenangabe_icon:hover + .itwimage_quellenangabe_text {
    opacity: 1;
}
*/
    .itwimage_quellenangabe_icon {
        color: white !important; /*rgb(32,113,72) !important;*/
    }
    /*quellenangaben bei tiles*/
    .itwentrytile_image_quellenangabe {
        position: absolute;
        right: 5px;
        top: 2px;
    }

    .itwentrytile_image_quellenangabe_text {
        opacity: 0;
        transition: all 0.4s ease-in-out;
        padding: 5px;
        background-color: white;
        border-radius: 5px;
        position: absolute;
        right: 10px;
        z-index: 1000;
        min-width: max-content;
        border: 1px solid rgb(32, 113, 72);
    }

    .itwentrytile_image_quellenangabe_icon:hover + .itwentrytile_image_quellenangabe_text {
        opacity: 1;
    }

    .itwentrytile_image_quellenangabe_icon {
        color: rgb(32,113,72) !important;
    }




    .itwslider_contactbox {
        position: fixed;
        right: 10px;
        top: 50%;
        padding: 4px;
        /*    width: 45px;
    height: 50px;
    overflow: hidden;

    background-color: white;
    border: 1px solid rgba(32,113,72, 0.25);
    border-radius: 5px;

    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;

    white-space: nowrap;
*/
    }

        .itwslider_contactbox:hover {
            width: 420px;
            height: 150px;
            /*overflow: auto;*/
        }

    .itwslider_contactbox_icon:hover .itwslider_contactbox_content {
        display: flex;
        /*display: block;*/
        /*    width: 100%;
    height: auto;
*/
    }

    .itwslider_contactbox:hover .itwslider_contactbox_icon {
        /*display: none;*/
    }

    .itwslider_contactbox_icon {
        position: absolute;
        right: 0;
        font-size: 32px;
        color: rgb(32,113,72);
    }

    .itwslider_contactbox_content {
        display: none;
        background-color: white;
        /*display: none;*/
        /*    width: 0px;
    height: 0px;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.5s ease-in-out;
*/
    }

    @media only screen and (max-width: 768px) { /* <== small screens */
        .itwsa_header {
            flex-wrap: wrap;
            flex-direction: column-reverse;
            min-height: 200px;
        }

        .itwsa_header_text {
            min-width: 100%;
        }

        .itwsa_header_image {
            min-width: 100%;
            min-height: 200px;
        }

        .itwdiv_bgimage {
            min-height: 200px;
        }
    }

    .itwquote_name {
        font-weight: bold;
        font-size: larger;
    }

    .itwquote_area {
        font-weight: lighter;
        font-size: 0.9em;
    }

    .itwquote_quote {
        color: rgb(32, 133, 72);
        font-size: 2em;
        font-style: oblique;
        font-weight: lighter;
    }


    .itwclickelement {
        text-decoration: none;
        transition: all 0.4s ease-in-out;
    }

        .itwclickelement:hover {
            text-decoration: underline;
        }

    .itw-employee-portrait {
        margin-left: auto;
    }

        .itw-employee-portrait.center {
            margin-left: auto;
            margin-right: auto;
        }

/* ITW-Articles */
.itwcard_article_extra {
    /*border: 1px solid rgba(32, 113, 72, 0.1);*/
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
    margin-bottom: 10px;
}

    .itwcard_article_extra:hover {
        /*border: 1px solid rgba(32, 113, 72, 0.25);*/
    }

        .itwcard_article_extra:hover .itwcard_article_extra_header {
            /*background-color: rgba(32, 113, 72, 0.25);*/
        }

.itwcard_article_extra_header {
    transition: all 0.25s ease-in-out;
    background-color: transparent;
    padding: 5px;
    padding-left: 0;
    text-align: right;
}

.itwcard_article_extra_content {
    text-align: right;
    padding: 5px;
}

    .itwcard_article_extra_content.videos video {
        border-radius: 10px;
    }

@media only screen and (max-width: 767px) {
    .itwcard_article_extra_header {
        text-align: left;
    }

    .itwcard_article_extra_content {
        text-align: left;
        padding-left: 0;
    }

    .itwcard_article_extra {
        border: none;
    }

        .itwcard_article_extra:hover {
            border: none;
        }

            .itwcard_article_extra:hover .itwcard_article_extra_header {
                background-color: transparent;
            }

    .justify-content-end {
        justify-content: flex-start !important;
    }
}

@media only screen and (max-width: 480px) {
    .itwcard_article_extra_header {
        text-align: left;
    }

    .itwcard_article_extra_content {
        text-align: left;
        padding-left: 0;
    }
}

.itwcard_cperson {
    border: 1px solid transparent;
    border-radius: 5px;
    transition: all 0.25s ease-in-out;
}

    .itwcard_cperson:hover {
        border: 1px solid rgba(32, 113, 72, 0.25);
    }

        .itwcard_cperson:hover .itwcard_cperson_header {
            background-color: rgba(32, 113, 72, 0.25);
        }

.itwcard_cperson_header {
    transition: all 0.25s ease-in-out;
    background-color: transparent;
    padding: 5px;
    padding-left: 0;
    text-align: right;
}

.itwcard_cperson_content {
    text-align: right;
    padding: 5px;
    padding-left: 0;
}

.itwcard_cperson_portrait {
    max-width: 75px;
}

@media only screen and (max-width: 767px) {
    .itwcard_cperson_header {
        text-align: left;
    }

    .itwcard_cperson_content {
        text-align: left;
    }
}
/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/*ITW-Timeline styles*/
.itwtimeline {
    position: relative;
    margin-bottom: 10px;
}

.itwtimeline-title {
    position: relative;
    width: 100%;
    padding: 10px;
    background-color: rgba(32,113,72,0.05);
    margin-bottom: 10px;
    font-size: calc(var(--bs-body-font-size) * 1.3);
    /*font-weight: calc(var(--bs-body-font-weight)*1.5);*/
    color: rgb(32, 113, 72);
    text-align: center;
}

.itwtimeline-line {
    position: absolute;
    border-left: 2px solid rgba(32,113,72,0.2) !important;
    height: 100%;
    left: 50%;
    margin-left: -1px;
    top: 0;
    transition: all 0.5s ease-in-out;
}

.itwtimeline-entry {
    border: 1px solid rgba(32,113,72,0.25);
    border-radius: 8px;
    padding: 15px;
    position: relative;
    text-align: justify;
    opacity: 0;
    /* transition: all 0.5s ease-in-out; */
    transition: all 0.25s cubic-bezier(0, 0, 0.29, 0.98);
}

    .itwtimeline-entry:hover {
        box-shadow: 0 0 10px 5px rgba(32,133,72,0.5);
    }

    .itwtimeline-entry .itwtimeline-mark {
        opacity: 0;
    }

    .itwtimeline-entry:hover .itwtimeline-mark {
        box-shadow: 0 0 10px 5px rgba(32,133,72,0.5);
    }

    .itwtimeline-entry.visible .itwtimeline-mark {
        opacity: 1;
    }

.itwtimeline-entry-left {
    width: calc(50% - 25px);
    /* margin-right: calc(50% + 25px); */
    text-align: right;
    /*direction: rtl;*/
    left: -50%;
}

    .itwtimeline-entry-left.visible {
        left: 0;
    }


.itwtimeline-entry-right {
    width: calc(50% - 25px);
    margin-left: calc(50% + 25px);
    right: -50%;
}

    .itwtimeline-entry-right.visible {
        right: 0;
    }

.itwtimeline-mark {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background-color: rgb(32,113,72);
    position: absolute;
    top: 18px;
    transition: all 0.85s ease-in-out;
}


.itwtimeline-entry-left .itwtimeline-mark {
    right: -38px;
}

.itwtimeline-entry-left * {
    text-align: right;
}

.itwtimeline-entry-right .itwtimeline-mark {
    left: -38px;
}

.itwtimeline-entry-title {
    font-size: xx-large;
    /*font-weight: bolder;*/
    color: rgb(32,113,72);
}

.itwtimeline-entry-subtitle {
    font-size: large;
    font-weight: bolder;
    color: rgb(32,113,72);
}

.itwtimeline-entry-imagestrip {
    width: 100%;
    height: 150px;
    background-color: rgba(32,113,72,0.25);
}

.itwtimeline-entry-left .itwtimeline-entry-subtitle {
    text-align: right;
}

.itwtimeline-entry-right .itwtimeline-entry-subtitle {
    text-align: left;
}

.itwtimeline-entry-readmore {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 8px;
    padding-left: 10px;
    border-radius: 10px 0 5px 0;
    background-color: rgb(32,113,72);
    color: white;
    font-size: calc(var(--bs-body-font-size) * 0.9);
    z-index: 50;
    opacity: 0.5;
    transition: all 0.4s ease-in-out;
}

.itwtimeline-entry:hover .itwtimeline-entry-readmore {
    opacity: 1;
}

@media only screen and (max-width: 992px) {
    /* small screens */
    .itwtimeline-line {
        position: absolute;
        border-left: 2px solid rgb(32,113,72);
        height: 100%;
        left: 25px;
        margin-left: -1px;
        top: 0;
    }

    .itwtimeline-entry {
        margin-bottom: 25px;
    }

    .itwtimeline-entry-left {
        margin-left: 50px;
        text-align: left;
        left: 50%;
        width: calc(100% - 50px);
    }

        .itwtimeline-entry-left * {
            text-align: left !important;
        }

        .itwtimeline-entry-left .itwtimeline-mark {
            left: -38px;
        }

        .itwtimeline-entry-left.visible {
            right: 0;
        }

    .itwtimeline-entry-right {
        margin-left: 50px;
        right: -50%;
        width: calc(100% - 50px);
    }

        .itwtimeline-entry-right.visible {
            right: 0;
        }
}

.swiper-slide-fitwidth {
    width: fit-content !important;
}

.itwslider {
    display: block;
}

.itwslider-entry {
    display: none;
    justify-content: center;
}

.itwslider-placeholder {
    background-color: rgba(32, 113, 72, 0.25);
}

.itwslider-button {
    position: absolute;
    z-index: 1000;
    width: 50px;
    color: white; /* rgb(32,113,72);*/
    font-size: xx-large;
    background-color: transparent; /* rgba(32,113,72,0.05);*/
    transition: all 0.25s ease-in-out;
    border: none;
    opacity: 0;
}

    .itwslider-button:hover {
        /*color: rgb(32,113,72);*/
        /*font-size: xx-large;*/
        /*background-color: rgba(32,113,72,0.25);*/
    }

.itwslider-button-prev {
    left: 0px;
    top: 0px;
    background-image: linear-gradient(to right, rgba(32,113,72,0.75), rgba(32,113,72,0));
}

.itwslider-button-next {
    right: 0px;
    top: 0px;
    background-image: linear-gradient(to right, rgba(32,113,72,0), rgba(32,113,72,0.75));
}

.itwslider-entry-label {
    width: 100%;
    padding: 5px;
    padding-left: 10px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: rgba(255,255,255,0.5);
    color: black;
    font-size: smaller;
    text-shadow: 4px 4px 6px white;
}

.itw-topictile {
    border: 1px solid rgba(32,113,72,0.25);
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
    min-height: 75px;
    padding: 10px;
    position: relative;
}

    .itw-topictile:hover {
        border: 1px solid rgba(32,113,72,0.8);
    }

.itw-topictile-icon {
    color: rgb(32,113,72);
    font-size: 24px;
    opacity: 0.5;
    margin-left: 10px;
    margin-top: 5px;
    transition: all 0.4s ease-in-out;
}

.itw-topictile-image {
    color: rgb(32,113,72);
    height: 28px;
    width: 28px;
    margin-left: 10px;
    margin-top: 5px;
    transition: all 0.4s ease-in-out;
    opacity: 0.5;
    /* Filter für ITW-Grün (RGB(32,113,72)) */
    filter: invert(27%) sepia(18%) saturate(2000%) hue-rotate(110deg) brightness(95%) contrast(90%);
}

.itw-topictile:hover .itw-topictile-icon {
    opacity: 1;
}

.itw-topictile:hover .itw-topictile-image {
    opacity: 1;
}

.itw-topictile-label {
    font-size: calc(var(--bs-body-font-size) * 1.2);
    font-weight: bold;
    color: rgb(32, 113, 72);
    margin-left: 10px;
    margin-top: 1px;
}

    .itw-topictile-label h3 {
        font-size: calc(var(--bs-body-font-size) * 1.2) !important;
        font-weight: bold !important;
        color: rgb(32, 113, 72) !important;
    }

.itw-topictile-text {
    font-size: var(--bs-body-font-size);
    margin-left: 10px;
    margin-top: 1px;
}

.itw-topictile-btn-readmore {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: calc(var(--bs-body-font-size) * 0.9);
    padding: 4px 10px 4px 10px;
    background-color: rgb(32, 113, 72);
    color: white;
    border-radius: 10px 0;
    opacity: 0.5;
    transition: all 0.4s ease-in-out;
}

.itw-topictile:hover .itw-topictile-btn-readmore {
    opacity: 1;
}

.itwpage-header {
    padding-top: 20px;
    text-align: center;
}

.partial-slider {
    display: flex;
    gap: 1rem;
    width: 100%;
    padding: 10px 0 25px 0;
    overflow: hidden;
    position: relative;
}

.slide {
    position: relative;
    flex: 1;
    height: 80vh;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: flex .4s ease, transform .4s ease, z-index 0.3s ease;
}

    .slide:hover {
        flex: 50%; /* 4.2;*/
        /*transform: scale(1.02);*/
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: filter .4s ease;
    }

    .slide:hover img {
        filter: brightness(0.85);
        transition-delay: 0.4s;
        /*filter: opacity(0.8);*/
    }

.slide-info-bg {
    padding: 2rem;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    background-color: rgba(32,113,72,0.75);
    opacity: 0;
    transition: opacity 0.4s ease 0s; /* 0.4s Verzögerung nach Animationsende */
}

.slide:hover .slide-info-bg {
    opacity: 1;
    transition-delay: 0.4s;
}

.slide-info {
    position: absolute;
    inset: 0;
    /*padding: 2rem;*/
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    /*transform: translateY(20px);*/
    transition: opacity .4s ease, transform .4s ease;
    color: white;
    /*max-width: 600px;*/
    min-width: 100%;
}

    .slide-info h2 {
        font-size: 2.5rem;
        color: white;
    }


.slide-info2 {
    position: absolute;
    opacity: 1;
    color: rgb(32, 113, 72);
    font-size: 8rem;
    transition: all 0.4s ease;
    top: 50%;
    left: 50%;
    /* width: 100%; */
    justify-content: flex-start;
    /* display: flex; */
    /* align-content: center; */
    /* align-items: center; */
    /* background-color: rgba(0, 0, 0, 0.2); */
    /* backdrop-filter: blur(4px); */
    /* white-space: nowrap; */
    transform: translate(-50%, -50%);
    font-weight: 100;
    opacity: 0.8;
}

.slide:hover .slide-info2 {
    opacity: 0;
}

.slide:hover .slide-info {
    opacity: 1;
    transform: translateY(0);
}

.slide-info button {
    margin-top: 1rem;
    padding: .8rem 1.4rem;
    /*background: rgba(255,255,255,0.15);*/
    /*background: rgba(32,113,72,0.15);*/
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(32,113,72,0.4);
    /*            border: 1px solid rgba(255,255,255,0.4);*/
    color: white;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all .3s ease-in-out;
    width: 100%;
}

    .slide-info button:hover {
        /*background: rgba(32,113,72,0.3);*/
        background: rgba(255,255,255,0.75);
        color: rgb(32, 113, 72);
    }

.slide h2 {
    font-weight: 400;
    text-shadow: 0 0 25px black;
}

.header {
    /*position: absolute;*/
    top: 0;
    left: 0;
    right: 0;
    /*            background-color: rgba(255, 255, 255, 0.75);
            padding: 20px 10px;
            backdrop-filter: blur(4px); */
}

.slide-header-symbol {
    position: absolute;
    left: 5px;
    bottom: 0;
    font-size: 2.6rem;
    font-weight: 400;
    color: white;
    padding: 0.5rem 1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(32, 113, 72, 0.6);
    z-index: 5;
    pointer-events: none;
    white-space: nowrap;
    transition: all 0.4s ease-in-out;
    opacity: 1;
}

.slide-header {
    position: absolute;
    left: 0;
    bottom: -8%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left top;
    font-size: 2.6rem;
    font-weight: 400;
    color: white;
    padding: 0.5rem 1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(32, 113, 72, 0.6);
    z-index: 5;
    pointer-events: none;
    white-space: nowrap;
    transition: all 0.4s ease-in-out;
    opacity: 1;
}

.slide:hover .slide-header {
    opacity: 0;
}

.slide:hover .slide-header-symbol {
    opacity: 0;
}


@media (max-width: 900px) {
    .partial-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
    }

    .slide {
        flex: 0 0 80%;
        scroll-snap-align: center;
        height: 80vh;
    }

        .slide:hover {
            flex: 0 0 80%; /* Hover deaktivieren */
            transform: none;
        }

    .slide-info {
        opacity: 1;
        transform: translateY(0);
    }

    .slide-info2 {
        opacity: 0;
    }
}

/*@* globale H-Werte löschen *@*/
/*    h2, h3, h4, h5, h6 {
        letter-spacing: unset !important;
        font-weight: unset !important;
        color: unset !important;
        margin: unset !important;
        line-height: unset !important;
        font-size: unset !important;
    }
*/
/*@* css für einzelnen DLs *@*/
.itwservice-hero {
    position: relative;
}

.itwservice-content {
}

.itwservice-hero-background {
    width: 100%;
    min-height: 50vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.itwservice-hero i {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 3rem;
    color: rgb(32, 113, 72);
    text-shadow: 0 0 5px rgba(0,0,0,0.25);
}

.itwservice-hero-texts {
    position: absolute;
    left: 6rem;
    top: 1rem;
    right: 1rem;
}

.itwservice-hero-header {
    font-size: 3rem;
    color: rgb(32, 113, 72);
    text-shadow: 0 0 5px rgba(0,0,0,0.25);
}

.itwservice-hero-subline {
    font-size: 2rem;
    font-weight: lighter;
    color: rgb(32, 113, 72);
}

.itwservice-hero-contact {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
}

    .itwservice-hero-contact button {
        margin-left: 5rem;
        border: 1px solid rgb(32, 113, 72);
        border-radius: 2px;
        background-color: rgba(32, 113, 72, 0.15);
        color: rgba(32, 113, 72, 1);
        font-size: 1.2rem;
        padding: 8px 25px;
        transition: all 0.4s ease-in-out;
    }

        .itwservice-hero-contact button:hover {
            background-color: rgba(32,113,72,0.75);
            color: white;
        }

.itwservice-teaser {
    padding: 1rem 0;
    text-align: justify;
    font-size: 1.0rem;
}


.itwservice-ansprechpartner {
    padding: 1rem;
}

h3 {
    font-size: 1.5rem !important;
}

.itwservice-leistungen {
    padding: 1rem;
    display: grid;
    grid-template-columns: auto;
    justify-items: center;
    gap: 0;
}

.itwservice-leistung {
    display: flex;
    flex-direction: column;
    margin: 1rem 0 0;
    min-width: 100%;
}

    .itwservice-leistung i {
        font-size: 2rem;
        color: rgba(32, 113, 72, 0.45);
        transition: all 0.4s ease-in-out;
    }

    .itwservice-leistung:hover i {
        color: rgba(32,113,72,0.8);
    }

    .itwservice-leistung h4 {
        font-size: 1.25rem !important;
        color: rgb(32, 113, 72) !important;
        font-weight: 400 !important;
        border-bottom: 1px solid rgba(32,113,72,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 8px;
    }

    .itwservice-leistung .description {
        text-align: justify;
        padding: 1rem 5rem;
    }

.itwservice-applications {
    display: grid;
    grid-template-columns: auto;
    justify-items: start;
    /*flex-direction: row;*/
    gap: 2rem;
    /*    flex-wrap: wrap;
    margin: 1rem;
    padding: 1rem;
*/
}

.itwservice-application {
    display: flex;
    /*flex: 1 calc(100% - 0.5rem);*/
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

    .itwservice-application:nth-child(even) {
        flex-direction: row-reverse;
    }

.itwservice-application-left {
    /*    align-self: flex-start;
    flex-grow: 1;
*/
}

.itwservice-application-left, .itwservice-application-right {
    flex: 1;
}

    .itwservice-application-right .medialist {
        justify-content: start;
    }

.itwservice-application:nth-child(even) .medialist {
    justify-content: end;
}

.itwservice-application h4 {
    font-size: 1.2rem !important;
    color: rgb(32, 113, 72) !important;
}

.itwservice-ansprechpartner {
    text-align: center;
}




.medialist {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 0.5rem;
}

.medialist-image {
    width: 150px;
    height: 150px;
    border-right: 1px solid rgba(32,113,72,0.4);
    border-bottom: 1px solid rgba(32,113,72,0.4);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    border-top: 1px solid rgba(32, 113, 72, 0.1);
    border-left: 1px solid rgba(32, 113, 72, 0.1);
    overflow: hidden;
}

    .medialist-image.large {
        width: 250px !important;
        height: 250px !important;
    }


@media (max-width: 1040px) {
    .itwservice-leistungen {
        grid-template-columns: auto;
    }

        .itwservice-leistungen .description {
            padding: 1rem 0;
        }

    .itwservice-application {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

        .itwservice-application:nth-child(even) {
            flex-direction: row;
        }
}


.hero {
    min-width: 100%;
    height: 400px;
    position: relative;
    margin-top: 25px;
}

.hero-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.05);
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px 15px;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
}

.hero-title {
    /*                position: absolute;
                        left: 0;
                        top: 0;
                        right: 0;
        */
    /*padding: 25px 0 0 0;*/
    width: 100%;
}

.itwservice-hero-texts h2 {
    font-size: 4rem !important;
}

.hero-title h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: white !important;
    /*display: inline-grid;*/
}

.hero-title i {
    margin-right: 15px;
}

.hero-subline {
    /*background-color: rgba(255, 255, 255, 0.25);*/
}

    .hero-subline h3 {
        font-size: 1.5rem !important;
        font-weight: unset !important;
        color: white !important;
    }

.hero-contact {
    /*margin-top: 1rem;*/
    padding: .6rem 1.4rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: background .3s ease;
    /* position: absolute; */
    left: 15px;
    bottom: 25px;
}

    .hero-contact:hover {
        background: rgba(255, 255, 255, 0.3);
    }

.service-teaser {
    padding: 20px 0;
    text-align: justify;
    font-size: 1.1rem;
}

.service-topic h3 {
    font-size: 1.95rem !important;
    font-weight: 350 !important;
}

.itwservice-contact h3 {
    font-size: 1.95rem !important;
    font-weight: 350 !important;
}

.service-topic {
    margin-bottom: 20px;
}

.service-leistungen-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 15px 25px;
}

.service-leistung-item {
    /*border: 1px solid rgba(32,113,72,0.5);*/
    border: 1px solid transparent;
    border-radius: 8px;
    /*background-color: rgba(32,113,72,0.1);*/
    transition: all 0.4s ease-in-out;
    padding: 15px;
}

    .service-leistung-item:hover {
        background-color: rgba(32,113,72,0.05);
    }

.service-leistung-item-icon {
    color: rgb(32,113,72);
    opacity: 0.5;
    font-size: x-large;
    transition: all 0.4s ease-in-out;
    margin-bottom: 10px;
}

.service-leistung-item:hover .service-leistung-item-icon {
    opacity: 1;
}

.service-leistung-item-title {
    font-size: 1.2rem !important;
}

.service-leistung-item-description {
    font-size: 1rem !important;
}

.service-applications-list {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 15px 25px;
}

.service-applications-item:hover {
    background-color: rgba(32,113,72,0.05);
}

.service-applications-item {
    /*border: 1px solid rgba(32,113,72,0.5);*/
    border: 1px solid transparent;
    border-radius: 8px;
    /*background-color: rgba(32,113,72,0.1);*/
    transition: all 0.4s ease-in-out;
    padding: 15px;
    display: flex;
    flex-direction: column;
    /*flex-wrap: wrap;*/

    gap: 2rem;
}

.service-application-image {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    opacity: 1;
    transition: all 0.4s ease-in-out;
    border: 1px solid rgba(32,113,72,0.05);
}

.service-applications-item:hover .service-application-image {
    opacity: 1;
}

.service-application-content {
    /*                margin-left: 10px;
                        flex: 0 100%;
        */
}

.service-application-title {
    font-size: 1.2rem !important;
}

.service-application-medialist {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-left: 20px;
}

.service-application-mediaitem {
    height: 150px;
    width: 150px;
    border: 1px solid rgba(32, 113, 72, 0.25);
    box-shadow: 4px 4px 7px 0px rgb(32, 113, 72);
    border-radius: 10px;
    overflow: hidden;
    border-radius: 15px;
}

.service-application-content-1 {
    flex: 1;
}

@media (min-width: 992px) {
    .service-leistungen-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-leistung-item {
        flex: 1 1 calc(50% - 0.5rem);
    }
    /*                .service-applications-list {
                            flex-direction: row;
                            flex-wrap: wrap;
                        }
        */

    .service-applications-item {
        /*flex: 1 calc(50% - 0.5rem);*/
        flex: 1 calc(100% - 0.5rem);
        /*flex-wrap: nowrap;*/

        flex-direction: row;
        align-items: center;
    }

    .service-application-content {
        /*margin-left: 20px;*/
        flex: 1;
    }

    .service-application-medialist {
        flex: 0 0 40%;
    }

    .service-applications-item:nth-child(even) {
        flex-direction: row-reverse;
    }

        .service-applications-item:nth-child(even) .service-application-medialist {
            flex-direction: row-reverse;
        }
}


.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    padding: 1rem 0;
    margin: 15px 25px;
}

.process-step {
    position: relative;
    padding: 1.5rem 1rem 1rem;
    border-left: 2px solid rgb(32, 113, 72);
    /*background: rgba(32, 113, 72, 0.05);*/
    border-radius: 0px;
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background: rgb(32, 113, 72);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.process-step h4 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem !important;
    font-weight: 600;
    min-height: 50px;
}

.process-step p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.service-technologies-medialist {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-left: 20px;
}

.service-technologies-mediaitem {
    height: 100px;
    width: 100px;
    border: 1px solid rgba(32, 113, 72, 0.25);
    box-shadow: 4px 4px 7px 0px rgb(32, 113, 72);
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 850px) {
    .process-step h4 {
        min-height: unset;
    }
}

.service-technologies-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 15px 25px;
}

.service-technologies-item {
    /*border: 1px solid rgba(32,113,72,0.5);*/
    border: 1px solid transparent;
    border-radius: 8px;
    /*background-color: rgba(32,113,72,0.1);*/
    transition: all 0.4s ease-in-out;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-technologies-content-1 {
    flex: 1;
}

/*.service-technologies-item:hover {
    background-color: rgba(32,113,72,0.05);
}
*/
.service-technologies-title {
    font-size: 1.2rem !important;
}

.service-technologies-item-description {
    font-size: 1rem !important;
}

.service-technologies-mediaitem {
    height: 150px;
    width: 150px;
}

@media (min-width: 992px) {
    .service-technologies-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-technologies-item {
        flex: 1 calc(100% - 0.5rem);
        flex-direction: row;
        align-items: center;
    }

        .service-technologies-item:nth-child(even) {
            flex-direction: row-reverse;
        }

            .service-technologies-item:nth-child(even) .service-technologies-medialist {
                flex-direction: row-reverse;
            }
}

.service-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 15px 25px;
}

.service-benefits-item {
    /*border: 1px solid rgba(32,113,72,0.5);*/
    border: 1px solid transparent;
    border-radius: 8px;
    /*background-color: rgba(32,113,72,0.1);*/
    transition: all 0.4s ease-in-out;
    padding: 15px;
}

    /*.service-benefits-item:hover {
    background-color: rgba(32,113,72,0.05);
}
*/
    .service-benefits-item h4 {
        font-size: 1.2rem !important;
    }

    .service-benefits-item p {
        font-size: 1rem !important;
    }

@media (min-width: 998px) {
    .service-benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-benefits-item {
        flex: 1 1 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
}

.itwservices-form {
    margin: 15px 25px 30px;
    /*    padding: 25px 15px;
    border: 1px solid rgba(32, 113, 72, 0.5);
    box-shadow: 2px 2px 4px 0px rgb(32, 113, 72);
    background-color: rgba(32, 113, 72, 0.05);
    border-radius: 10px;
*/
}

    .itwservices-form .form-label {
        font-size: 1rem;
        color: rgb(32,113,72);
        font-weight: 600;
    }

    .itwservices-form input {
        min-width: 100%;
    }

.itwservice-button {
    border: 1px solid rgb(32, 113, 72);
    border-radius: 2px;
    background-color: rgba(32, 113, 72, 0.15);
    color: rgba(32, 113, 72, 1);
    font-size: 1.2rem;
    padding: 8px 25px;
    transition: all 0.4s ease-in-out;
    margin-right: 1rem;
}

    .itwservice-button:hover {
        background-color: rgba(32,113,72,0.75);
        color: white;
    }

.itwservice-button-abort {
    background-color: rgba(212, 88, 88, 0.15);
}

    .itwservice-button-abort:hover {
        background-color: rgba(212, 88, 88, 0.75);
        color: white;
    }

/*FAQ-Section*/
.services-faq-question {
    font-size: 1rem;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
}

    .services-faq-question i {
        margin-right: 15px;
        color: rgb(32, 113, 72);
        font-size: 1.5rem;
    }

    .services-faq-question .fa-minus {
        display: none;
    }

    .services-faq-question .fa-plus {
        display: inline-flex;
    }

.services-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.15s ease-in-out;
    padding-left: 35px;
    font-weight: normal;
    opacity: 0;
}

.services-faq-question.open .services-faq-answer {
    max-height: fit-content;
    opacity: 1;
}

.services-faq-question.open .fa-minus {
    display: inline-flex;
}

.services-faq-question.open .fa-plus {
    display: none;
}

.services-documents {
}

.services-documents-list {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 1rem 3rem;
}

.services-documents-list-entry {
    max-width: 200px;
    color: rgb(32,113,72);
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .services-documents-list-entry h4 {
        font-size: 1.25rem !important;
        font-weight: unset !important;
        letter-spacing: unset !important;
        margin-top: 10px;
    }

.menu-smallscreens {
    display: none;
    transition: all 0.4s ease-in-out;
}

    .menu-smallscreens .btn {
        max-width: 38px;
        transition: all 0.4s ease-in-out;
        overflow: hidden;
        white-space: nowrap;
        text-align: center;
    }

        .menu-smallscreens .btn:hover {
            max-width: 200px;
        }

/* references */
.service-references-list {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 15px 25px;
}

.service-references-item {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

    .service-references-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .service-references-item h4 {
        font-size: 1.2rem !important;
    }

.service-references-slider {
    margin: 15px 25px;
    position: relative;
}

.service-references-slider-item {
    display: grid;
    grid-template-columns: 40% 60%;
    position: absolute;
}

    .service-references-slider-item .left {
        /*max-height: 275px;*/
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .service-references-slider-item .left .media {
            border-radius: 10px;
            max-height: 100%;
        }


.itwsubnavbar {
    transition: all 0.2s ease-in-out;
}

.itwservices-subnavbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.1rem;
    color: rgb(32, 113, 72);
    margin-bottom: 10px;
    margin-left: 82px;
    padding: 8px;
    position: sticky;
    top: 57px;
    z-index: 1001;
    font-weight: lighter;
    transition: all 0.2s ease-in-out;
}

.itwsubnavbar-item {
    margin-right: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .itwsubnavbar-item.active {
        /*text-shadow: 0 0 0.5px black;*/
        box-shadow: inset 0 -2px 0 0 rgb(32,113,72);
        /*transform: scale(1.1);*/
    }

    .itwsubnavbar-item:hover {
        cursor: pointer;
    }

@media (max-width: 1450px) {
    .itwsubnavbar {
        margin-left: 100px !important;
    }
}

/* smaller Screens */
@media (max-width: 1098px) {
    .hero-title h2 {
        font-size: 2rem;
    }

    .hero-subline h3 {
        font-size: 1.25rem !important;
    }

    .itwsubnavbar {
        margin-left: 100px !important;
    }

        .itwsubnavbar .text {
            display: none;
        }

    .itwservice-application {
        justify-content: center;
        flex-direction: column;
    }

        .itwservice-application:nth-child(even) {
            justify-content: center;
            flex-direction: column;
        }

    .service-applications-item {
        display: block;
        text-align: center;
        min-width: 100%;
    }

    .itwservice-application:nth-child(even) .medialist {
        justify-content: center;
    }
}
/* more smaller Screens */
@media (max-width: 768px) {
    .itwsubnavbar-item {
        margin-right: 1rem;
        /*align-items: flex-start;*/
        gap: 15px;
        font-size: 1.05rem;
        justify-content: space-between;
    }
    .itwsubnavbar-item i {
        font-size: 1.5rem;
    }
    .itwsubnavbar-item span {
        display: none;
    }

    .hero-title h2 {
        font-size: 1.5rem;
    }

    .hero-subline h3 {
        font-size: 1rem !important;
    }

    .service-topic h3 {
        text-align: center;
    }

    .itwservice-hero-texts h2 {
        font-size: 3rem !important;
    }

    .service-topic h4 {
        text-align: center;
    }

    .service-topic .medialist {
        justify-content: center;
    }

    /*    .service-leistung-item, .service-technologies-content, .service-benefits-item, .services-faq-question {
        text-align: center;
    }

    .itwservice-leistungen h4 {
        justify-content: center;
    }
*/
    .form-btn-submit {
        width: 100%;
    }

    ul {
        padding-left: 0;
    }

    .service-topic {
        border-top: 1px solid rgba(32,113,72,0.5);
        padding-top: 15px;
    }

    .menu-smallscreens {
        display: flex;
        opacity: 0;
        position: fixed;
        right: 3px;
        z-index: 200;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        flex-wrap: wrap;
        gap: 2px;
        align-content: flex-end;
        align-items: flex-end;
    }

    .itwsubnavbar {
        margin-left: 100px !important;
    }

        .itwsubnavbar .text {
            display: none;
        }
}

.services-entry {
    border-bottom: 10px solid rgba(32, 113, 72, 0.25);
    margin-bottom: 20px;
}


/* myNewSlider */
.itwmyslider {
    justify-content: center;
    align-items: center;
    display: flex;
}

    .itwmyslider .itwmyslider-slide {
        opacity: 0;
        transition: all 0.4s ease-in-out;
        z-index: 1;
        display: grid;
        grid-template-columns: 50% 50%;
    }

        .itwmyslider .itwmyslider-slide.active {
            opacity: 1;
            z-index: 2;
        }

    .itwmyslider .btnnav {
        opacity: 0.5;
        transition: all 0.4s ease-in-out;
    }

    .itwmyslider:hover .btnnav {
        opacity: 1;
    }

@media (max-width: 768px) {
    .itwmyslider-slide {
        grid-template-columns: 100%;
    }

    .service-references-item {
        flex-direction: column;
        text-align: center;
    }

        .service-references-item:nth-child(even) {
            flex-direction: column;
        }

    .service-technologies-item .service-technologies-title {
        text-align: center;
    }

    .itwservice-application h4 {
        text-align: center;
    }
}

.itwform-uploadarea {
    border-radius: 2px;
    padding: 25px 10px;
    width: 100%;
    min-height: 150px;
    border: dashed 2px rgba(32,113,72,0.25);
    background-color: rgba(32,113,72,0.05);
}

    .itwform-uploadarea .dropingactive {
        border: solid 2px rgba(32,113,72,0.5);
        background-color: rgba(32,113,72,0.2);
    }

/* styles für dienstleistungen */
.itwservice {
    margin-bottom: 130px;
    border-bottom: 31px solid rgba(32, 113, 72, 0.2);
    padding-bottom: 100px;
}

.itwservice-topic-list {
    padding: 1rem;
    display: grid;
    grid-template-columns: auto;
    justify-items: center;
    gap: 0;
}

.itwservice-topic-list-item {
    display: flex;
    flex-direction: column;
    margin: 1rem 0 0;
    min-width: 100%;
}

    .itwservice-topic-list-item i {
        font-size: 2rem;
        color: rgba(32, 113, 72, 0.45);
        transition: all 0.4s ease-in-out;
    }

    .itwservice-topic-list-item:hover i {
        color: rgba(32,113,72,0.8);
    }

    .itwservice-topic-list-item h4 {
        font-size: 1.25rem !important;
        color: rgb(32, 113, 72) !important;
        font-weight: 400 !important;
        border-bottom: 1px solid rgba(32,113,72,0.5);
        display: flex;
        align-items: center;
        justify-content: start;
        padding-bottom: 8px;
        padding-left: 2rem;
    }

    .itwservice-topic-list-item .description {
        text-align: justify;
        padding: 1rem 5rem;
        align-content: center;
    }

.itwservice-content-2cols {
    display: grid;
    grid-template-columns: 75% auto;
}

.itwservice-content .medialist {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 0;
}

.itwservice-content .media {
    padding: 1rem 0;
    align-content: flex-end;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.itwservice-content .medialist .medialist-image {
    width: 100px;
    height: 100px;
}

.itwdl-aps-list {
    display: flex;
    /*grid-template-columns: 50% 50%;*/
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
    text-align: center;
    grid-auto-flow: column;
    align-content: center;
    justify-items: center;
    justify-content: center;
}

.itwdl-aps-item {
    min-width: 30%;
    max-width: 33.3%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.itwdl-aps-contact {
    font-size: 1.1rem;
    text-align: center;
}

@media (max-width: 1000px) {
    .itwservice-topic-list-item h4 {
        padding-left: 2rem;
    }

    .itwservice-content-2cols {
        display: grid;
        grid-template-columns: 100%;
    }

    .itwservice-topic-list-item .description {
        text-align: justify;
        padding: 1rem 2rem;
    }

    .itwservice-content .medialist {
        padding: 1rem 5rem;
        justify-content: center;
    }

    .itwservice-content .media {
        padding-top: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .itwservice-topic-list-item h4 {
        padding-left: unset;
        justify-content: center;
    }

    .itwservice-topic-list-item .description {
        text-align: justify;
        padding: 1rem 0rem;
    }

    .slider-item-content-media {
        transform: unset !important;
    }

        .slider-item-content-media img {
            min-width: 100vw !important;
        }
}


/* quill styles */
.ql-container.ql-disabled .itwquill-btn-modifytable {
    display: none;
}

.ql-container td {
    border: none !important;
}


/* mod. DL-Page */
.itwservice-topic-list2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.itwservice-topic-list-item-with-slider {
    position: relative;
    height: 550px;
    /*overflow: hidden;*/
}

    .itwservice-topic-list-item-with-slider .media {
        position: absolute;
        left: 2rem;
        right: 0rem;
        bottom: 5rem;
        top: 3rem;
        border-radius: 10px;
        /* height: 100%; */
        /* width: 100%; */
        /* padding: 1rem 5rem 3rem 2rem; */
        /* margin: 0.5rem 5rem 2rem 2rem; */
        /* border-radius: 5px; */
        overflow: hidden;
    }

        .itwservice-topic-list-item-with-slider .media .media-content {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .itwservice-topic-list-item-with-slider .media .media-image {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            min-height: 100%;
            transition: all 0.4s ease-in-out;
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            min-width: 100%;
        }

            .itwservice-topic-list-item-with-slider .media .media-image.active {
                opacity: 1;
            }

    .itwservice-topic-list-item-with-slider .textbox {
        position: absolute;
        right: 0;
        bottom: 0px;
        background-color: rgba(32, 113, 72, 1);
        padding: 1rem 2rem 0.5rem;
        border: 1px solid rgba(32, 113, 72, 0.5);
        /*border-radius: 0 0 10px 10px;*/
        z-index: 5;
        color: white !important;
        font-size: 1.05rem;
        max-width: 500px;
    }

        .itwservice-topic-list-item-with-slider .textbox li::before {
            color: white !important;
        }

        .itwservice-topic-list-item-with-slider .textbox table {
            --bs-table-bg: transparent;
            --bs-table-color: white;
            --bs-table-striped-color: white;
            --bs-table-hover-color: white;
        }

    .itwservice-topic-list-item-with-slider h4 {
        font-size: 1.25rem !important;
        color: rgb(32, 113, 72) !important;
        font-weight: 400 !important;
        border-bottom: 1px solid rgba(32, 113, 72, 0.5);
        display: flex;
        align-items: center;
        justify-content: start;
        padding-bottom: 8px;
        padding-left: 2rem;
    }

    .itwservice-topic-list-item-with-slider .pagination {
        position: absolute;
        bottom: 3.6rem;
        left: 2rem;
        font-size: 0.8rem;
    }

@media (max-width: 768px) {
    .itwservice-topic-list2 {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .itwservice-topic-list-item-with-slider {
        position: relative;
        height: unset;
        /* overflow: hidden; */
    }

        .itwservice-topic-list-item-with-slider .media {
            position: relative;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            /* border-radius: 10px; */
            height: 100%;
            width: 100%;
            padding: 0;
            margin: 0;
            border-radius: 0;
            overflow: hidden;
            min-width: 100%;
            /* height: 500px;*/
            overflow: hidden;
        }

            .itwservice-topic-list-item-with-slider .media .media-content {
                position: relative;
                width: 100%;
                height: 400px;
            }

            .itwservice-topic-list-item-with-slider .media .media-image {
                background-repeat: no-repeat;
                background-size: contain;
                background-position: center;
                min-height: 100%;
                transition: all 0.4s ease-in-out;
                opacity: 0;
                position: absolute;
                top: 0;
                left: 0;
                min-width: 100%;
            }

                .itwservice-topic-list-item-with-slider .media .media-image.active {
                    opacity: 1;
                }

        .itwservice-topic-list-item-with-slider .textbox {
            position: relative;
            right: 0;
            bottom: 0px;
            background-color: rgba(255, 255, 255, 1);
            padding: 0.25rem 2rem;
            border: none;
            z-index: 5;
            color: unset !important;
            font-size: 1.05rem;
            max-width: unset;
        }

            .itwservice-topic-list-item-with-slider .textbox li::before {
                color: unset !important;
            }

            .itwservice-topic-list-item-with-slider .textbox table {
                --bs-table-bg: unset !important;
                --bs-table-color: unset !important;
                --bs-table-striped-color: unset !important;
                --bs-table-hover-color: unset !important;
                text-align: center !important;
            }

                .itwservice-topic-list-item-with-slider .textbox table th, td {
                    text-align: center !important;
                }
        /*    .itwservice-topic-list-item-with-slider .textbox table td {
        text-align: center !important;
    }
*/
        .itwservice-topic-list-item-with-slider h4 {
            font-size: 1.25rem !important;
            color: rgb(32, 113, 72) !important;
            font-weight: 400 !important;
            border-bottom: 1px solid rgba(32, 113, 72, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            padding-bottom: 8px;
            padding-left: 0;
        }

        .itwservice-topic-list-item-with-slider .pagination {
            position: relative;
            bottom: 0;
            left: 0;
            align-content: center;
            text-align: center;
            justify-content: center;
            margin: 0.5rem;
        }
}

.itwservice-topic-slider {
    width: 100%;
    /*height: auto;*/ /*600px;*/
    position: relative;
    margin: 1rem 3rem;
    display: grid;
    grid-template-columns: 1fr;
    /*margin-bottom: 40px;*/

    height: 0; /* Wird jetzt dynamisch vom JS überschrieben */
    transition: height 0.4s ease-in-out;
    overflow: hidden; /* Verhindert, dass das Hochkantbild beim Wechsel herausragt */
}

.itwservice-topic-slider-item {
    grid-area: 1 / 1 / 2 / 2; /* Alle starten bei Zeile 1, Spalte 1 */
    width: 100%;
    height: max-content; /* Die Höhe kommt jetzt rein vom Bild! */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s;
    z-index: 1;
    /*    position: absolute;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100%;
    overflow: hidden;
*/
}

    .itwservice-topic-slider-item.active {
        opacity: 1;
        visibility: visible;
        position: relative; /* Das aktive Bild drückt den Container aktiv auf seine Höhe */
        z-index: 2;
        /*opacity: 1;*/
    }

    /* 1. Das störende, namenlose Zwischen-Div zwingen, sich wie ein normaler Block zu verhalten */
    .itwservice-topic-slider-item > div[style*="position: relative"] {
        height: auto !important; /* Hebt das starre height: 100% auf */
        overflow: visible !important; /* Damit Textboxen am Rand nicht abgeschnitten werden */
    }

    /* 2. Den Content-Bereich ebenfalls auf auto-Höhe setzen */
    .itwservice-topic-slider-item .slider-item-content {
        position: relative;
        width: 100%;
        height: auto;
        top: 40px;
    }

.slider-item-content-media {
    position: relative !important; /* Überschreibt das absolute im HTML */
    width: 100%;
    height: auto;
    transform: none !important; /* Schaltet die alten Verschiebe-Reste ab */
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden;
}

    .slider-item-content-media img {
        width: 100%;
        height: auto; /* Bild behält seine native Proportion bei 100% Breite */
        display: block;
    }

.itwitem-title {
    position: absolute;
    z-index: 10;
    background: white;
    /*backdrop-filter: blur(5px);*/
    /*padding: 1rem 1.5rem;*/
    /*border-radius: 4px;*/
    /*box-shadow: 0 4px 15px rgba(0,0,0,0.15);*/
    max-width: calc(100% - 100px);
}

/* Textboxen passen sich an */
.itwitem-description {
    position: absolute;
    z-index: 10;
    /*background: rgba(255, 255, 255, 0.85);*/
    background-color: rgba(140, 201, 172, 0.75);
    backdrop-filter: blur(5px);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    max-width: 50%;
}

/* Wenn das Bild sehr hoch wird, bleibt die Beschreibung trotzdem brav unten sitzen */
.itwitem-description {
    bottom: 20px;
    left: 20px;
}
    /* Wenn Pfeile im Bild sind, etwas Platz lassen */
    .itwitem-description.bottom-right {
        bottom: 20px;
        right: 20px;
        left: auto;
    }

/*.itwservice-topic-slider-item .slider-item-content{
    position: relative;
    min-width: 100%;
    height: calc(100% - 60px);
    overflow: hidden;
}

.itwservice-topic-slider-item .itwitem-background {
    width: 100%;
    min-width: 100%;
    min-height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    z-index: 0;
}
.itwservice-topic-slider-item .itwitem-title {
    z-index: 1;
    position: relative;
    top: 0;
    left: 0;
    padding: 1rem 1.5rem 0.25rem 0;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(32,113,72,1);
    width: 100%;
}*/
.itwitem-title h4 {
    font-weight: 400 !important;
}


/*.itwservice-topic-slider-item .itwitem-description {
    position: absolute;
    top: unset;
    right: 1rem;
    bottom: 1rem;
    left: unset;
    z-index: 1;*/
/*background-color: rgba(32,113,72,1);*/
/*background-color:rgba(140, 201, 172, 0.9) ;
    padding: 1rem 2rem;
    font-size: 1.1rem;*/
/*color: white;*/
/*max-width: 40%;
}
.itwitem-description.top-right{
    top: 1rem;
    bottom: unset;
    right: 1rem;
    left: unset;
}
.itwitem-description.top-left {
    top: 1rem;
    bottom: unset;
    right: unset;
    left: 1rem;
}
.itwitem-description.bottom-left {
    top: unset;
    bottom: 1rem;
    right: unset;
    left: 1rem;
}
.itwitem-description.top-center {
    top: 1rem;
    bottom: unset;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
}
.itwitem-description.bottom-center {
    top: unset;
    bottom: 1rem;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
}*/

.itwservice-topic-slider .pagination {
    position: absolute;
    right: 0;
    /*top: 1.5rem;*/
    z-index: 3;
}

.itwtopic-description {
    margin: 0 3rem;
}

@media (max-width: 768px) {
    .itwservice-topic-slider {
        margin: 0 0;
    }

    .itwservice-topic-slider-item .itwitem-background {
        max-height: 80%;
        min-height: 80%;
        background-size: cover;
    }

    .itwservice-topic-slider-item .itwitem-description {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: unset;
        width: 100%;
        min-width: 100%;
        max-height: fit-content;
        z-index: 1;
        background-color: rgba(255,255,255,0.5);
        transition: all 0.4s ease-in-out;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        color: black;
    }

    .myslide-content {
        display: flex;
        flex-direction: column;
    }

    .slider-item-content:hover .itwitem-description {
        background-color: rgba(255,255,255,1);
    }
}

.swiper-slide-fitwidth {
    width: fit-content !important;
}

.itwslider {
    display: block;
}

.itwslider-entry {
    display: none;
    justify-content: center;
}

.itwslider-placeholder {
    background-color: rgba(32, 113, 72, 0.25);
}

.itwslider-button {
    position: absolute;
    z-index: 1000;
    width: 50px;
    color: white; /* rgb(32,113,72);*/
    font-size: xx-large;
    background-color: transparent; /* rgba(32,113,72,0.05);*/
    transition: all 0.25s ease-in-out;
    border: none;
    opacity: 0;
}

    .itwslider-button:hover {
        /*color: rgb(32,113,72);*/
        /*font-size: xx-large;*/
        /*background-color: rgba(32,113,72,0.25);*/
    }

.itwslider-button-prev {
    left: 0px;
    top: 0px;
    background-image: linear-gradient(to right, rgba(32,113,72,0.75), rgba(32,113,72,0));
}

.itwslider-button-next {
    right: 0px;
    top: 0px;
    background-image: linear-gradient(to right, rgba(32,113,72,0), rgba(32,113,72,0.75));
}

.itwslider-entry-label {
    width: 100%;
    padding: 5px;
    padding-left: 10px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: rgba(255,255,255,0.5);
    color: black;
    font-size: smaller;
    text-shadow: 4px 4px 6px white;
}

@media (max-width: 768px) {
    .itwservice-topic-slider {
        margin: 0 0;
    }

    .itwservice-topic-slider-item .itwitem-background {
        max-height: 80%;
        min-height: 80%;
        background-size: cover;
    }

    .itwservice-topic-slider-item .itwitem-description {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: unset;
        width: 100%;
        min-width: 100%;
        max-height: fit-content;
        z-index: 1;
        background-color: rgba(255,255,255,0.5);
        transition: all 0.4s ease-in-out;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        color: black;
    }

    .myslide-content {
        display: flex;
        flex-direction: column;
    }

    .slider-item-content:hover .itwitem-description {
        background-color: rgba(255,255,255,1);
    }
}

