.pageelement {
    /* ... */
}

.pageelement .content-container {
    /* ... */
}
.pageelement-bukowiki-detail .fa-arrow-up-right,
.pageelement-bukowiki-detail .fa-chevron-right {
    padding-right: 10px;
    font-size: 20px;
    color: #5E7461;
}

.pageelement-bukowiki-detail .fa-arrow-left {
    margin-right: 10px;
    color: #5E7461;
}

.pageelement-bukowiki-detail .back-link {
    display: flex;
    color: #5E7461;
    font-size: 24px;
    font-weight: 400;
    width: fit-content;
}

.pageelement-bukowiki-detail .wrapper {
    max-width: 100%;
    width: 100%;
}

.pageelement-bukowiki-detail .info-box {
    background: #fff;
    padding: 1rem;
    border: 1px solid #5e7461;
    width: 45%;
    min-width: 500px;
    height: fit-content;
}

.pageelement-bukowiki-detail .info-box .content {
    display: flex;
    gap: 1rem;
}

.pageelement-bukowiki-detail .detail-wrapper {
    width: 100%;
}

.pageelement-bukowiki-detail .box {
    background: #E4E4E4;
    padding: 50px 0;
    margin: 30px auto 70px;
    position: relative;
    width: 100%;
}

.pageelement-bukowiki-detail .box::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    left: calc((100vw - 100%) / -2);
    background: inherit;
    z-index: -1;
}

.pageelement-bukowiki-detail .box .flex-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
    box-sizing: border-box;
}

.pageelement-bukowiki-detail .box.gallery .flex-wrapper {
    flex-flow: column;
    gap: 0;
}

.pageelement-bukowiki-detail .box.gallery .gallery-images {
    display: grid;
    gap: 30px; /* Abstand zwischen den Items */
    grid-template-columns: repeat(3, 1fr); /* 3 gleich große Spalten */
}


.pageelement-bukowiki-detail .box.top .introtext {
    max-width: 800px;
}

.pageelement-bukowiki-detail .box.top .image-container {
    max-height: 300px;
    height: 100%;
}


.pageelement-bukowiki-detail .box.top .image {
    height: 100%;
    width: auto;
    max-height: 300px;
    max-width: 100%;
    object-fit: cover;
}

.pageelement-bukowiki-detail .box.top .info {
    display: flex;
    flex-flow: column;
    gap: 5px;
}

.pageelement-bukowiki-detail .main-wrapper .maintext {
    max-width: 1000px;
    margin-bottom: 100px;
}

.pageelement-bukowiki-detail .main-wrapper .maintext a {
    text-decoration: underline;
}

.pageelement-bukowiki-detail .main-wrapper .maintext * {
    float: none !important;
    font-size: 22px;
}

.pageelement-bukowiki-detail .main-wrapper .maintext ul {
    list-style: '• ';
}

.pageelement-bukowiki-detail .box.gallery h3 {
    color: #5E7461;
}

.pageelement-bukowiki-detail .map {
    margin-bottom: 100px;
 }

.pageelement-bukowiki-detail #openstreetmap-container {
    height: 500px;
}

.pswp img {
    object-fit: contain;
}

.pageelement-bukowiki-detail .gallery-image {
    max-height: 287px;
    position: relative;
}

.pageelement-bukowiki-detail .gallery-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.pageelement-bukowiki-detail .gallery-image .caption {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    bottom: 0;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.pageelement-bukowiki-detail .gallery-image:hover .caption {
    display: inline-block;
}

.pageelement-bukowiki-detail .texteditor a {
    text-decoration: none;
}

.pageelement-bukowiki-detail .gallery-image .caption .source {
    color: #fff;
    font-size: 16px;
}

@media only screen and (max-width: 1024px){
    .pageelement-bukowiki-detail .box.gallery .gallery-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 650px){
    .pageelement-bukowiki-detail .text-content {
        order: 1;
    }

    .pageelement-bukowiki-detail .box.gallery .gallery-images {
        grid-template-columns: repeat(1, 1fr);
    }

    .pageelement-bukowiki-detail .box .flex-wrapper {
        flex-flow: column;
    }
}.pageelement-bukowiki-list {
    width: 100%;
    box-sizing: border-box;
}

.pageelement-bukowiki-list .content-container {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 100px;
}

.pageelement-bukowiki-list .content-container h2 {
    color: #5E7461;
    font-size: 43px;
    border-bottom: 2px solid #5E7461;
    padding-bottom: 20px;
}

.pageelement-bukowiki-list .content-container .item-wrapper {
    display: flex;
    gap: 55px;
    justify-content: space-between;
    width: 100%;
}

.pageelement-bukowiki-list .item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 0 25px;
    margin-bottom: 25px;
    overflow: hidden;
    border-bottom: 1px solid #5E7461;
    flex-flow: column;
    max-width: 430px;
}

.pageelement-bukowiki-list .image-container {
    display: flex;
    float: left;
    width: 100%;
    max-width: 430px;
    margin-right: 60px;
    max-height: 270px;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    justify-content: flex-end;
}

.pageelement-bukowiki-list .image-container image {
    display: inline-block;
    width: auto;
    height: 100%;
    box-sizing: border-box;
}

.pageelement-bukowiki-list .image-container .image {
    max-height: 100%;
    object-fit: cover;
}



.pageelement-bukowiki-list .text-container {
    float: left;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    min-width: 20%;
}

.pageelement-bukowiki-list .text-container .headline-container .headline {
    margin-bottom: 20px;
    display: inline-block;
    color: #5E7461;
}

.pageelement-bukowiki-list .text-container .text {
    box-sizing: border-box;
    font-size: 22px;
    word-break: break-word;
    word-wrap: break-word;
    overflow: hidden;
}

.pageelement-bukowiki-list .detail-link {
    display: inline-block;
    color: #5E7461;
    font-size: 24px;
    margin-top: 20px;
    font-weight: 400;
}

.pageelement-bukowiki-list .detail-link .fa-arrow-right {
    color: #5E7461;
    font-size: 22px;
    padding-right: 15px;
}

@media only screen and (max-width: 520px) {
    .pageelement-bukowiki-list .image-container {
        width: 100%;
        margin: 0 !important;
        float: none;
    }

    .pageelement-bukowiki-list .text-container {
        float: none;
        /*margin-top: 15px;*/
        overflow: hidden;
        max-width: 100%;
    }
}

.pageelement-bukowiki-list .item:last-of-type {
    border-bottom: 1px solid #5E7461;
    padding-bottom: 20px;
}

.pageelement-bukowiki-list .ai-mark {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.pageelement-bukowiki-list .ai-mark:before {
    content: '';
    background: url(/_images/ai-mark.svg) no-repeat;
    height: 25px;
    width: 25px;
    display: block;
    opacity: 0.4;
}

.pageelement-bukowiki-list .news-list-copyright {
    font-size: 12px;
    opacity: 0.8;
    position: absolute;
    /*z-index: 1000;*/
    bottom: -20px;
    color: black;
    line-height: unset;
}

@media only screen and (max-width: 1024px) {
    .pageelement-bukowiki-list .content-container .item-wrapper {
        flex-flow: column;
        gap: 0px;
    }

    .pageelement-bukowiki-list .image-container {
        margin: auto;
    }
}

@media only screen and (max-width: 520px) {
    .pageelement-bukowiki-list .detail-link {
        font-size: 20px;
    }
}.pageelement-bukowiki-type-list {
    width: 100%;
    box-sizing: border-box;
}

.pageelement-bukowiki-type-list .content-container {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 50px;
}

.pageelement-bukowiki-type-list .content-container h2 {
    color: #5E7461;
    font-size: 43px;
    border-bottom: 2px solid #5E7461;
    padding-bottom: 20px;
}

.pageelement-bukowiki-type-list .content-container .az-search {
    background: #EDEFEB;
    border: 2px solid #A7B09B;
    padding: 20px 25px;
    border-radius: 5px;
    background: url('/_images/select-wiki.svg') no-repeat 0 0 #EDEFEB;
    background-position-x: calc(100% - 25px);
    background-position-y: 20px;
    background-size: 25px;
}

.pageelement-bukowiki-type-list .content-container .az-search[open] {
    background: url('/_images/select-wiki-rotated.svg') no-repeat 0 0 #EDEFEB;
    background-position-x: calc(100% - 25px);
    background-position-y: 20px;
    background-size: 25px;
}
.pageelement-bukowiki-type-list .content-container .az-search summary {
    font-size: 20px;
    color: #000;
    font-weight: 400;
    list-style: none;
    cursor: pointer;
}

.pageelement-bukowiki-type-list .content-container .az-search .dropdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #5E7461;
    margin-top: 20px;
}

.pageelement-bukowiki-type-list .content-container .az-search .dropdown .cell-item {
    padding: 10px;
    text-align: left;
    text-decoration: none;
    color: #5E7461;
    border-bottom: 1px solid #5E7461;
    font-size: 20px;
}

.pageelement-bukowiki-type-list .content-container .az-search .dropdown .cell-item a{
    color: #5E7461;
    font-size: 20px;
    font-weight: 400;
}
.pageelement-bukowiki-type-list .content-container .az-search .dropdown .cell-item a:hover {
    font-weight: 700;
}

.pageelement-bukowiki-type-list .content-container .az-search .dropdown .cell-item:nth-child(4n) {
    border-right: none; /* Letzte Spalte hat keine rechte Linie */
}

.pageelement-bukowiki-type-list .content-container .item-wrapper {
    justify-content: space-between;
    width: 100%;
    display: grid;
    gap: 55px;
    grid-template-columns: repeat(3, 1fr);
}

.pageelement-bukowiki-type-list .item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 0 25px;
    margin-bottom: 25px;
    overflow: hidden;
    border-bottom: 1px solid #5E7461;
    flex-flow: column;
}

.pageelement-bukowiki-type-list .image-container {
    display: flex;
    float: left;
    width: 100%;
    max-width: 430px;
    margin-right: 60px;
    max-height: 270px;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    justify-content: flex-end;
}

.pageelement-bukowiki-type-list .image-container a {
    width: 100%;
}

.pageelement-bukowiki-type-list .image-container image {
    display: inline-block;
    width: auto;
    height: 100%;
    box-sizing: border-box;
}

.pageelement-bukowiki-type-list .image-container .image {
    max-height: 100%;
    object-fit: contain;
}



.pageelement-bukowiki-type-list .text-container {
    float: left;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    min-width: 20%;
}

.pageelement-bukowiki-type-list .text-container .headline-container .headline {
    margin-bottom: 20px;
    display: inline-block;
    color: #5E7461;
}

.pageelement-bukowiki-type-list .text-container .text {
    box-sizing: border-box;
    font-size: 22px;
    word-break: break-word;
    word-wrap: break-word;
    overflow: hidden;
}

.pageelement-bukowiki-type-list .detail-link {
    display: inline-block;
    color: #5E7461;
    font-size: 24px;
    margin-top: 20px;
    font-weight: 400;
}

.pageelement-bukowiki-type-list .detail-link .fa-arrow-left,
.pageelement-bukowiki-type-list .detail-link .fa-arrow-right {
    color: #5E7461;
    font-size: 22px;
    padding-right: 15px;
}

@media only screen and (max-width: 520px) {
    .pageelement-bukowiki-type-list .image-container {
        width: 100%;
        margin: 0 !important;
        float: none;
    }

    .pageelement-bukowiki-type-list .text-container {
        float: none;
        /*margin-top: 15px;*/
        overflow: hidden;
        max-width: 100%;
    }
}

.pageelement-bukowiki-type-list .item:last-of-type {
    border-bottom: 1px solid #5E7461;
    padding-bottom: 20px;
}

.pageelement-bukowiki-type-list .ai-mark {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.pageelement-bukowiki-type-list .ai-mark:before {
    content: '';
    background: url(/_images/ai-mark.svg) no-repeat;
    height: 25px;
    width: 25px;
    display: block;
    opacity: 0.4;
}

.pageelement-bukowiki-type-list .news-list-copyright {
    font-size: 12px;
    opacity: 0.8;
    position: absolute;
    /*z-index: 1000;*/
    bottom: -20px;
    color: black;
    line-height: unset;
}

@media only screen and (max-width: 1450px){
    .pageelement-bukowiki-type-list .content-container .az-search .dropdown {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 1024px) {
    .pageelement-bukowiki-type-list .content-container .item-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .pageelement-bukowiki-type-list .image-container {
        margin: auto;
    }

    .pageelement-bukowiki-type-list .content-container .az-search .dropdown {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 650px) {
    .pageelement-bukowiki-type-list .content-container .item-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .pageelement-bukowiki-type-list .content-container .az-search .dropdown {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media only screen and (max-width: 520px) {
    .pageelement-bukowiki-type-list .detail-link {
        font-size: 20px;
    }
}.button-item {
    list-style-type: none;
    background-color: #5E7461;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 335px;
    min-height: 60px;
    box-sizing: border-box;
    flex-direction: row;
}

.pageelement-buttons.no-margin {
    margin-bottom: 25px;
}

.button-item-container {
    width: 100%;
    max-width: 335px;
}

.button-item .button-icon i {
    font-size: 30px;
    color: #fff;
}

.button-item .button-icon-left {
    margin-right: 10px;
}

.button-item .button-icon-right {
    margin-left: 10px;
}

.button-item .text {
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    overflow-wrap: break-word;
    word-break: break-word;
    word-wrap: break-word;
    text-align: center;
}

@media only screen and (max-width: 520px) {
    .button-item .text {
        font-size: 20px;
    }
}.pageelement-contactbox .content-container {
    padding: 0;
    justify-content: flex-start;
    min-height: 400px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.pageelement-contactbox.no-margin {
    margin-bottom: 25px;
}

.pageelement-contactbox .contactbox-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.pageelement-contactbox .left-column.small .contactbox-image {
    box-sizing: border-box;
    max-width: 300px;
}

.pageelement-contactbox .text {
    margin-left: 0;
    padding: 30px 40px 20px 40px;
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    word-wrap: break-word;
    overflow: hidden;
    font-size: 18px;
}

.pageelement-contactbox .contactbox-name {
    margin-bottom: 8px;
}

.pageelement-contactbox .contactbox-position,
.pageelement-contactbox .contactbox-email {
    margin-bottom: 10px;
}

.pageelement-contactbox .contactbox-comment {
    white-space: pre-line;
}

.pageelement-contactbox .contactbox-comment * {
    font-size: 22px;
}


.pageelement-contactbox .contactbox-telephone::before {
    content: "\f095";
    width: 25px;
    font-size: 18px;
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-weight: 300;
    display: inline-block;
}

.pageelement-contactbox .contactbox-mobilephone::before {
    content: "\f3ce";
    width: 25px;
    font-size: 18px;
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-weight: 300;
    display: inline-block;
}

.pageelement-contactbox .contactbox-email::before {
    content: "\f0e0";
    width: 25px;
    font-size: 18px;
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-weight: 300;
    display: inline-block;
}

.pageelement-contactbox .contactbox-telefax::before {
    content: "\f1ac";
    width: 25px;
    font-size: 18px;
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-weight: 300;
    display: inline-block;
}

.pageelement-contactbox a.contactbox-telephone,
.pageelement-contactbox a.contactbox-mobilephone,
.pageelement-contactbox a.contactbox-email,
.pageelement-contactbox a.contactbox-telefax {
    display: block;
    line-height: 28px;
    font-size: 22px;
}

.pageelement-contactbox .contactbox-button {
    padding: 15px;
    max-width: 300px;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    margin-top: 45px;
    font-size: 24px;
    font-weight: 400;
    border-radius: 10px;
}

.pageelement-contactbox .contactbox-copyright {
    font-size: 12px;
    margin-top: -30px;
    align-self: end;
    padding: 5px 5px 0 5px;
    z-index: 5;
    position: absolute;
    bottom: 0;
}

.pageelement-contactbox .left-column,
.pageelement-contactbox .right-column {
    width: 50%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    flex: 1;
}

.pageelement-contactbox .right-column {
    justify-content: flex-start;
}

.pageelement-contactbox .left-column.small {
    width: 25%;
    max-width: 300px;
}

.pageelement-contactbox .right-column.small {
    width: 75%;
}

.pageelement-contactbox .left-column img {
    width: 100%;
    max-width: 700px;
    max-height: 400px;
    object-fit: cover;
    height: auto;
}

.pageelement-contactbox .left-column.small .contactbox-image img {
    max-width: 300px;
}

.pageelement-contactbox .heading-container {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto 20px;
    box-sizing: border-box;
}

.pageelement-contactbox .content-container.gray {
    background: #E4E4E4;
}

.pageelement-contactbox .content-container.gray .contactbox-telephone,
.pageelement-contactbox .content-container.gray .contactbox-mobilephone,
.pageelement-contactbox .content-container.gray .contactbox-telefax,
.pageelement-contactbox .content-container.gray .contactbox-email,
.pageelement-contactbox .content-container.gray .contactbox-telephone::before,
.pageelement-contactbox .content-container.gray .contactbox-mobilephone::before,
.pageelement-contactbox .content-container.gray .contactbox-telefax::before,
.pageelement-contactbox .content-container.gray .contactbox-email::before {
    color: #000;
}

.pageelement-contactbox .content-container.gray .contactbox-button {
    background-color: #5E7461;
    color: #fff;
}


@media only screen and (max-width: 1400px) {
    .pageelement-contactbox .content-container {
        padding: 20px;
    }

    .pageelement-contactbox .heading-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .pageelement-contactbox .content-container {
        flex-flow: column;
    }

    .contactbox .left-column, .contactbox .right-column {
        width: 100%;
    }

    .pageelement-contactbox .text {
        padding: 30px 0 0 0;
    }

    .pageelement-contactbox .contactbox-button {
        margin: 20px 0 0 0;
    }

    .pageelement-contactbox .left-column.small {
        min-width: 300px;
        margin: auto;
    }
}

@media only screen and (max-width: 520px) {
    .pageelement-contactbox .contactbox-name {
        font-size: 22px;
    }

    .pageelement-contactbox .contactbox-button {
        font-size: 20px;
    }
}

@media screen and (max-width: 400px) {
    .pageelement-contactbox .contactbox-button {
        max-width: 250px;
    }

    .pageelement-contactbox .contactbox-copyright {
        margin-top: 0;
    }

    .pageelement-contactbox.text {
        margin-left: 10px;
        padding-left: 10px;
        padding-right: 15px;
    }

    .pageelement-contactbox .left-column.small, .contactbox .right-column.small {
        width: 100% !important;
    }

    .pageelement-contactbox .content-container {
        align-items: center;
    }

    .pageelement-contactbox .left-column.small {
        min-width: unset;
        width: 100%;
    }
}.pageelement-downloads .heading-container {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.pageelement-downloads.no-margin {
    margin-bottom: 25px;
}

.pageelement-downloads .download-link {
    background-color: #5E7461;
    color: #fff;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 10px;
    min-height: 44px;
    font-size: 24px;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 35px;
    box-sizing: border-box;
    font-weight: 400;
    line-height: 30px;
}

.pageelement-downloads .download-link:before {
    color: #fff;
    font-size: 26px;
    margin-right: 34px;
}

.pageelement-downloads .download-list {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.pageelement-downloads .headline,
.pageelement-downloads li {
    overflow-wrap: break-word;
    word-break: break-word;
    word-wrap: break-word;
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
}

@media only screen and (max-width: 1400px) {
    .pageelement-downloads .heading-container {
        box-sizing: border-box;
    }
}

@media only screen and (max-width: 520px) {
    .pageelement-downloads .download-link {
        font-size: 20px;
    }
}.events-calendarlist {
    margin-bottom: 25px;
}

.events-calendarlist .wrapper {
    margin: auto;
}

.events-calendarlist .wrapper .filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.events-calendarlist h2 {

}


.events-calendarlist .search {
    margin-bottom: 15px;
    width: calc(50% - 5px);
    position: relative;
    display: inline-block;

}

.events-calendarlist .content {
    width: 100%;
}

.events-calendarlist .search .filter-search {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    border: solid 2px #5E7461;
    box-sizing: border-box;
    vertical-align: middle;

    display: block;
    padding: 3px 15px 0 calc(5% + 40px);
    font-size: 20px;
    background: #fff;
    color: #000;
}

.events-calendarlist .search .filter-search:focus {
    outline: none;
}

.events-calendarlist .searchicon:before {
    content: "\f109";
}

.events-calendarlist .search .searchicon:before {
    color: #000;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-weight: 300;
    font-size: 23px;
    padding-top: 2px;
    content: '\f002';
}

.events-calendarlist .search .innericon {
    position: absolute;
    top: 7px;
    left: 5%;
    z-index: 2;
    display: block;
    text-align: center;
    pointer-events: none;
}

.events-calendarlist .filter-select-wrapper {
    display: flex;
    width: calc(50% - 5px);
    justify-content: space-between;
}

.events-calendarlist .filter-select-wrapper .form-select {
    width: 100%;
}

.events-calendarlist .filter-select-wrapper .form-select select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: #5E7461 solid 2px;
    border-radius: 10px;
    background-size: auto;
    background: url('/_images/select.svg') no-repeat 0 0 #EDEFEB;
    background-position-x: 95%;
    background-position-y: 10px;
    background-size: 20px;
    width: 100%;
    padding: 11px 15px;
    color: #000;
    font-size: 20px;
    height: 45px;
    cursor: pointer;
    box-sizing: border-box;
    margin-bottom: 0;
}

.events-calendarlist .filter-item-wrapper {
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.events-calendarlist .filter-item-wrapper .title {
    margin: 10px 35px 10px 0;
}

.events-calendarlist .filter-item-wrapper .filter-item-topic {
    border-radius: 10px;
    height: 40px;
    padding: 12px 15px;
    margin-right: 10px;
    line-height: 20px;
    cursor: pointer;
    font-size: 20px;
    margin-bottom: 10px;
    background: #A7B09B;
    color: #000;
    box-sizing: border-box;
    font-weight: 400;
}


.events-calendarlist .filter-item-wrapper .filter-item-topic.selected {
    background: #5E7461;
    color: #fff;
}


#event-list-container .spinner {
    width: 100px;
    height: 100px;
    border: 10px solid rgb(230, 230, 230);
    border-top: 10px solid #000;
    border-radius: 50%;
    animation: loading-offer-list 1s linear infinite;
    margin-left: calc(50% - 75px);
}

#event-list-container .noresults {
    padding-bottom: 30px;
}

@keyframes loading-offer-list {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.events-calendarlist .calenderlist-groupheadline {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.events-calendarlist .grouplist {
    list-style-type: none;
    padding: 0;
    display: block;
    margin-bottom: 30px;
}

.events-calendarlist .grouplist .list-item {
    margin-bottom: 10px;
    border-left: 8px solid #5E7461;
    float: none;
    position: relative;
    background-color: #E4E4E4;
    padding-right: 40px;
    display: flex;
    gap: 20px;
    color: #5E7461;
}

.events-calendarlist .grouplist .list-item .nolink {
    background-color: #E5F0F8;
    padding: 15px 20px;
}

.events-calendarlist .grouplist .list-item .image {
    height: 193px;
    width: 310px;
    min-height: 193px;
    min-width: 310px;
}

.events-calendarlist .grouplist .list-item .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.events-calendarlist .grouplist li:last-child {
    margin-bottom: 0;
}

.events-calendarlist .grouplist h3,
.events-calendarlist .grouplist a h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}


.events-calendarlist .grouplist .link {
    display: flex;
    align-items: center;
}

.events-calendarlist .grouplist .content {
    padding-top: 13px;
    padding-bottom: 9px;
}

.events-calendarlist .grouplist .content .date {
    display: flex;
}

.events-calendarlist .grouplist .content .date:before {
    content: '\f073';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    color: #000;
    margin-right: 8px;

}

.events-calendarlist .grouplist .content .location:before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    color: #000;
    margin-right: 8px;

}

.events-calendarlist .ajax-list-load-more {
    display: inline-block;
    background: #5E7461;
    color: #fff;
    height: 60px;
    width: 250px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 20px 10px;
    box-sizing: border-box;
    border-radius: 6px;
    cursor: pointer;
}

.events-calendarlist .ajax-list-load-more.hidden {
    display: none;
}

.events-calendarlist .no-results {
    margin-bottom: 25px;
}


.events-calendarlist .list-item .day-square {
    background: #5E7461;
    color: #000;
    width: 56px;
    height: 56px;
    text-align: center;
    line-height: 56px;
    font-size: 24px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.events-calendarlist .list-item .day {
    display: flex;
    gap: 20px;
}

.events-calendarlist .list-item .day .month {
    display: none;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.events-calendarlist .list-item .link a {
    background: #5E7461;
    color: #000;
    width: 300px;
    text-align: center;
    display: inline-block;
    padding: 8px 35px;
    border-radius: 5px;
    box-sizing: border-box;
}

.events-calendarlist .list-item .link a:after {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    content: '\f061';
    margin-left: 8px;
}

/* *** local events *** */


.events-calendarlist .grouplist h3 {
    clear: both;
}

.events-calendarlist .grouplist li.local a,
.events-calendarlist .grouplist li.local div.nolink {
    /*background-color: #FFFFF5;*/
    /*color: #576471;*/
}

.events-calendarlist .grouplist li.local a h3,
.events-calendarlist .grouplist li.local div.nolink h3,
.events-calendarlist .grouplist li.local a .content,
.events-calendarlist .grouplist li.local div.nolink .content {
    /*color: #576471;*/
}

.events-calendarlist .grouplist li.local a:hover {
    /*color: #74B841;*/
    /*background-color: #FEF7E5;*/
}

.events-calendarlist .grouplist li.local a:hover h3,
.events-calendarlist .grouplist li.local a:hover .content {
    /*color: #74B841 !important;*/
}

.events-calendarlist .grouplist .divider {
    margin-bottom: 16px;
}

.events-calendarlist .grouplist .divider:last-child {
    margin-bottom: 0;
}

.events-calendarlist .grouplist .registration_deadline,
.events-calendarlist .grouplist .price {
    color: inherit;
}

.events-calendarlist .grouplist .list-item .content {
}


.events-calendarlist .grouplist .list-item .content .month {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.events-calendarlist .grouplist .list-item .content .topics {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    gap: 8px;
}

.events-calendarlist .grouplist .list-item .content .topics .topic {
    background: #A7B09B;
    font-weight: 400;
    padding: 3px 10px;
    font-size: 18px;
}

.events-calendarlist .grouplist .list-item .content .date {
    display: flex;
    color: #000;
    font-size: 20px;
    line-height: 26px;
}

.events-calendarlist .grouplist .list-item .content .location {
    display: flex;
    color: #000;
    font-size: 20px;
    line-height: 26px;
}

.events-calendarlist .grouplist .list-item .content .location:before,
.events-calendarlist .grouplist .list-item .content .date:before,
.events-calendarlist .grouplist .list-item .content .time:before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    margin-right: 8px;
    color: #5E7461;
    font-size: 20px;
}

.events-calendarlist .grouplist .list-item .content .location:before {
    content: '\f3c5';
}

.events-calendarlist .grouplist .list-item .content .date:before {
    content: '\f073';
}

.events-calendarlist .grouplist .list-item .content .time:before {
    content: '\f017';
}

.events-calendarlist .grouplist .content,
.events-calendarlist .grouplist a .content {
    font-size: 18px;
    line-height: 24px;
}

.events-calendarlist .grouplist .list-item .label {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: #5E7461;
}

.events-calendarlist .grouplist .list-item .label,
.events-calendarlist .grouplist .list-item .introtext {
    max-width: 1000px;
}

.events-calendarlist .grouplist .list-item .introtext {
    font-size: 20px;
    color: #000;
}

.events-calendarlist .grouplist li:last-child {
    margin-bottom: 0;
}

.events-calendarlist .grouplist h3,
.events-calendarlist .grouplist a h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.events-calendarlist .more-events {
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    color: #000;
}

.events-calendarlist .more-events::before {
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-weight: 300;
    content: '\f101';
    margin-right: 10px;
}

.events-calendarlist .more a {
    display: inline-block;
    color: #5E7461;
    font-size: 24px;
    margin-top: 20px;
    font-weight: 400;
}

.events-calendarlist .more a:before {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin-right: 8px;
}

.events-calendarlist .grouplist a .icon {
    width: 27px;
    height: 22px;
    margin-top: 21px;
    margin-left: auto;
}

.events-calendarlist .grouplist a .icon::before {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    font-size: 50px;
    color: #5E7461;
    line-height: 50px;
}

@media only screen and (max-width: 1450px) {
    .events-calendarlist .grouplist .list-item .content {
        width: calc(100% - 20px - 56px);
    }

    .events-calendarlist .grouplist .content {
        width: 100%;
    }

    .events-calendarlist .grouplist .link {
        width: 100%;
        margin-left: 75px;
    }

}

@media only screen and (max-width: 1400px) {
    .events-calendarlist .heading-container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
}

@media only screen and (max-width: 1024px) {
    .events-calendarlist .search {
        width: 100%;
        margin-bottom: 5px;
    }

    .events-calendarlist .filter-item-wrapper {
        padding-bottom: 5px;
    }

    .events-calendarlist .filter-select-wrapper {
        flex-wrap: wrap;
        gap: 15px;
        width: 100%;
    }

    .events-calendarlist .filter-select-wrapper .form-select {
        width: 100%;
    }
}

@media only screen and (max-width: 900px) {
    .events-calendarlist .grouplist .list-item {
        flex-flow: column;
        padding: 20px;
    }

    .events-calendarlist .grouplist a .icon {
        width: fit-content;
        height: fit-content;
        position: absolute;
        right: 10px;
        top: 10px;
        margin: auto;
    }

    .events-calendarlist .grouplist a .icon::before {
        font-size: 30px;
        line-height: 30px;
    }

}

@media only screen and (max-width: 550px) {
    .events-calendarlist .grouplist .link {
        max-width: 100%;
    }
}

@media only screen and (max-width: 520px) {
    .events-calendarlist .filter-item-wrapper .filter-item-topic {
        border-radius: 10px;
        height: 35px;
        padding: 10px 8px;
    }

    .events-calendarlist .grouplist .list-item {
        padding: 0;
        gap: 10px;
    }

    .events-calendarlist .grouplist .list-item .content {
        margin-top: 0;
        width: 100%;
        padding: 0 12px 12px;
        box-sizing: border-box;
    }

    .events-calendarlist .grouplist .content {
        margin-left: 0;
    }

    .events-calendarlist .grouplist .link {
        margin-left: 0;
    }

    .events-calendarlist .grouplist .link a {
        width: 100%;
    }

    .events-calendarlist .list-item .day {
        align-items: center;
    }

    .events-calendarlist .list-item .day .month {
        display: inline-block;
    }

    .events-calendarlist .grouplist .list-item .content .month {
        display: none;
    }

    .events-calendarlist .grouplist .list-item .image {
        height: auto;
        width: 100%;
        min-height: unset;
        min-width: unset;
    }

    .events-calendarlist .grouplist .list-item .content .topics {
        max-width: calc(100% - 30px);
    }

    .events-calendarlist .grouplist .list-item .label {
        max-width: calc(100% - 30px);
        margin-top: 3px;
    }

    .events-calendarlist .grouplist a .icon {
        top: calc(((100vw - 40px - 8px) * 0.625) + 10px);
    }

    .events-calendarlist .grouplist .list-item .introtext {
        display: none;
    }

}
.events-detail-main .image-copyright {
    font-size: 12px;
}

.events-detail-main .wrapper {
    max-width: 1400px;
    margin: auto;
    font-size: 18px;
    display: flex;
    flex-flow: column;
    gap: 40px;
    padding: 0 20px;
}

.events-detail-main .content-container {
    justify-content: flex-start;
}

.events-detail-main .columns {
    display: flex;
    gap: 170px;
}

.events-detail-main .columns .left {
    max-width: 800px;
    display: flex;
    flex-flow: column;
    gap: 50px;
}

.events-detail-main .columns .right {
    max-width: 430px;
    min-width: 300px;
    display: flex;
    flex-flow: column;
    gap: 50px;
}


.events-detail-main .infotext .headline,
.events-detail-main .registration .headline {
    display: inline-block;
    font-weight: 400;
    font-family: 'Noto Serif', sans-serif;
    color: #5E7461;
}

.events-detail-main .registration .headline {
    margin-bottom: 10px;
}

.events-detail-main .introtext {
    font-weight: 400;
}

.events-detail-main .copytext {
    display: block;
    max-width: 800px;
}

.events-detail-main .left .box {
    background: #E4E4E4;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-flow: column;
    gap: 15px;
}

.events-detail-main .left .box .title {
    font-weight: 400;
    font-size: 22px;
}

.events-detail-main .left .box .section.location .link {
    margin-top: 10px;
    display: inline-block;
    font-size: 22px;
}

.events-detail-main .left .box .section.location .link-ext {
    margin-top: 10px;
    display: inline-block;
    font-size: 22px;
}

.events-detail-main .left .box .section.location .link-ext:before {
    margin-right: 10px;
    color: #5E7461;
    font-weight: 300;
}

.events-detail-main .left .box .section.location .link:before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    content: '\f0ac';
    margin-right: 10px;
    color: #5E7461;
    font-size: 20px;
}

.events-detail-main .heading {
    display: inline-block;
    font-weight: 400;
    font-family: 'Noto Serif', sans-serif;
    color: #5E7461;
}

.events-detail-main .downloads .download-link::before {
    padding: 0 5px 0 20px;
}

.events-detail-main .downloads .download-link {
    background-color: #E4E4E4;
    padding: 10px 0;
    margin-bottom: 5px;
    font-size: 24px;
}

.events-detail-main .event-detail-other-links {
    display: flex;
    flex-direction: column;
}

.events-detail-main .link-link {
    background-color: #E4E4E4;
    width: 100%;
    display: block;
    padding: 12px 0 12px 20px;
    box-sizing: border-box;
    font-size: 24px;
}

.events-detail-main .linklist {
    display: flex;
    flex-direction: column;
}

.events-detail-main .fa-arrow-up-right,
.events-detail-main .fa-chevron-right {
    padding-right: 10px;
    font-size: 20px;
    color: #5E7461;
}

.events-detail-main .fa-arrow-left {
    margin-right: 10px;
    color: #5E7461;
}

.events-detail-main .back-link {
    display: flex;
    color: #5E7461;
    font-size: 24px;
    font-weight: 400;
    width: fit-content;
}


.events-detail-main .image {
    position: relative;
}

.events-detail-main .image .ai-mark {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.events-detail-main .image .ai-mark:before {
    content: '';
    background: url(/_images/ai-mark.svg) no-repeat;
    height: 25px;
    width: 25px;
    display: block;
    opacity: .4;
}

.events-detail-main .gallery-title {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.events-detail-main .gallery-image-thumb {
    max-width: 445px;
    width: 100%;
    max-height: 250px;
    height: auto;
    object-fit: cover;
}

.events-detail-main .gallery-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1400px;
    width: 100%;
    gap: 30px;
    grid-column: 1 / 3;
    grid-row-start: auto;
}

.events-detail-main .registration .box .email:before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    content: '\f0e0';
    margin-right: 8px;
    color: #5E7461;
    font-size: 20px;
}

.events-detail-main .registration .box .telephone:before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    content: '\f095';
    margin-right: 8px;
    color: #5E7461;
    font-size: 20px;
}

.events-detail-main .registration .box .download-link {
    background: #000;
    width: fit-content;
    max-width: 100%;
    color: #fff;
    padding: 12px 21px;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    font-size: 20px;
    min-width: 300px;
    align-items: center;
    justify-content: center;
}

.events-detail-main .right .image {
    overflow: hidden;
}

.events-detail-main .gallery-image {
    border-radius: 10px;
    overflow: hidden;
}

.pageelement-events-detail-main .registration .button {
    background: #000;
    color: #fff;
    width: 300px;
    text-align: center;
    display: inline-block;
    padding: 8px 35px;
    border-radius: 10px;
    box-sizing: border-box;
    border: none;
    font-size: 20px;
    line-height: inherit;
}

@media only screen and (max-width: 1400px) {
    .events-detail-main .columns {
        gap: 80px;
    }
}

@media only screen and (max-width: 1200px) {
    .events-detail-main .columns {
        gap: 60px;
    }
}

@media only screen and (max-width: 1024px) {
    .events-detail-main .gallery-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 768px) {
    .events-detail-main .columns {
        gap: 50px;
        flex-flow: column;
    }

    .events-detail-main .columns .left,
    .events-detail-main .columns .right {
        width: 100%;
        max-width: unset;
        min-width: unset;
    }

    .events-detail-main .registration .box .download-link {
        min-width: unset;
    }

    .pageelement-events-detail-main .registration .button {
        max-width: 100%;
    }
}

@media only screen and (max-width: 520px) {
    .events-detail-main .downloads .download-link {
        font-size: 20px;
    }

    .events-detail-main .left .box .title {
        font-size: 22px;
    }

    .events-detail-main .gallery-container {
        grid-template-columns: 1fr;
    }

    .events-detail-main .back-link {
        font-size: 20px;
    }

    .events-detail-main .link-link {
        font-size: 20px;
    }

}
.pageelement-events-detail .wrapper {
    max-width: 1400px;
    margin: auto;
    font-size: 18px;
    display: flex;
    flex-flow: column;
    gap: 40px;
    padding: 0 20px;
}

.pageelement-events-detail .content-container {
    justify-content: flex-start;
}

.pageelement-events-detail .columns {
    display: flex;
    gap: 170px;
}

.pageelement-events-detail .columns .left {
    max-width: 800px;
    display: flex;
    flex-flow: column;
    gap: 50px;
}

.pageelement-events-detail .columns .right {
    max-width: 430px;
    display: flex;
    flex-flow: column;
    gap: 50px;
}


.pageelement-events-detail .introtext,
.pageelement-events-detail .infotext .headline,
.pageelement-events-detail .registration .headline {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.pageelement-events-detail .registration .headline {
    margin-bottom: 10px;
}

.pageelement-events-detail .copytext {
    display: block;
    max-width: 800px;
}

.pageelement-events-detail .left .box {
    background: #EDEFEB;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-flow: column;
    gap: 15px;
}

.pageelement-events-detail .left .box .title {
    font-weight: 700;
}

.pageelement-events-detail .left .box .section.location .link {
    font-size: 18px;
}

.pageelement-events-detail .left .box .section.location .link:before {
    font-family: 'Font Awesome 6 Sharp', sans-serif;
    content: '\f0ac';
    margin-right: 8px;
}

.pageelement-events-detail .heading {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pageelement-events-detail .downloads .download-link::before {
    color: #000;
    padding: 0 5px 0 20px;
}

.pageelement-events-detail .downloads .download-link {
    color: #000;
    background-color: #FFEFE0;
    padding: 10px 0;
}

.pageelement-events-detail .event-detail-other-links {
    display: flex;
    flex-direction: column;
}

.pageelement-events-detail .link-link {
    background-color: #FFEFE0;
    color: #000;
    width: 100%;
    display: block;
    padding: 10px 0 10px 20px;
    box-sizing: border-box;
}

.pageelement-events-detail .linklist {
    display: flex;
    flex-direction: column;
}

.pageelement-events-detail .fa-arrow-up-right,
.pageelement-events-detail .fa-chevron-right {
    padding-right: 10px;
    color: #000;
}

.pageelement-events-detail .fa-chevrons-left {
    margin-right: 10px;
}

.pageelement-events-detail .back-link {
    color: #000;
    font-weight: 700;
    font-size: 20px;
}

.pageelement-events-detail .image {
    position: relative;
}

.pageelement-events-detail .image .ai-mark {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.pageelement-events-detail .image .ai-mark:before {
    content: '';
    background: url(/_images/ai-mark.svg) no-repeat;
    height: 25px;
    width: 25px;
    display: block;
    opacity: .4;
}

.pageelement-events-detail .gallery-title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pageelement-events-detail .gallery-image-thumb {
    max-width: 445px;
    width: 100%;
    max-height: 250px;
    height: auto;
}

.pageelement-events-detail .gallery-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1400px;
    width: 100%;
    gap: 30px;
    grid-column: 1 / 3;
    grid-row-start: auto;
}

.pageelement-events-detail .registration .box .email:before {
    font-family: 'Font Awesome 6 Sharp', sans-serif;
    content: '\f0e0';
    margin-right: 8px;
}

.pageelement-events-detail .registration .box .telephone:before {
    font-family: 'Font Awesome 6 Sharp', sans-serif;
    content: '\f095';
    margin-right: 8px;
}

.pageelement-events-detail .registration .box .download-link {
    background: #A11717;
    width: fit-content;
    max-width: 100%;
    color: #fff;
    padding: 12px 21px;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
}

@media only screen and (max-width: 1200px) {
    .pageelement-events-detail .columns {
        gap: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .pageelement-events-detail .columns {
        gap: 50px;
        flex-flow: column;
    }

    .pageelement-events-detail .columns .left,
    .pageelement-events-detail .columns .right {
        width: 100%;
        max-width: unset;
    }
}
.events-teaserlist {

}

.events-teaserlist .heading-container {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto 20px;
    box-sizing: border-box;
}

.events-teaserlist .wrapper {
    margin: auto;
}

.events-teaserlist .search .innericon {
    position: absolute;
    top: 11px;
    right: 2%;
    z-index: 2;
    display: block;
    text-align: center;
    pointer-events: none;
}

.events-teaserlist .filter-select-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 25px;
}

.events-teaserlist .filter-select-wrapper .form-select {
    width: 31%;
}

.events-teaserlist .filter-item-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.events-teaserlist .filter-item-wrapper .title {
    margin: 10px 35px 10px 0;
}

#event-list-container .spinner {
    width: 100px;
    height: 100px;
    border: 10px solid rgb(230, 230, 230);
    border-top: 10px solid #000;
    border-radius: 50%;
    animation: loading-offer-list 1s linear infinite;
    margin-left: calc(50% - 75px);
}

#event-list-container .noresults {
    padding-bottom: 30px;
}

@keyframes loading-offer-list {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.events-teaserlist .calenderlist-groupheadline {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.events-teaserlist .grouplist {
    list-style-type: none;
    padding: 0;
    display: block;
    margin-bottom: 30px;
}

.events-teaserlist .grouplist .list-item {
    margin-bottom: 10px;
    border-left: 8px solid #5E7461;
    float: none;
    position: relative;
    background-color: #E4E4E4;
    padding-right: 40px;
    display: flex;
    gap: 20px;
    color: #5E7461;
}

.events-teaserlist .grouplist .list-item .nolink {
    background-color: #E5F0F8;
    padding: 15px 20px;
}

.events-teaserlist .grouplist .list-item .image {
    height: 193px;
    width: 310px;
    min-height: 193px;
    min-width: 310px;
}

.events-teaserlist .grouplist .list-item .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.events-teaserlist .grouplist li:last-child {
    margin-bottom: 0;
}

.events-teaserlist .grouplist h3,
.events-teaserlist .grouplist a h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}


.events-teaserlist .grouplist .link {
    display: flex;
    align-items: center;
}

.events-teaserlist .grouplist .content {
    padding-top: 13px;
    padding-bottom: 9px;
}

.events-teaserlist .grouplist .content .date {
    display: flex;
}

.events-teaserlist .grouplist .content .date:before {
    content: '\f073';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    color: #000;
    margin-right: 8px;

}

.events-teaserlist .grouplist .content .location:before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    color: #000;
    margin-right: 8px;

}

.events-teaserlist .ajax-list-load-more {
    display: inline-block;
    background: #5E7461;
    color: #fff;
    height: 60px;
    width: 250px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 20px 10px;
    box-sizing: border-box;
    border-radius: 6px;
    cursor: pointer;
}

.events-teaserlist .ajax-list-load-more.hidden {
    display: none;
}

.events-teaserlist .no-results {
    margin-bottom: 25px;
}


.events-teaserlist .list-item .day-square {
    background: #5E7461;
    color: #000;
    width: 56px;
    height: 56px;
    text-align: center;
    line-height: 56px;
    font-size: 24px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.events-teaserlist .list-item .day {
    display: flex;
    gap: 20px;
}

.events-teaserlist .list-item .day .month {
    display: none;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.events-teaserlist .list-item .link a {
    background: #5E7461;
    color: #000;
    width: 300px;
    text-align: center;
    display: inline-block;
    padding: 8px 35px;
    border-radius: 5px;
    box-sizing: border-box;
}

.events-teaserlist .list-item .link a:after {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    content: '\f061';
    margin-left: 8px;
}

/* *** local events *** */


.events-teaserlist .grouplist h3 {
    clear: both;
}

.events-teaserlist .grouplist li.local a,
.events-teaserlist .grouplist li.local div.nolink {
    /*background-color: #FFFFF5;*/
    /*color: #576471;*/
}

.events-teaserlist .grouplist li.local a h3,
.events-teaserlist .grouplist li.local div.nolink h3,
.events-teaserlist .grouplist li.local a .content,
.events-teaserlist .grouplist li.local div.nolink .content {
    /*color: #576471;*/
}

.events-teaserlist .grouplist li.local a:hover {
    /*color: #74B841;*/
    /*background-color: #FEF7E5;*/
}

.events-teaserlist .grouplist li.local a:hover h3,
.events-teaserlist .grouplist li.local a:hover .content {
    /*color: #74B841 !important;*/
}

.events-teaserlist .grouplist .divider {
    margin-bottom: 16px;
}

.events-teaserlist .grouplist .divider:last-child {
    margin-bottom: 0;
}

.events-teaserlist .grouplist .registration_deadline,
.events-teaserlist .grouplist .price {
    color: inherit;
}

.events-teaserlist .grouplist .list-item .content {
}


.events-teaserlist .grouplist .list-item .content .month {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.events-teaserlist .grouplist .list-item .content .topics {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    gap: 8px;
}

.events-teaserlist .grouplist .list-item .content .topics .topic {
    background: #A7B09B;
    font-weight: 400;
    padding: 3px 10px;
    font-size: 18px;
}

.events-teaserlist .grouplist .list-item .content .date {
    display: flex;
    color: #000;
    font-size: 20px;
    line-height: 25px;
}

.events-teaserlist .grouplist .list-item .content .location {
    display: flex;
    color: #000;
    font-size: 20px;
    line-height: 26px;
}

.events-teaserlist .grouplist .list-item .content .location:before,
.events-teaserlist .grouplist .list-item .content .date:before,
.events-teaserlist .grouplist .list-item .content .time:before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    margin-right: 8px;
    color: #5E7461;
    font-size: 20px;
}

.events-teaserlist .grouplist .list-item .content .location:before {
    content: '\f3c5';
}

.events-teaserlist .grouplist .list-item .content .date:before {
    content: '\f073';
}

.events-teaserlist .grouplist .list-item .content .time:before {
    content: '\f017';
}

.events-teaserlist .grouplist .content,
.events-teaserlist .grouplist a .content {
    font-size: 18px;
    line-height: 24px;
}

.events-teaserlist .grouplist .list-item .label {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: #5E7461;
}

.events-teaserlist .grouplist .list-item .label,
.events-teaserlist .grouplist .list-item .introtext {
    max-width: 1000px;
}

.events-teaserlist .grouplist .list-item .introtext {
    font-size: 20px;
    color: #000;
}

.events-teaserlist .grouplist li:last-child {
    margin-bottom: 0;
}

.events-teaserlist .grouplist h3,
.events-teaserlist .grouplist a h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.events-teaserlist .more-events {
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    color: #000;
}

.events-teaserlist .more-events::before {
    font-family: "Font Awesome 6 Pro", sans-serif;
    content: '\f101';
    margin-right: 10px;
    font-weight: 300;
}

.events-teaserlist .more a {
    display: inline-block;
    color: #5E7461;
    font-size: 24px;
    font-weight: 400;
}

.events-teaserlist .more a:before {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin-right: 8px;
}

.events-teaserlist .grouplist a .icon {
    width: 27px;
    height: 22px;
    margin-top: 21px;
    margin-left: auto;
}

.events-teaserlist .grouplist a .icon::before {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    font-size: 50px;
    color: #5E7461;
    line-height: 50px;
}

@media only screen and (max-width: 1450px) {
    .events-teaserlist .grouplist .list-item .content {
        width: calc(100% - 20px - 56px);
    }

    .events-teaserlist .grouplist .content {
        width: 100%;
    }

    .events-teaserlist .grouplist .link {
        width: 100%;
        margin-left: 75px;
    }

}

@media only screen and (max-width: 1400px) {
    .events-teaserlist .heading-container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
}

@media only screen and (max-width: 1024px) {
    .events-teaserlist .search {
        width: 100%;
        margin-bottom: 5px;
    }

    .events-teaserlist .filter-item-wrapper {
        padding-bottom: 5px;
    }

    .events-teaserlist .filter-select-wrapper {
        flex-wrap: wrap;
        gap: 15px;
        width: 100%;
    }

    .events-teaserlist .filter-select-wrapper .form-select {
        width: 100%;
    }
}

@media only screen and (max-width: 900px) {
    .events-teaserlist .grouplist .list-item {
        flex-flow: column;
        padding: 20px;
    }

    .events-teaserlist .grouplist a .icon {
        width: fit-content;
        height: fit-content;
        position: absolute;
        right: 10px;
        top: 10px;
        margin: auto;
    }

    .events-teaserlist .grouplist a .icon::before {
        font-size: 30px;
        line-height: 30px;
    }

}

@media only screen and (max-width: 550px) {
    .events-teaserlist .grouplist .link {
        max-width: 100%;
    }
}

@media only screen and (max-width: 520px) {
    .events-teaserlist .filter-item-wrapper .filter-item-topic {
        border-radius: 10px;
        height: 35px;
        padding: 10px 8px;
    }

    .events-teaserlist .grouplist .list-item {
        padding: 0;
        gap: 10px;
    }

    .events-teaserlist .grouplist .list-item .content {
        margin-top: 0;
        width: 100%;
        padding: 0 12px 12px;
        box-sizing: border-box;
    }

    .events-teaserlist .grouplist .content {
        margin-left: 0;
    }

    .events-teaserlist .grouplist .link {
        margin-left: 0;
    }

    .events-teaserlist .grouplist .link a {
        width: 100%;
    }

    .events-teaserlist .list-item .day {
        align-items: center;
    }

    .events-teaserlist .list-item .day .month {
        display: inline-block;
    }

    .events-teaserlist .grouplist .list-item .content .month {
        display: none;
    }

    .events-teaserlist .grouplist .list-item .image {
        height: auto;
        width: 100%;
        min-height: unset;
        min-width: unset;
    }

    .events-teaserlist .grouplist .list-item .content .topics {
        max-width: calc(100% - 30px);
    }

    .events-teaserlist .grouplist .list-item .label {
        max-width: calc(100% - 30px);
        margin-top: 3px;
    }

    .events-teaserlist .grouplist a .icon {
        top: calc(((100vw - 40px - 8px) * 0.625) + 10px);
    }

    .events-teaserlist .grouplist .list-item .introtext {
        display: none;
    }

    .events-teaserlist .more a {
        font-size: 20px;
    }

}.pageelement-gallery-slider.highlighted {
    background: #EDEFEB;
    padding: 50px 0;
}

.pageelement-gallery-slider .heading-container {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.pageelement-gallery-slider .wrapper .container {
    flex-wrap: wrap;
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 25px;
    row-gap: 50px;
    justify-content: space-around;
    padding: 0 20px;
}

.pageelement-gallery-slider .gallery {
    position: relative;
    width: 100%; /* Passe die Breite nach Bedarf an */
    overflow: hidden;
}

.pageelement-gallery-slider .gallery-wrapper {
    width: 100%;
    overflow: hidden;
}

.pageelement-gallery-slider .gallery-images {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.pageelement-gallery-slider .gallery-image {
    width: 50%; /* Zwei Bilder gleichzeitig */
    max-height: 400px;
    overflow: hidden;
}

.pageelement-gallery-slider .gallery-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.pageelement-gallery-slider .prev-button,
.pageelement-gallery-slider .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 400;
}

.pageelement-gallery-slider .prev-button {
    left: 10px;
}

.pageelement-gallery-slider .prev-button:before {
    content: '\f053';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-size: 35px;
}

.pageelement-gallery-slider .next-button {
    right: 10px;
}

.pageelement-gallery-slider .next-button:before {
    content: '\f054';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-size: 35px;
}

@media only screen and (max-width: 1400px) {
    .pageelement-gallery-slider .heading-container {
        box-sizing: border-box;
    }
}

@media (max-width: 520px) {
    .pageelement-gallery-slider .gallery-image {
        width: 100%; /* Ein Bild pro Slide */
    }
}.pageelement-icon-info .heading-container {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.pageelement-icon-info.highlighted .wrapper {
    background: #EDEFEB;
    padding: 0 45px;
}

.pageelement-icon-info .wrapper .container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 25px;
    row-gap: 50px;
    justify-content: space-around;
    padding: 70px 0;
    flex-wrap: wrap;
}

.pageelement-icon-info .wrapper .container .icon-item {
    display: flex;
    flex-flow: column;
    max-width: 300px;
    align-items: center;
    gap: 20px;
}

.pageelement-icon-info .wrapper .container .icon-item .headline {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.pageelement-icon-info .wrapper .container .icon-item .text {
    text-align: center;
}

.pageelement-icon-info .wrapper .container .icon-item .text > * {
    color: #000;
}

.pageelement-icon-info .wrapper .container .icon-item .icon:before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    font-size: 90px;
    color: #000;
}

.pageelement-icon-info .wrapper .container .icon-item:nth-child(1) .icon:before {
    content: '\f19d';
}

.pageelement-icon-info .wrapper .container .icon-item:nth-child(2) .icon:before {
    content: '\f4c6';
}

.pageelement-icon-info .wrapper .container .icon-item:nth-child(3) .icon:before {
    content: '\f086';
}

.pageelement-icon-info .wrapper .container .icon-item:nth-child(4) .icon:before {
    content: '\f736';
}

@media only screen and (max-width: 1450px) {
    .pageelement-icon-info .wrapper {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 900px) {
    .pageelement-icon-info .wrapper .container .icon-item .icon:before {
        font-size: 75px;
    }
}

@media only screen and (max-width: 650px) {
    .pageelement-icon-info .wrapper .container .icon-item .icon:before {
        font-size: 65px;
    }
}

@media only screen and (max-width: 420px) {
    .pageelement-icon-info .wrapper .container .icon-item .icon:before {
        font-size: 50px;
    }
}.pageelement-image-link.no-margin {
    margin-bottom: 25px;
}

.pageelement-image-link .content-container {
    flex-flow: column;
}

.pageelement-image-link .heading-container {
    display: block;
}

.pageelement-image-link .heading-container h2 {
    border-bottom: 2px solid #5E7461;
    color: #5E7461;
}

.pageelement-image-link .image-container {
    position: relative;
    margin-bottom: 18px;
    background-color: #646464;
}

.pageelement-image-link .image-container > a:before {
    background: #000;
    height: 100%;
    width: 100%;
    content: '';
    display: block;
    position: absolute;
    opacity: 0.4;
}

.pageelement-image-link .image-container .text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 75px;
    font-family: 'Noto Serif', sans-serif;
    color: #fff;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
}

.pageelement-image-link .image-container .intern .text:after {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
}

.pageelement-image-link .image-container .extern .text:after {
    content: "\e09f";
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
}


.pageelement-image-link .text-container .texteditor {
    max-width: 1000px;
}

.pageelement-image-link .text-container .link {
    font-size: 24px;
    color: #5E7461;
    margin-top: 18px;
    display: flex;
    gap: 8px;
    width: fit-content;
    font-weight: 400;
}

.pageelement-image-link .text-container .link.intern:before {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
}

.pageelement-image-link .text-container .link.extern:before {
    content: "\e09f";
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
}

@media only screen and (max-width: 1200px) {
    .pageelement-image-link .image-container .text {
        font-size: 65px;
        gap: 25px;
    }
}

@media only screen and (max-width: 900px) {
    .pageelement-image-link .image-container .text {
        font-size: 55px;
        gap: 22px;
    }
}

@media only screen and (max-width: 768px) {
    .pageelement-image-link .image-container .text {
        font-size: 45px;
        gap: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .pageelement-image-link .image-container .text {
        font-size: 38px;
        gap: 18px;
    }

    .pageelement-image-link .text-container .link {
        font-size: 20px;
    }
}

@media only screen and (max-width: 520px) {
    .pageelement-image-link .image-container .text {
        font-size: 32px;
        gap: 15px;
    }
}

@media only screen and (max-width: 400px) {
    .pageelement-image-link .image-container .text {
        font-size: 28px;
        gap: 12px;
    }

    .pageelement-image-link .text-container .link {
        font-size: 18px;
    }
}

@media only screen and (max-width: 320px) {
    .pageelement-image-link .image-container .text {
        font-size: 24px;
        gap: 10px;
    }
}.pageelement-links.highlighted {
    background: #EDEFEB;
    padding: 50px 0;
}

.pageelement-links.no-margin {
    margin-bottom: 25px;
}

.pageelement-links .link-item {
    list-style-type: none;
}

.pageelement-links .link-item > a {
    list-style-type: none;
    background-color: #5E7461;
    padding: 10px;
    margin-bottom: 25px;
    display: flex;
    width: 100%;
    align-items: center;
    box-sizing: border-box;
}

.pageelement-links .link-item .link-link > div {
    color: #fff;
    font-weight: 400;
    width: fit-content;
    font-size: 24px;
    overflow-wrap: break-word;
    white-space: normal;
    word-break: break-word;
    padding-right: 15px;
    line-height: 30px;
}

.pageelement-links .link-item-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.pageelement-links .link-heading-container {
    border-bottom: 2px solid #5E7461;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.pageelement-links .link-item-container .link-heading {
    display: inline-block;
    margin-bottom: 0;
    color: #5e7461;
}

.pageelement-links .fa-chevron-right {
    color: #000;
    margin-left: auto;
}

@media only screen and (max-width: 520px) {
    .pageelement-links .link-item .link-link > div {
        font-size: 20px;
        line-height: 26px;
    }
}


@media screen and (max-width: 468px) {
    .pageelement-links .link-item .fa-light {
        margin-right: 10px !important;
        font-size: 24px !important;
    }

    .pageelement-links .link-item .fa-light {
        font-size: 24px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .pageelement-links .link-item .link-icon {
        width: 70px;
    }


}

.pageelement-links .link-link {
    width: fit-content;
    display: inline-block;
}

.pageelement-links .link-item > a > .fa-sharp.fa-chevron-right {
    font-size: 50px;
    margin-right: 37px;
    float: right;
}

.pageelement-links .link-item .link-icon .fa-light {
    color: #fff;
    padding-right: 34px;
    font-size: 30px;
    padding-left: 44px;
}

.link-icon {
    width: 115px;
    flex-shrink: 0;
}
.pageelement-map-link-box {

}

.pageelement-map-link-box.highlighted {
    background: #EDEFEB;
    padding: 50px 0;
}

.pageelement-text-image.highlighted {
    background: #EDEFEB;
    padding: 50px 0;
}

.pageelement-map-link-box .heading-container {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.pageelement-map-link-box .wrapper {
    width: 100%;
}

.pageelement-map-link-box .box {
    background: #000;
    display: flex;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.pageelement-map-link-box .box .content,
.pageelement-map-link-box .box .map {
    width: 50%;
}

.pageelement-map-link-box .box .content {
    color: #fff;
    padding: 40px;
    display: flex;
    flex-flow: column;
    border-radius: 10px;
    text-align: center;
    justify-content: space-evenly;
    align-items: center;
    box-sizing: border-box;
}

.pageelement-map-link-box .box .content .text {
    margin-bottom: 20px;
}

.pageelement-map-link-box .box .content .headline {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.pageelement-map-link-box .box .content .text * {
    color: #fff;
}

.pageelement-map-link-box .box .content .button {
    background: #fff;
    color: #000;
    min-width: 230px;
    padding: 5px 25px;
    box-sizing: border-box;
    width: fit-content;
    font-size: 20px;
    font-weight: 700;
}

.pageelement-map-link-box .box .map .karte {
    height: 400px;
    width: 100%;
}

.pageelement-map-link-box .box .map .karte #osm-wrapper {
    height: 400px;
    width: 100%;
}

.pageelement-map-link-box .box .map .karte #osm-wrapper .leaflet-container {
    height: 400px;
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .pageelement-map-link-box .box {
        flex-flow: column;
    }

    .pageelement-map-link-box .box .content {
        order: 1;
        width: 100%;
    }

    .pageelement-map-link-box .box .map {
        width: 100%;
    }

    .pageelement-map-link-box .box .map .karte {
        height: 325px;
    }

    .pageelement-map-link-box .box .map .karte #osm-wrapper .leaflet-container {
        height: 325px;
    }
}.media-main .content-container {
    flex-direction: column;
    padding: 50px 20px;
}


.media-main .movie {
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.movie-box.youtube,
.movie-box.video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.movie-box.youtube iframe,
.movie-box.youtube object,
.movie-box.youtube embed,
.movie-box.video iframe,
.movie-box.video object,
.movie-box.video embed {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}

.media-main .wrapper {
    width: 100%;
}

.media-main .pageelement-canvas {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}.pageelement-media .heading {
    display: block;
    margin-bottom: 20px;
}

.pageelement-media .content-container {
    flex-direction: column;
    padding: 0 20px 0;
}

.pageelement-media .movie {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto;

    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;

}

.pageelement-media .wrapper {
    width: 100%;
}

.pageelement-media .wrapper.green {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pageelement-media .pageelement-canvas {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.pageelement-media .pageelement-canvas h2 {
    color: #5E7461;
    margin-bottom: 20px !important;
    border-bottom: 2px solid #5E7461;
    padding-bottom: 20px;
}

.movie-box.youtube,
.movie-box.video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.movie-box.youtube iframe,
.movie-box.youtube object,
.movie-box.youtube embed,
.movie-box.video iframe,
.movie-box.video object,
.movie-box.video embed {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}
.pageelement-news-detail .content-container {
    justify-content: flex-start;
}

.pageelement-news-detail .introtext {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
}

.pageelement-news-detail .copytext p {
    display: block;
    margin-bottom: 10px;
    margin-top: 20px;
    max-width: 800px;
}

.pageelement-news-detail .date {
    margin-top: 5px;
}

.pageelement-news-detail .back-item {
    margin-top: 10px;
    width: 100%;
    grid-column: 1 / 3;
    padding-top: 15px;
}

.pageelement-news-detail .back-item.top {
    max-width: 1400px;
    margin: auto;
}

.pageelement-news-detail .back-link {
    color: #5E7461;
    font-weight: 400;
    font-size: 24px;
}

.pageelement-news-detail img {
    /* width: auto !important;*/
}

.pageelement-news-detail h3 {
    color: #5E7461;
    margin-top: 20px;
}

.pageelement-news-detail .downloads {
    margin-top: 50px;
    margin-bottom: 40px;
}

.pageelement-news-detail .downloads .download-link::before {
    color: #5E7461;
    padding: 0 5px 0 20px;
    font-size: 18px;
    font-weight: 300;
}

.pageelement-news-detail .downloads .download-link {
    color: black;
    background-color: #E4E4E4;
    padding: 10px 0;
    margin-bottom: 5px;
    min-height: 44px;
    font-size: 24px;
}

.pageelement-news-detail .newsdetail-grid {
    display: grid;
    grid-template-columns: minmax(auto, 800px) minmax(auto, 430px);
    gap: 0 170px;
}

@media screen and (max-width: 1200px) {
    .pageelement-news-detail .newsdetail-grid {
        gap: 0 60px;
    }
}


@media screen and (max-width: 768px) {
    .pageelement-news-detail .newsdetail-grid {
        grid-template-columns: 100%;
    }

    .pageelement-news-detail .back-item {
        grid-column: 1 / 2;
    }
}

.pageelement-news-detail .mainimage,
.pageelement-news-detail .copytext,
.pageelement-news-detail .downloads,
.pageelement-news-detail .author,
.pageelement-news-detail .date {
    grid-column: 1 / 1;
}

.pageelement-news-detail .right {
    grid-column: 2 / 2;
    grid-row-start: 1;
}

@media screen and (max-width: 768px) {
    .pageelement-news-detail .right {
        grid-column: 1 / 1;
        grid-row-start: auto;
    }
}

.pageelement-news-detail .rightimage,
.pageelement-news-detail .secondrightimage {
    margin-bottom: 50px;
}

.pageelement-news-detail .news-detail-other-links {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    margin-right: 20px;
}

.pageelement-news-detail .link-link {
    background-color: #E4E4E4;
    color: black;
    width: 100%;
    display: block;
    padding: 10px 0 10px 20px;
    font-size: 24px;
}

.pageelement-news-detail .linklist {
    display: flex;
    flex-direction: column;
}

.pageelement-news-detail .fa-arrow-up-right,
.pageelement-news-detail .fa-chevron-right {
    padding-right: 10px;
    color: #5E7461;
    font-size: 18px;
}

.pageelement-news-detail .image-copyright {
    float: right;
    margin-bottom: 10px;
}

.pageelement-news-detail .image-subline, .pageelement-news-detail .copytext {
    margin-top: 25px;
    word-break: break-word;
    word-wrap: break-word;
    overflow: hidden;
    width: 100%;
}

.pageelement-news-detail .gallery-image-thumb {
    max-width: 445px;
    width: 100%;
    max-height: 250px;
    height: auto;
}

.pageelement-news-detail .gallery-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1400px;
    width: 100%;
    gap: 30px;
    grid-column: 1 / 3;
    grid-row-start: auto;
    margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
    .pageelement-news-detail .gallery-container {
        grid-template-columns: 1fr;
        grid-column: 1 / 1;
    }

    .pageelement-news-detail .gallery-image-thumb {
        width: 100%;
        height: auto;
        max-width: unset;
        max-height: unset;
    }
}

.pageelement-news-detail .fa-arrow-left {
    margin-right: 10px;
    color: #5E7461;
    font-size: 18px;
}

.pageelement-news-detail .gallery-image-copyright {
    color: #777777;
    opacity: 0.6;
    font-size: 12px;
    float: right;
    text-align: right;
}


.pageelement-news-detail .mainimage .ai-mark {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.pageelement-news-detail .rightimage .ai-mark {
    position: absolute;
    bottom: 55px;
    right: 10px;
}

.pageelement-news-detail .secondrightimage .ai-mark {
    position: absolute;
    bottom: 55px;
    right: 10px;
}

.pageelement-news-detail .gallery-image .ai-mark {
    position: absolute;
    bottom: 30px;
    right: 10px;
}


.pageelement-news-detail .ai-mark:before {
    content: '';
    background: url(/_images/ai-mark.svg) no-repeat;
    height: 25px;
    width: 25px;
    display: block;
    opacity: 0.4;
}

.pageelement-news-detail .mainimage, .pageelement-news-detail .rightimage, .pageelement-news-detail .secondrightimage, .pageelement-news-detail .gallery-image {
    position: relative;
}

.news-detail-hr {
    margin: -100px auto 70px auto;
    color: #777;
    background-color: #777;
    border-color: #777;
    max-width: 1400px;
    width: auto;
}

@media screen and (max-width: 1400px) {
    .news-detail-hr {
        margin: -100px 20px 70px 20px;
    }

    .pageelement-news-detail .back-item.top .back-link {
        margin-left: 22px;
    }
}

.pageelement-news-detail .news-detail-gallery-headline {
    margin-top: 80px;
}

@media only screen and (max-width: 520px) {
    .pageelement-news-detail .back-link {
        font-size: 20px;
    }

    .pageelement-news-detail .downloads .download-link {
        font-size: 20px;
    }

    .pageelement-news-detail .link-link {
        font-size: 20px;
    }
}.pageelement-news-list {
    width: 100%;
    box-sizing: border-box;
}

.pageelement-news-list .content-container {
    flex-direction: column;
    flex-wrap: wrap;
}

.pageelement-news-list .content-container h2 {
    color: #5E7461;
    font-size: 43px;
    border-bottom: 2px solid #5E7461;
    padding-bottom: 20px;
}

.pageelement-news-list .item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 10px 0 25px;
    margin-bottom: 25px;
    overflow: hidden;
    border-bottom: 2px solid #777777 !important;
}

.pageelement-news-list .image-container {
    display: flex;
    float: left;
    width: 40%;
    max-width: 430px !important;
    margin-right: 60px !important;
    max-height: 270px;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    justify-content: flex-end;
}

.pageelement-news-list .image-container image {
    display: inline-block;
    width: auto;
    height: 100%;
    box-sizing: border-box;
}

.pageelement-news-list .text-container {
    float: left;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    min-width: 20%;
}

@media screen and (max-width: 950px) {

    .pageelement-news-list .image-container {
        margin-right: 40px !important;
    }
}

.pageelement-news-list .text-container .headline-container .headline {
    font-size: 30px;
    margin-bottom: 20px;
    display: inline-block;
    color: #5E7461;
}

.pageelement-news-list .text-container .text {
    box-sizing: border-box;
    font-size: 22px;
    word-break: break-word;
    word-wrap: break-word;
    overflow: hidden;
}

.pageelement-news-list .detail-link {
    display: inline-block;
    color: #5E7461;
    font-size: 24px;
    margin-top: 20px;
}

.pageelement-news-list .detail-link .fa-arrow-right {
    color: #5E7461;
    font-size: 22px;
    padding-right: 15px;
}

@media only screen and (max-width: 520px) {
    .pageelement-news-list .image-container {
        width: 100%;
        margin: 0 !important;
        float: none;
    }

    .pageelement-news-list .text-container {
        float: none;
        /*margin-top: 15px;*/
        overflow: hidden;
        max-width: 100%;
    }
}

.pageelement-news-list .item:last-of-type {
    border-bottom: 2px solid #777777 !important;
    padding-bottom: 20px !important;
}

.pageelement-news-list .ai-mark {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.pageelement-news-list .ai-mark:before {
    content: '';
    background: url(/_images/ai-mark.svg) no-repeat;
    height: 25px;
    width: 25px;
    display: block;
    opacity: 0.4;
}

.pageelement-news-list .news-list-copyright {
    font-size: 12px;
    opacity: 0.8;
    position: absolute;
    /*z-index: 1000;*/
    bottom: -15px;
    color: black;
    line-height: unset;
}.pageelement-news-teaser {
    width: 100%;
    box-sizing: border-box;
}

.pageelement-news-teaser .content-container {
    flex-direction: column;
    flex-wrap: wrap;
}

.pageelement-news-teaser .content-container h2 {
    color: #5E7461;
    font-size: 43px;
    border-bottom: 2px solid #5E7461;
    padding-bottom: 20px;
}

.pageelement-news-teaser .content-container .item-wrapper {
    display: flex;
    gap: 55px;
    justify-content: space-between;
    width: 100%;
}

.pageelement-news-teaser .item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 0 25px;
    margin-bottom: 25px;
    overflow: hidden;
    border-bottom: 1px solid #5E7461;
    flex-flow: column;
}

.pageelement-news-teaser .image-container {
    display: flex;
    float: left;
    width: 100%;
    max-width: 430px;
    margin-right: 60px;
    max-height: 270px;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    justify-content: flex-end;
}

.pageelement-news-teaser .image-container image {
    display: inline-block;
    width: auto;
    height: 100%;
    box-sizing: border-box;
}

.pageelement-news-teaser .text-container {
    float: left;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    min-width: 20%;
}

.pageelement-news-teaser .text-container .headline-container .headline {
    margin-bottom: 20px;
    display: inline-block;
    color: #5E7461;
}

.pageelement-news-teaser .text-container .text {
    box-sizing: border-box;
    font-size: 22px;
    word-break: break-word;
    word-wrap: break-word;
    overflow: hidden;
}

.pageelement-news-teaser .detail-link {
    display: inline-block;
    color: #5E7461;
    font-size: 24px;
    margin-top: 20px;
    font-weight: 400;
}

.pageelement-news-teaser .detail-link .fa-arrow-right {
    color: #5E7461;
    font-size: 22px;
    padding-right: 15px;
}

@media only screen and (max-width: 520px) {
    .pageelement-news-teaser .image-container {
        width: 100%;
        margin: 0 !important;
        float: none;
    }

    .pageelement-news-teaser .text-container {
        float: none;
        /*margin-top: 15px;*/
        overflow: hidden;
        max-width: 100%;
    }
}

.pageelement-news-teaser .item:last-of-type {
    border-bottom: 1px solid #5E7461;
    padding-bottom: 20px;
}

.pageelement-news-teaser .ai-mark {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.pageelement-news-teaser .ai-mark:before {
    content: '';
    background: url(/_images/ai-mark.svg) no-repeat;
    height: 25px;
    width: 25px;
    display: block;
    opacity: 0.4;
}

.pageelement-news-teaser .news-list-copyright {
    font-size: 12px;
    opacity: 0.8;
    position: absolute;
    /*z-index: 1000;*/
    bottom: -20px;
    color: black;
    line-height: unset;
}

@media only screen and (max-width: 1024px) {
    .pageelement-news-teaser .content-container .item-wrapper {
        flex-flow: column;
        gap: 0px;
    }

    .pageelement-news-teaser .image-container {
        margin: auto;
    }
}

@media only screen and (max-width: 520px) {
    .pageelement-news-teaser .detail-link {
        font-size: 20px;
    }
}.pageelement-overviewpages .content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 60px;
}

.pageelement-overviewpages .overview-item {
    background-color: #5E7461;
    width: 100%;
    max-width: 670px;
    min-width: 100px;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    box-sizing: border-box;
    margin-bottom: 0 !important;

}

.pageelement-overviewpages .overview-item .image-container {
    padding: 50px 50px 20px 50px;
    max-width: 590px;
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
}

.pageelement-overviewpages .overview-item img {
    width: 100% !important;
    height: auto;
    border-radius: 10px;
}

.pageelement-overviewpages .text-container h2 {
    text-align: center;
    padding: 0 10px !Important;
    line-height: 1.2;
    word-break: break-word;
    font-weight: 400;
}

.pageelement-overviewpages .has-image a h2 {
    font-size: 30px;
}

.pageelement-overviewpages .no-image a h2 {
    font-size: 40px;
}

.pageelement-overviewpages .text-container {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 10px;
}

.pageelement-overviewpages .overview-item.no-image a h2 {
    margin: 0;
    padding: 0;
    color: #fff;
}

.pageelement-overviewpages .overview-item a {
    box-sizing: content-box;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .pageelement-overviewpages .content-container {
        grid-template-columns: 1fr;
    }

    .pageelement-overviewpages .overview-item {
        max-width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 200px) {
    .pageelement-overviewpages .image-container img {
        display: none;
    }
}


.pageelement-overviewpages .ai-mark {
    position: absolute;
    bottom: 40px;
    right: 45px;
    display: inline-block;
    text-align: right;
    padding-right: 10px;
}

.pageelement-overviewpages .ai-mark:before {
    content: '';
    background: url(/_images/ai-mark.svg) no-repeat;
    height: 25px;
    width: 25px;
    display: block;
    opacity: 0.4;
}

.pageelement-overviewpages .image-container span {
    position: absolute;
    bottom: 20px;
    right: 55px;
    font-size: 12px;
}/*****************************************************************
**** person-double
******************************************************************/

.pageelement-person-double {

}

.pageelement-person-double.highlighted {
    background: #EDEFEB;
    padding: 50px 0;
}

.pageelement-person-double .heading-container {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.pageelement-person-double .headline {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    display: inline;
}

.pageelement-person-double .wrapper {
    display: flex;
    gap: 50px;
    width: 100%;
}

.pageelement-person-double .person-container {
    background: #000;
    width: calc(50% - 25px);
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}

.pageelement-person-double .person-container .image {
    width: 218px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

.pageelement-person-double .person-container .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pageelement-person-double .person-container .content {
    padding: 38px 33px;
    width: 60%;
}

.pageelement-person-double .person-container .content * {
    color: #fff;
}


.pageelement-person-double .person-container .content .name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.pageelement-person-double .person-container .content .function {
    font-size: 22px;
    margin-bottom: 10px;
}

.pageelement-person-double .person-container .content .text {
    margin-top: 10px;
}

.pageelement-person-double .person-container .contact-wrapper {
    display: flex;
    flex-flow: column;
}

.pageelement-person-double .person-container .content a {
    line-height: 28px;
    color: #fff;
}

.pageelement-person-double .person-container .content a:before,
.pageelement-person-double .person-container .content p:before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    margin-right: 6px;
    font-size: 18px;
}

.pageelement-person-double .person-container .content a.telephone:before {
    content: '\f095';
}

.pageelement-person-double .person-container .content a.email:before {
    content: '\f0e0';
}

.pageelement-person-double .person-container .content a.mobil:before {
    content: '\f3ce';
}

.pageelement-person-double .person-container .content p.telefax:before {
    content: '\f1ac';
}


@media only screen and (max-width: 1450px) {
    .pageelement-person-double .wrapper {
        gap: 30px;
        flex-wrap: wrap;
    }

    .pageelement-person-double .person-container {
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .pageelement-person-double .headline {

    }
}

@media only screen and (max-width: 650px) {
    .pageelement-person-double .person-container {
        flex-flow: column;
    }

    .pageelement-person-double .person-container .image {
        align-self: center;
        margin-top: 20px;
        border-radius: 10px;
    }

    .pageelement-person-double .person-container .content {
        width: 100%;
        box-sizing: border-box;
    }
}











.pageelement-search .heading-container {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto 20px;
    box-sizing: border-box;
}

.pageelement-search .wrapper {
    width: 100%;
}

.pageelement-search .filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-flow: column;
    width: 100%;
}

.pageelement-search .search {
    margin-bottom: 15px;
    width: 100%;
    position: relative;
    display: inline-block;
}

.pageelement-search .search .filter-search {
    width: 100%;
    height: 55px;
    border-radius: 10px;
    border: solid 2px #5E7461;
    box-sizing: border-box;
    vertical-align: middle;
    display: block;
    padding: 15px 15px 13px 65px;
    font-size: 20px;
    background: #fff;
    color: #000;
}

.pageelement-search .filter .mobile-filter-trigger {
    width: 100%;
    border-radius: 10px;
    border: solid 2px #5E7461;
    box-sizing: border-box;
    vertical-align: middle;
    display: none;
    font-size: 20px;
    background: #EDEFEB;
    color: #000;
    cursor: pointer;
    height: 45px;
    padding: 9px 15px 0 23px;
    font-weight: 400;
}

.pageelement-search .filter .mobile-filter-trigger .icon::before {
    content: '\f0b0';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    color: #5E7461;
    font-size: 18px;
    margin-right: 15px;
}

.pageelement-search .filter .mobile-filter-trigger.active .icon::before {
    font-weight: 900;
}

.pageelement-search .filter .mobile-filter-trigger .text {
    color: #5E7461;
    font-weight: 400;
    font-size: 18px;
}

.pageelement-search .mobile-filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #EDEFEB;
    z-index: 1001;

    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;

    padding: 26px 40px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Wenn das Element sichtbar sein soll */
.pageelement-search .mobile-filter.active {
    transform: translateX(0);
}

.pageelement-search .mobile-filter .mobile-wrapper {
    position: relative;
    overflow: auto;
    height: 100%;
    padding-bottom: 50vh;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pageelement-search .mobile-filter .mobile-wrapper::-webkit-scrollbar {
    width: 0;
}

.pageelement-search .mobile-filter .topline {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    position: sticky;
    top: 0;
    background: #edefeb;
    align-items: center;
}

.pageelement-search .mobile-filter .topline .title {
    font-weight: 400;
    color: #5E7461;
    font-size: 20px;
}

.pageelement-search .mobile-filter .topline .close-filter {
    cursor: pointer;
    padding: 5px 12px;
    font-size: 18px;
}

.pageelement-search .mobile-filter .topline .close-filter::before {
    content: '\58';
    font-family: 'Font Awesome 6 Pro', sans-serif;
}

.pageelement-search .mobile-filter .filter-topics {
    min-height: 52px;
    box-sizing: border-box;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pageelement-search .mobile-filter .filter-modules {
    display: flex;
    flex-flow: column;
    gap: 10px;
    margin-bottom: 15px;
}

.pageelement-search .mobile-filter .filter-modules .filter-item-module {
    background: #A7B09B;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 400;
    cursor: pointer;
    font-size: 20px;
}

.pageelement-search .mobile-filter .filter-modules .filter-item-module.active {
    background: #5E7461;
    color: #fff;
}

.pageelement-search .mobile-filter .filter-item:first-child {
    border-top: 1px solid #5E7461;
}

.pageelement-search .mobile-filter .filter-category {
    margin-bottom: 15px;
}

.pageelement-search .mobile-filter .filter-item {
    height: 50px;
    border-bottom: 1px solid #5E7461;
    box-sizing: border-box;
    padding: 10px 20px 10px 0;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
}

.pageelement-search .mobile-filter .filter-detail {
    padding: 20px 0;
    display: flex;
    flex-flow: column;
    gap: 10px;

}

.pageelement-search .mobile-filter .filter-detail .filter-toggle {
    font-size: 20px;
    color: #5E7461;
    font-weight: 400;
    cursor: pointer;
}

.pageelement-search .mobile-filter .filter-detail .filter-toggle.active {
    font-weight: 900;
}

.pageelement-search .mobile-filter .filter-item .icon {
    transition: all ease-in-out .5s;
}

.pageelement-search .mobile-filter .filter-item.open .icon {
    transform: rotate(180deg);
}

.pageelement-search .mobile-filter .filter-item .icon:before{
    content: '\f078';
    font-family: 'Font Awesome 6 Pro', sans-serif;

}

.pageelement-search .mobile-filter .filter-clear {
    background: #fff;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 400;
    cursor: pointer;
    border: 2px solid #5E7461;
    margin-bottom: 10px;
    text-align: center;
    box-sizing: border-box;
    height: 45px;
    font-size: 20px;
}

.pageelement-search .mobile-filter .filter-set {
    background: #5E7461;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 400;
    cursor: pointer;
    color: #fff;
    text-align: center;
    height: 45px;
    box-sizing: border-box;
}

.pageelement-search .mobile-filter .filter-item-topic-toggle {
    background: #5E7461;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    padding: 4px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.pageelement-search .mobile-filter .filter-item-topic-toggle:after {
    content: '\58';
    margin-left: 8px;
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-weight: 300;
}


.pageelement-search .search .innericon {
    position: absolute;
    top: 15px;
    left: 25px;
    z-index: 2;
    display: block;
    text-align: center;
    pointer-events: none;
}

.pageelement-search .search .searchicon::before {
    color: #000;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-weight: 300;
    font-size: 23px;
    padding-top: 2px;
    content: '\f002';
}

.pageelement-search .filter-item-wrapper {
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pageelement-search .filter-item-wrapper.topics {
    min-height: 52px;
    box-sizing: border-box;
}

.pageelement-search .filter-item-wrapper .filter-item-module {
    border-radius: 5px;
    height: 40px;
    padding: 12px 15px;
    line-height: 20px;
    cursor: pointer;
    font-size: 20px;
    background: #A7B09B;
    color: #000;
    box-sizing: border-box;
    font-weight: 400;
}

.pageelement-search .filter-item-wrapper .filter-item-topic-toggle {
    background: #5E7461;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    padding: 4px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.pageelement-search .filter-item-wrapper .filter-item-topic-toggle:after {
    content: '\58';
    margin-left: 8px;
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-weight: 300;
}

.pageelement-search .filter-item-wrapper .filter-item-module.active {
    background: #5E7461;
    color: #fff;
}

.pageelement-search .detail-container {
    display: flex;
    gap: 50px;
}

.pageelement-search .wiki-filter {
    width: 270px;
    max-width: 270px;
    min-width: 270px;
}

.pageelement-search .wiki-filter .filter-item:first-child {
    border-top: 1px solid #5E7461;
}

.pageelement-search .wiki-filter .filter-item {
    height: 50px;
    border-bottom: 1px solid #5E7461;
    box-sizing: border-box;
    padding: 10px 20px 10px 0;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.pageelement-search .wiki-filter .filter-item .icon {
    transition: all ease-in-out .5s;
}

.pageelement-search .wiki-filter .filter-item.open .icon {
    transform: rotate(180deg);
}

.pageelement-search .wiki-filter .filter-item .icon:before{
    content: '\f078';
    font-family: 'Font Awesome 6 Pro', sans-serif;

}

.pageelement-search .wiki-filter .filter-detail {
    padding: 20px 0;
    display: flex;
    flex-flow: column;
    gap: 10px;

}

.pageelement-search .wiki-filter .filter-detail .filter-toggle {
    font-size: 20px;
    color: #5E7461;
    font-weight: 400;
    cursor: pointer;
}

.pageelement-search .wiki-filter .filter-detail .filter-toggle.active {
    font-weight: 900;
}

.pageelement-search .results-container {
    width: 100%;
}

.pageelement-search .results-container .result-item {
    border-bottom: 1px solid #5E7461;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    gap: 50px;
}

.pageelement-search .results-container .result-item:first-child {
    border-top: 1px solid #5E7461;
}

.pageelement-search .results-container .content .topics {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    gap: 8px;
}

.pageelement-search .results-container .content .topics .topic {
    background: #A7B09B;
    font-weight: 400;
    padding: 3px 10px;
    font-size: 18px;
}

.pageelement-search .results-container .content .date {
    display: flex;
    color: #000;
    font-size: 20px;
    line-height: 26px;
}

.pageelement-search .results-container .content .location {
    display: flex;
    color: #000;
    font-size: 20px;
    line-height: 26px;
}

.pageelement-search .results-container .content .location:before,
.pageelement-search .results-container .content .date:before,
.pageelement-search .results-container .content .time:before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    margin-right: 8px;
    color: #5E7461;
    font-size: 20px;
}

.pageelement-search .results-container .content .location:before {
    content: '\f3c5';
}

.pageelement-search .results-container .content .date:before {
    content: '\f073';
}

.pageelement-search .results-container .content .time:before {
    content: '\f017';
}

.pageelement-search .results-container .content .more-link {
    font-size: 24px;
    color: #5E7461;
    margin-top: 20px;
    font-weight: 400;
    display: flex;
}

.pageelement-search .results-container .content .more-link:before {
    content: '\f061';
    font-weight: 300;
    margin-right: 8px;
    font-family: 'Font Awesome 6 Pro', sans-serif;

}

.pageelement-search .results-container .content {
    font-size: 18px;
    line-height: 24px;
}

.pageelement-search .results-container .image {
    position: relative;
}

.pageelement-search .results-container .image:has(.news-list-copyright) {
    margin-bottom: 15px;
}


.pageelement-search .results-container .label {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: #5E7461;
}

.pageelement-search .results-container .label,
.pageelement-search .results-container .introtext {
    max-width: 1000px;
}

.pageelement-search .results-container .introtext {
    font-size: 20px;
    color: #000;
}

.pageelement-search .news-list-copyright {
    font-size: 12px;
    opacity: 0.8;
    position: absolute;
    z-index: 1000;
    bottom: -15px;
    color: black;
    line-height: unset;
}

.pageelement-search .download-link {
    font-size: 24px;
    color: #5E7461;
    font-weight: 400;
}

.pageelement-search .ai-mark::before {
    content: '';
    background: url(/_images/ai-mark.svg) no-repeat;
    height: 25px;
    width: 25px;
    display: block;
    opacity: 0.4;
}


.pageelement-search .results-container .spinner {
    width: 100px;
    height: 100px;
    border: 10px solid rgb(230, 230, 230);
    border-top: 10px solid #5e7461;
    border-radius: 50%;
    animation: loading-search-list 1s linear infinite;
    margin-left: calc(50% - 75px);
}

.pageelement-search .results-container .noresults {
    padding-bottom: 30px;
}

@keyframes loading-search-list {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 900px){
    .pageelement-search .filter {
        margin-bottom: 20px;
    }

    .pageelement-search .search {
        margin-bottom: 2px;
    }

    .pageelement-search .search .filter-search {
        height: 45px;
        padding: 3px 15px 0 55px;
        font-weight: 400;
    }

    .pageelement-search .search .innericon {
        top: 11px;
    }

    .pageelement-search .search .searchicon::before {
        font-size: 18px;
    }

    .pageelement-search .filter .mobile-filter-trigger {
        display: block;
    }

    .pageelement-search .filter-item-wrapper,
    .pageelement-search .wiki-filter {
        display: none;
    }

}.pageelement-social-media-grid.highlighted {
    background: #FFFAD5;
    padding: 50px 0;
}

.pageelement-social-media-grid .heading-container {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.pageelement-social-media-grid .heading-container h2 {
    text-transform: uppercase;
}

.pageelement-social-media-grid .social-container {
    width: 100%;
}

.pageelement-social-media-grid .social-grid .icon {
    height: 35px;
    width: 35px;
    padding-top: 15px;
    padding-left: 15px;
    position: absolute;
}

.social-media-grid .social-grid {
    -webkit-box-align: center;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    width: 100%;
}

.social-media-grid .social-grid-item {
    background-color: #383833 !important;
    aspect-ratio: 1 / 1;
    position: relative;
}

.social-media-grid .social-grid-item .social-media-post-link {
    width: 100%;
    font-size: 1.3333333333rem;
    font-weight: 400;
    line-height: 1.5555555556;
    text-align: center;
    align-self: center;
    padding: 1rem;
    color: #fff;
    height: 100%;
    display: block;
    box-sizing: border-box;
}

.social-media-wall-more-wrapper > p {
    width: fit-content;
    margin-left: auto;
    font-size: 18px;
    margin-top: 15px;
}

.social-media-wall-more-wrapper > p a {
    font-size: 18px;
}

@media only screen and (max-width: 900px){
    .social-media-grid .social-grid {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 520px){
    .social-media-grid .social-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .social-media-wall-more-wrapper > p {
        margin-left: 0;
    }
}.pageelement-social-media-teaser .heading-container {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto 20px;
    padding-left: 20px;
}

.pageelement-social-media-teaser .wrapper {
    background-color: #A11717;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pageelement-social-media-teaser .content-container {
    width: 100%;
    display: grid;
    gap: 10px;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
    padding: 20px;
}

.pageelement-social-media-teaser .content-container p, .pageelement-social-media-teaser .content-container a {
    color: white;
    font-size: 18px;
    padding: 20px 0;
}

.pageelement-social-media-teaser #facebook-link::before,
.pageelement-social-media-teaser #instagram-link::before,
.pageelement-social-media-teaser #twitter-link::before,
.pageelement-social-media-teaser #youtube-link::before,
.pageelement-social-media-teaser #xing-link::before,
.pageelement-social-media-teaser #linkedin-link::before {
    font-size: 43px;
    font-family: "Font Awesome 6 Brands", sans-serif;
    display: block;
    width: 100px;
    vertical-align: middle;
}

.pageelement-social-media-teaser .content-container a {
    display: flex;
    align-items: center;
    text-align: center;
}

.pageelement-social-media-teaser #facebook-link::before {
    content: "\f09a";
}

.pageelement-social-media-teaser #instagram-link::before {
    content: "\f16d";
}

.pageelement-social-media-teaser #twitter-link::before {
    content: "\e61b";
}

.pageelement-social-media-teaser #youtube-link::before {
    content: "\f431";
}

.pageelement-social-media-teaser #xing-link::before {
    content: "\f168";
}

.pageelement-social-media-teaser #linkedin-link::before {
    content: "\f08c";
}

.pageelement-social-media-teaser .social-media-text {
    grid-area: 1 / 1 / 3 / 1;
    align-self: center;
    overflow-wrap: break-word;
    word-break: break-word;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .pageelement-social-media-teaser .content-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .pageelement-social-media-teaser .content-container a {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .pageelement-social-media-teaser .content-container {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .pageelement-social-media-teaser .content-container a {
        padding: 10px;
        display: inline-block;
        line-height: 1.5;
    }
}.pageelement-teaserboxes-triple.highlighted {
    background: #EDEFEB;
    padding-top: 50px;
    padding-bottom: 50px;
}

.pageelement-teaserboxes-triple.no-margin {
    margin-bottom: 25px;
}

.pageelement-teaserboxes-triple .heading-container {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto 20px;
}

.pageelement-teaserboxes-triple.teaserboxes-wrapper .content-container {
    display: flex;
    justify-content: space-between;
}

.pageelement-teaserboxes-triple.teaserboxes-wrapper .teaserbox {
    flex-basis: 31%;
}

.pageelement-teaserboxes-triple.teaserboxes-wrapper .teaserbox.gray {
    background-color: #E4E4E4;
}

.pageelement-teaserboxes-triple.teaserboxes-wrapper .teaserbox.gray * {
    color: #5E7461;
}

.pageelement-teaserboxes-triple.teaserboxes-wrapper .teaserbox .box-text.texteditor * {
    color: #000;
}

.pageelement-teaserboxes-triple .teaserbox {
    background-color: #5E7461;
    display: flex;
    flex-flow: column;
    overflow: hidden;
}

.pageelement-teaserboxes-triple .teaserbox * {
    color: #000;
}

.pageelement-teaserboxes-triple .teaserbox-textcontainer {
    padding: 55px 30px;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    flex-flow: column;
    gap: 35px;
}

.pageelement-teaserboxes-triple .teaserbox-textcontainer .box-headline {
    margin-bottom: 0;
}

.pageelement-teaserboxes-triple .teaserbox-textcontainer .text-link {
    display: flex;
    font-size: 24px;
    font-weight: 400;
    gap: 15px;
}

.pageelement-teaserboxes-triple .teaserbox-textcontainer .text-link:before {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
}

.pageelement-teaserboxes-triple .teaserboxes-main .teaserbox-imagecontainer img {
    object-fit: cover;
}

@media screen and (max-width: 1400px) {
    .pageelement-teaserboxes-triple .heading-container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 1200px) {
    .pageelement-teaserboxes-triple.teaserboxes-wrapper .content-container {
        flex-flow: column;
        gap: 30px;
    }

    .pageelement-teaserboxes-triple.teaserboxes-wrapper .teaserbox {
        flex-basis: 100%;
        flex-flow: row;
    }

    .pageelement-teaserboxes-triple .teaserbox-imagecontainer,
    .pageelement-teaserboxes-triple .teaserbox-textcontainer {
        width: 50%;
    }

    .pageelement-teaserboxes-triple .teaserbox.no-image .teaserbox-imagecontainer {
        width: 0;
    }

    .pageelement-teaserboxes-triple .teaserbox.no-image .teaserbox-textcontainer {
        width: 100%;
    }

    .pageelement-teaserboxes-triple .teaserbox-imagecontainer img {
        height: 100%;
        object-fit: cover;
    }

}

@media screen and (max-width: 720px) {
    .pageelement-teaserboxes-triple.teaserboxes-wrapper .teaserbox {
        flex-flow: column;

    }

    .pageelement-teaserboxes-triple .teaserbox-imagecontainer,
    .pageelement-teaserboxes-triple .teaserbox-textcontainer {
        width: 100%;
    }
}

@media only screen and (max-width: 520px) {
    .pageelement-teaserboxes-triple .teaserbox-textcontainer {
        gap: 15px;
    }

    .pageelement-teaserboxes-triple .teaserbox-textcontainer .text-link {
        font-size: 20px;
    }

    .pageelement-teaserboxes-triple .teaserbox-textcontainer {
        padding: 35px 30px;
    }
}.pageelement-teaserboxes.no-margin {
    margin-bottom: 25px;
}

.pageelement-teaserboxes img {
    width: 100%;
    max-width: 700px;
    height: auto;
    max-height: 400px;
    display: inline-block;
}

.pageelement-teaserboxes .heading-container {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto 0;
    box-sizing: border-box;
}

.pageelement-teaserboxes .heading-container h2 {
    color: #5E7461;
}

.pageelement-teaserboxes .teaser-image-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: auto;
    max-height: 400px;
    display: flex;
    justify-content: flex-end;
}

.pageelement-teaserboxes .teaser-image-container:before {
    background: #000;
    height: 100%;
    width: 100%;
    content: '';
    display: block;
    position: absolute;
    opacity: 0.4;
}

.pageelement-teaserboxes .overlay-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    font-family: 'Noto Serif', sans-serif;
    text-align: center;
    width: 80%;
    color: #fff;
}

.pageelement-teaserboxes .teaserbox-container {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.pageelement-teaserboxes .left-column,
.pageelement-teaserboxes .right-column {
    width: 50%;
    box-sizing: border-box;
    display: flex;
    background: #E4E4E4;
}

.pageelement-teaserboxes .left-column .text,
.pageelement-teaserboxes .right-column .text {
    text-align: left;
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    word-wrap: break-word;
    overflow: hidden;
    margin: 0;
    padding: 50px 40px;
}

.pageelement-teaserboxes .teaserbox-button {
    display: flex;
    box-sizing: border-box;
    gap: 15px;
}

.pageelement-teaserboxes .teaserbox-button .button-text {
    color: #5E7461;
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
}

.pageelement-teaserboxes .teaserbox-button .button-icon i {
    color: #5E7461;
    font-size: 22px;
}

.pageelement-teaserboxes .links {
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.pageelement-teaserboxes .left-column.gray h2, .pageelement-teaserboxes .left-column.gray .text li, .pageelement-teaserboxes .left-column.gray .text p {
    color: #000;
}

.pageelement-teaserboxes .right-column.gray h2, .pageelement-teaserboxes .right-column.gray .text li, .pageelement-teaserboxes .right-column.gray .text p {
    color: #000;
}

.pageelement-teaserboxes .left-column.light-yellow h2, .pageelement-teaserboxes .right-column.light-yellow h2 {
    color: #A11717;
}

.pageelement-teaserboxes .left-column.light-yellow .text li, .pageelement-teaserboxes .left-column.light-yellow .text p, .pageelement-teaserboxes .right-column.light-yellow .text li, .pageelement-teaserboxes .right-column.light-yellow .text p {
    color: black;
}

.pageelement-teaserboxes .left-column.gray .teaserbox-button, .pageelement-teaserboxes .right-column.gray .teaserbox-button {
    background-color: #FFEFE0;
}

.pageelement-teaserboxes .left-column.gray .teaserbox-button .button-text, .pageelement-teaserboxes .right-column.gray .teaserbox-button .button-text, .pageelement-teaserboxes .left-column.gray .teaserbox-button .button-icon i, .pageelement-teaserboxes .right-column.gray .teaserbox-button .button-icon i {
    color: #fff;
}

.pageelement-teaserboxes .teaser-headline {
    font-size: 28px;
    font-weight: 400;
    color: #000;
    margin-bottom: 15px;
}

.pageelement-teaserboxes .teaser-text {
    margin-bottom: 20px;
}

.pageelement-teaserboxes .teaserbox-copyright {
    align-self: end;
    padding: 5px 5px 0 5px;
    z-index: 5;
    position: absolute;
    bottom: 0;
    font-size: 12px;
}

.pageelement-teaserboxes .pageelement-canvas {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.pageelement-teaserboxes .content-container {
    min-height: 400px;
}

.pageelement-teaserboxes .ai-mark {
    align-self: end;
    position: absolute;
    bottom: 20px;
    left: 10px;
}

.pageelement-teaserboxes .ai-mark:before {
    content: '';
    background: url(/_images/ai-mark.svg) no-repeat;
    height: 25px;
    width: 25px;
    display: block;
    opacity: 0.4;
}

@media screen and (max-width: 1400px) {
    .pageelement-teaserboxes .right-column .teaser-image-container {
        padding-right: 40px;
    }

    .pageelement-teaserboxes .left-column .text {
        padding: 15px 50px 15px 35px;
        margin-right: 10px;
        margin-left: -10px;
    }

    .pageelement-teaserboxes .right-column .text {
        padding: 25px 40px 25px 40px;
        margin-left: 10px;
        margin-right: -10px;
    }

    .pageelement-teaserboxes .right-column .ai-mark {
        right: 50px;
    }

    .pageelement-teaserboxes .heading-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 768px) {
    .pageelement-teaserboxes .left-column .teaser-image-container {
        padding-left: 0 !important;
    }

    .pageelement-teaserboxes .right-column .teaser-image-container {
        padding-right: 0 !important;
    }

    .pageelement-teaserboxes .right-column .ai-mark {
        right: 10px;
    }

    .pageelement-teaserboxes .left-column .text {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .pageelement-teaserboxes .right-column .text {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}


@media only screen and (max-width: 1200px) {
    .pageelement-teaserboxes .overlay-text {
        font-size: 50px;
    }
}

@media screen and (max-width: 768px) {
    .pageelement-teaserboxes .content-container {
        flex-direction: column !important;
        min-height: 300px !important;
    }

    .pageelement-teaserboxes .left-column,
    .pageelement-teaserboxes .right-column {
        width: 100%;
    }
}

@media screen and (max-width: 520px) {
    .pageelement-teaserboxes .teaserbox-button .button-text {
        font-size: 20px;
    }

    .pageelement-teaserboxes .teaser-headline {
        font-size: 22px;
    }

    .pageelement-teaserboxes .overlay-text {
        font-size: 26px;
    }
}

@media screen and (max-width: 400px) {
    .pageelement-teaserboxes .teaserbox-copyright {
        margin-top: 0 !important;
    }

}.pageelement-text-double-column .heading-container {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto 20px;
    box-sizing: border-box;
}

.pageelement-text-double-column.no-margin {
    margin-bottom: 25px;
}

.pageelement-text-double-column .content-container {
    display: flex;
    gap: 50px;
}

.pageelement-text-double-column .column {
    width: 50%;
}

.pageelement-text-double-column .content-container .headline {
    font-weight: 400;
    padding-top: 5px;
    padding-bottom: 10px;
    color: #5E7461;
}

.pageelement-text-double-column .content-container .links a {
    color: #5E7461;
    font-size: 24px;
    margin-top: 20px;
    font-weight: 400;
    display: flex;
    gap: 15px;
    width: fit-content;
}

.pageelement-text-double-column .content-container .links i {
    color: #5E7461;
}

.pageelement-text-double-column .content-container .links .text {
    color: #5E7461;
    font-size: 24px;
    font-weight: 400;
}

@media only screen and (max-width: 1400px) {
    .pageelement-text-double-column .heading-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 900px) {
    .pageelement-text-double-column .content-container {
        flex-flow: column;
    }

    .pageelement-text-double-column .column {
        width: 100%;
    }
}

@media only screen and (max-width: 520px) {
    .pageelement-text-double-column .content-container .links .text {
        font-size: 20px;
    }
}/*****************************************************************
**** Text-image-main
******************************************************************/
.pageelement-text-image.highlighted {
    padding: 50px 0;
}

.pageelement-text-image.no-margin {
    margin-bottom: 25px;
}

.pageelement-text-image.highlighted.green {
    background: #EDEFEB;
}

.pageelement-text-image.highlighted.gray {
    background: #E4E4E4;
}

.pageelement-text-image .content-container {
    padding: unset;
}

.pageelement-text-image .wrapper {
    overflow-wrap: anywhere;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.pageelement-text-image .text {
    max-width: 1000px;
}

.pageelement-text-image .wrapper.none {
    background: none;
}

.pageelement-text-image .wrapper .column {
    display: flex;
    gap: 60px;
    width: 100%;
}

.pageelement-text-image .width_100 {
    width: 100%;
}

.pageelement-text-image .wrapper .column.width_75 {
    width: calc(75% - 15px);
}

.pageelement-text-image .wrapper .column.width_50 {
    width: calc(50% - 10px);
}

.pageelement-text-image .wrapper .column.width_25 {
    width: calc(25% - 45px);
}

.pageelement-text-image .wrapper .column .cell {
    display: flex;
    flex-flow: column;
}

.pageelement-text-image .wrapper .column .cell.width_25 {
    width: calc(25% - 45px);
}

.pageelement-text-image .wrapper .column .cell.width_50 {
    width: calc(50% - 30px);
}

.pageelement-text-image .wrapper .column .cell.width_75 {
    width: calc(75% - 15px);
}

.pageelement-text-image .wrapper .column .cell.center_text h3 {
    text-align: center;
}

.pageelement-text-image .wrapper .column.center_text .cell.width_75,
.pageelement-text-image .wrapper .column.center_text .cell.width_50 {
    margin-left: auto;
    margin-right: auto;
}

.pageelement-text-image .wrapper .column.center_text .cell.width_25.empty {
    width: 0px;
    margin-right: -60px;
}

.pageelement-text-image .wrapper .column .cell .image {
    position: relative;
    overflow: hidden;
}

.pageelement-text-image .wrapper .column .cell .image .ai-mark {
    position: absolute;
    bottom: 20px;
    right: 10px;
}

.pageelement-text-image .wrapper .column .cell .image .ai-mark:before {
    content: '';
    background: url(/_images/ai-mark.svg) no-repeat;
    height: 25px;
    width: 25px;
    display: block;
    opacity: .4;
}

.pageelement-text-image .imagecolumn {
    display: inline-block;
}

.pageelement-text-image .textcolumn {
    display: inline-block;
}

.pageelement-text-image .wrapper.left {
    justify-content: flex-start;
}

.pageelement-text-image .wrapper.middle {
    justify-content: center;
}

.pageelement-text-image .wrapper.right {
    justify-content: flex-end;
}

.pageelement-text-image .wrapper.text-image {
    gap: 60px;
}

.pageelement-text-image .wrapper.text-image .pageelement-canvas {
    gap: 60px;
}

.pageelement-text-image .background-full-width {
    width: 100% !important;
    overflow: visible !important;
}

.pageelement-text-image .background-adjusted-width {
    max-width: 1400px !important;
    overflow: visible !important;
    margin: 0 auto;
}

.pageelement-text-image .heading {
    display: block;
    margin-bottom: 20px;
}

.pageelement-text-image .heading h2 {
    border-bottom: 2px solid #5E7461;
    padding-bottom: 20px;
    color: #5E7461;
}

.pageelement-text-image .heading.center_text {
    text-align: center;
}

.pageelement-text-image .heading.center_text {
    text-align: center;
}

.pageelement-text-image .column.center_text h3 {
    text-align: center;
}

.pageelement-text-image .content-container {
    display: inline-block !important;
    width: 100%;
    box-sizing: border-box;
}

.pageelement-text-image .wrapper.background-adjusted-width .content-container {
    padding: 50px;
}

.pageelement-text-image .pageelement-canvas {
    display: flex;
}

.pageelement-text-image .wrapper.background-adjusted-width .column .cell.width_25 {
    width: calc(25% - 45px);
}

.pageelement-text-image .wrapper .content-container .texteditor h2 {
    color: #5E7461;
}

.pageelement-text-image .wrapper .content-container .texteditor a {
    color: #5E7461;
    /*text-decoration: underline;*/
    /*text-decoration-color: #A7B09B;*/
    /*text-decoration-thickness: 1px;*/
}

.pageelement-text-image .text.center_text {
    text-align: center;
}

.pageelement-text-image .text.center_text ol {
    display: flex;
    flex-flow: column;
    align-items: center;
}

@media only screen and (max-width: 1450px) {
    .text-image .wrapper .column.width_75,
    .text-image .wrapper .column.width_25,
    .text-image .wrapper .column .cell.width_75,
    .text-image .wrapper .column .cell.width_25 {
        width: calc(50% - 10px);
    }

    .pageelement-text-image .content-container {
        padding: 30px 20px;
    }

}

@media screen and (min-width: 1400px) {
    .pageelement-text-image .pageelement-canvas {
        padding: 0 !Important;
    }
}

@media only screen and (max-width: 1024px) {
    .pageelement-text-image .wrapper .column.width_100:has(.special-case) {
        flex-wrap: wrap;
    }

    .pageelement-text-image,
    .pageelement-text-image .pageelement-canvas {
        flex-flow: column;
        gap: 30px;
    }

    .pageelement-text-image .wrapper.text-image .pageelement-canvas {
        gap: 30px;
    }

    .text-image .wrapper .column.width_25,
    .text-image .wrapper .column.width_50,
    .text-image .wrapper .column.width_75,
    .text-image .wrapper .column .cell.width_25,
    .text-image .wrapper .column .cell.width_50,
    .text-image .wrapper .column .cell.width_75 {
        width: 100%;
    }

    .pageelement-text-image .pageelement-canvas {
        flex-wrap: wrap;
    }

    .text-image .wrapper .column .cell.empty {
        display: none;
    }

    .pageelement-text-image .wrapper .column.center_text .cell.width_25.empty {
        margin-right: unset;
    }
}

.pageelement-text-image .copyright {
    font-size: 12px;
    margin-top: -23px;
    align-self: end;
    padding: 5px 5px 0 5px;
    z-index: 5;
}

@media only screen and (max-width: 520px) {
    .pageelement-text-image .wrapper .content-container,
    .pageelement-text-image .wrapper.background-adjusted-width .content-container {
        padding: 20px;
    }
}

.pageelement-text-image .wrapper.red h3,
.pageelement-text-image .wrapper.red h2,
.pageelement-text-image .wrapper.red .text li,
.pageelement-text-image .wrapper.red .text p,
.pageelement-text-image .wrapper.red strong,
.pageelement-text-image .wrapper.red .text a {
    color: #000;
}

.pageelement-text-image .wrapper.none strong {
    color: #000;
}

.pageelement-text-image .wrapper.none .text a {
    color: #000;
    font-size: 22px;
}

.pageelement-text-image .wrapper.none.red h3,
.pageelement-text-image .wrapper.none.light-yellow h3 {
    color: #000;
}

.pageelement-text-image .wrapper.none.red .text li, .pageelement-text-image .wrapper.none.red .text p, .pageelement-text-image .wrapper.none.light-yellow .text li, .pageelement-text-image .wrapper.none.light-yellow .text p {
    color: #000;
}


.pageelement-video-box {

}

.pageelement-video-box.highlighted {
    background: #EDEFEB;
    padding: 50px 0;
}

.pageelement-video-box .heading-container {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.pageelement-video-box .wrapper {
    width: 100%;
}

.pageelement-video-box .box {
    background: #000;
    display: flex;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.pageelement-video-box .box .content,
.pageelement-video-box .box .video {
    width: 50%;
}

.pageelement-video-box .box .video {
    height: 400px;
}

.pageelement-video-box .box .video .movie-box {
    height: 100%;
    width: 100%;
}

.pageelement-video-box .box .video .movie-box .yt_video {
    width: 100%;
    height: 100%;
}

.pageelement-video-box .box .video .movie-box .movie {
    width: 100%;
    height: 100%;
}

.pageelement-video-box .box .content {
    color: #fff;
    padding: 40px;
    display: flex;
    flex-flow: column;
    border-radius: 10px;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.pageelement-video-box .box .content .headline {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.pageelement-video-box .box .content .text {
    margin-bottom: 20px;
}

.pageelement-video-box .box .content .text * {
    color: #fff;
}

.pageelement-video-box .box .content .button {
    background: #fff;
    color: #000;
    min-width: 230px;
    padding: 5px 25px;
    box-sizing: border-box;
    width: fit-content;
    margin: auto;
    font-size: 20px;
    font-weight: 700;
}

@media only screen and (max-width: 1024px) {
    .pageelement-video-box .box {
        flex-flow: column;
    }

    .pageelement-video-box .box .content {
        order: 1;
        width: 100%;
    }

    .pageelement-video-box .box .video {
        width: 100%;
        height: 400px;
    }
}