:root {
    --txt: #333738;
    --txt-light: #EDEDED;
    --highlight: rgba(157, 26, 109,1); /* Purpur #9D1A6D */
    --highlight-op15: rgba(157, 26, 109,0.15); /* Purpur Opacity 15 % */
    --highlight-op30: rgba(157, 26, 109,0.3); /* Purpur Opacity 30 % */
    --highlight-op50: rgba(157, 26, 109,0.5); /* Purpur Opacity 50 % */
    --highlight2: rgba(229, 150, 177, 1); /* Rosa #e596b1 */
    --highlight2-op50: rgba(229, 150, 177, 0.5); /* Rosa 50 % */
    --bg: #F7F7F7; /*helles Grau*/
    --bg2: rgba(244, 240, 243, 1); /* helles Rosa 2*/
    --bg-dark: #D2BAD0; /* dunkles Lila (alt: #F1B3C8 Rosa) */
    --bg-lila: #d3bdd2;
    --bs-border-radius: 24px;
}

html {
    height: 100%;
    font-size: 17px;
}
body {
    color: var(--txt);
    font-family: 'Roboto', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    background-color: white;
    font-size: inherit;
    line-height: 1.412;
}
/*Sticky Footer*/
body:not(#tinymce) {
    display: flex;
    min-height: 100vh;
    margin: 0 auto;
    flex-direction: column;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5,
.card-title {
    color: var(--highlight);
    line-height: 1.24;
}
h1 {
    font-size:calc(1rem + 1.5vw);
}
main {
    min-height: 5em;
    flex: 1 0 auto;
}
main section:not(.banner) {
    padding: clamp(40px,7vw, 120px) 0;
}
main section[style*="background-color"] {
    padding: 80px 0;
}

.imgCoverCenter {
    position: relative;
    overflow: hidden;
}
.imgCoverCenter > img,
.imgCoverCenter > video,
.imgCoverCenter > svg,
.website .embla__slide > img {
    position: absolute;
    height: 100%;
    width: 100.1%;
    object-fit: cover;
    object-position: center;
}
@media (orientation: portrait) and (max-width: 576px) {
    .imgCoverCenter > video {
        top: auto;
        bottom: 0;
        left: auto;
        right: 0;
        transform: none;
        object-position: 61% bottom;
    }
}

/**************** Main Content / Freitext ****************/
img {
    max-width: 100%;
    height: auto;
}
.freetext img[src$=".jpg"],
.freetext img[src$=".jpeg"],
.freetext img[src$=".png"] {
    border-radius: 24px;
}

a, .pseudolink {
    color: var(--highlight2);
}
[onclick^="location.href"], [onclick^="window.open"], .pseudolink {
    cursor: pointer;
}
[style$="#d2bad0;"] a,
[style$="#d2bad0;"] .pseudolink {
    color: var(--highlight);
}

main section a[href="#"]:not(.dropdown-toggle):not(.dropdown-item):not(.page-link) { /*Update JC 07.01.2026 section hinzugefügt, damit dies für CookieBot auf Datenschutzseite nicht gilt*/
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

main ul,
main ol {
    padding-left: 16px;
}

.color1 {
    color: var(--highlight2);
}
.color2 {
    color: var(--highlight);
}

thead td, th {
    color: var(--highlight2);
    border-bottom: 1px solid rgb(184, 187, 188) !important;
    padding-bottom: 12px;
    font-weight: bold;
}
td {
    padding: 14px 7px;
    vertical-align: top;
    white-space: nowrap;
}
td:first-child {
    padding-left: 0;
}
td:last-child {
    padding-right: 0;
}

tbody tr:last-child td {
    border-bottom: 1px solid rgb(184, 187, 188) !important;
}

/**************** Bootstrap Overrides ****************/
.card,
.card-footer {
    border: none;
    /*background-color: white;*/
    background-color: inherit;
    --bs-card-spacer-x: 1.5rem;
    --bs-card-cap-padding-x: 1.5rem;
}
.card a,
.links a {
    text-decoration: none;
}
.card-footer a:after,
.card-footer .pseudolink:after,
main .links a:after {
    content: url(/assets/img/icons/chevron2right.svg);
    position: relative;
    top: 3px;
    right: -10px;
}
[style$="#d2bad0;"] .card-footer a:after,
[style$="#d2bad0;"] .card-footer .pseudolink:after,
main [style$="#d2bad0;"] .links a:after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 20px;
    background-color: var(--highlight);
    mask-image: url(/assets/img/icons/chevron2right.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url(/assets/img/icons/chevron2right.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.card-footer a.external:after,
.card-footer .pseudolink.external:after,
main .links a[target="_blank"]:after {
    content: url(/assets/img/icons/external.svg);
}
[style$="#d2bad0;"] .card-footer a.external:after,
[style$="#d2bad0;"] .card-footer .pseudolink.external:after,
main [style$="#d2bad0;"] .links a:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: var(--highlight);
    mask-image: url(/assets/img/icons/external.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url(/assets/img/icons/external.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.card-footer a.pdf:after,
.card-footer .pseudolink.pdf:after,
main .links a[href$=".pdf"]:after {
    content: url(/assets/img/icons/pdf.svg);
}
[style$="#d2bad0;"] .card-footer a.pdf:after,
[style$="#d2bad0;"] .card-footer .pseudolink.pdf:after,
main [style$="#d2bad0;"] .links a[href$=".pdf"]:after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--highlight);
    mask-image: url(/assets/img/icons/pdf.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url(/assets/img/icons/pdf.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.card:not(.single) > div:last-child {
    padding-bottom: 1.5rem;
}

.accordion {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%239D1A6D' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%239D1A6D' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-item,
.accordion-button,
.accordion-item:first-of-type > .accordion-header .accordion-button,
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed,
.accordion-button:not(.collapsed),
.accordion-body {
    border: none;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
}
.accordion-item .accordion-header button.accordion-button {
    color: var(--txt);
    font-size: 20px;
    font-weight: inherit;
}
/**************** Top-Bar ****************/
.topbar {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.143;
    padding: 10px 0;
    background-color: var(--highlight);
}
.topbar .txtlink {
    text-align: center;
}
.topbar a {
    color: white;
}
.topbar ul,
footer ul.links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.topbar li {
    margin: 0 12px;
}
.topbar li a {
    text-decoration: none;
}

/**************** Navigation / Menü ****************/
.navbar {
    padding: 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
nav > .container,
nav > .container-fluid {
    align-items: stretch !important;
}
.navbar-brand {
    font-size: 1.2em;
    color: var(--highlight);
}
.navbar-toggler {
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28157, 26, 109, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-nav {
    margin-top: 12px;
    margin-bottom: 12px;
}
.nav-link {
    color: black;
    font-size: 22px;
    border-bottom: 2px solid transparent;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 6px;
}
nav.navbar .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
}
.nav-link:focus,
.nav-link:hover,
.nav-link.active {
    color: black;
    border-bottom: 2px solid var(--txt);
}
.nav-link.active {
    font-weight: 500;
}

/**************** Sprache ****************/
.lang .dropdown-menu {
    border-radius: 2px;
    background-color: var(--highlight2-op50);
    border-color: transparent;
    min-width: 0;
    margin-top: 11px;
    left: -25px;
}
.lang .dropdown-toggle::after {
    display: none;
}
.lang .dropdown-item {
    font-size: 14px;
    width: auto;
    padding-left: 0;
    padding-right: 0;
    display: inline-flex;
    position: relative;
    top: 1px;
}
.lang .dropdown-item:focus,
.lang .dropdown-item:hover {
    background-color: transparent;
}

.lang .dropdown-item:before {
    content: url(/assets/img/icons/chevron2right.svg);
    transform: scale(0.8);
    margin-right: 3px;
}

/**************** Sider ****************/
.embla {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
}

.embla__controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.embla__dots {
    display: flex;
    gap: 16px;
}

.embla__dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--highlight-op30);
    cursor: pointer;
    transition: background .3s;
    border: none;
}
.embla__dot.is-selected {
    background: var(--highlight);
    width: 20px;
}

.prevNext {
    position: relative;
    text-align: center;
    margin-top: 1rem;
}

.embla button.emblaPrevNext {
    color: var(--txt);
    background-color: rgba(255,255,255,0.8);
    box-shadow: 0px 1px 6px rgba(62, 62, 62, 0.15);
    border-radius: 50%;
    min-width: 0;
    border: none;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    transition: background-color 200ms linear, box-shadow 200ms linear;
}

.embla button.emblaPrevNext:hover {
    background-color: rgba(255,255,255,1);
    box-shadow: 0px 1px 6px rgba(62, 62, 62, 0.4);
    transition: background-color 200ms linear, box-shadow 200ms linear;
}
/**************** Header / Banner ****************/
.home .embla-slide {
    text-align: right;
}

.home .bannerTxt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}

.website .banner .embla__slide {
    position: relative;
    overflow: hidden;
    padding-bottom: 32.5%;
}

.website .bannerTxt .row > div {
    text-align: center;
    width: 100%;
    margin-top: clamp(2rem, 4vw, 72px);
}

.website .bannerTxt {
    padding-bottom: 40px;
}

.banner h1 {
    line-height: 1.111;
}
.banner h1 span {
    display: block;
}

.home .banner .color1,
.home .bannerTxt p {
    color: white;
    text-shadow: 0px 0 3px var(--bg-lila);
}

.home .bannerTxt p {
    display: none;
}

.bannerTxt p {
    max-width: 675px;
}

body:not(.home) .bannerTxt p {
    margin-left: auto;
    margin-right: auto;
}
/**************** Kacheln ****************/
.teasersSmall .card {
    background-color: white;
}

.teasersSmall .intro {
    max-width: 768px;
    margin: 0 auto 2rem auto;
}

.teasersSmall .imgCoverCenter {
    padding-bottom: 49%;
}

.teasersSmall .icon {
    position: absolute;
    top: 12px;
    left: 12px;
}

.teasersSmall h5 {
    font-size: 20px;
}

.card-title a {
    color: inherit;
}

.teaser .imgCoverCenter {
    /*padding-bottom:62.5%;*/
    aspect-ratio: 8 / 5;
    min-height: 100%;
}

.teaser .card .text {
    border-bottom-right-radius: var(--bs-border-radius);
    border-bottom-left-radius: var(--bs-border-radius);
    display: flex;
    align-items: center;
    background-color: white;
}

.teaser .card .img {
    border-bottom-left-radius: 0;
}

.teaser .card .noimg {
    color: var(--highlight);
    border-top-left-radius: var(--bs-border-radius);
    border-bottom-left-radius: var(--bs-border-radius);
    text-align: center;
    padding: clamp(0px, 2.5vw, 60px) 0;
}

.teaser .card-body {
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    max-width: 768px;
    margin: auto;
}

.teaser h2.card-title {
    font-size: 32px;
}

.teaser .text:not(.noimg) .icon {
    background-color: var(--highlight2-op50);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(10px, 1vw, 50px);
}

.teaser .noimg .icon img {
    width: 24px;
}

.teaser .text:not(.noimg) .btn {
    color: inherit;
    font-size: 15px;
    background-color: transparent;
    border-color: inherit;
    box-shadow: none;
    margin-bottom: 0;
}
/**************** Akkordion / FAQ ****************/
.accordions h1 {
    font-size: 25px;
}

.accordions img {
    border-radius: 24px;
}

main ul.links {
    list-style: none;
    padding: 0;
    margin: 6px 0 0 0;
    line-height: 30px;
}

/**************** News / Blog ****************/
.news {
    background-color: var(--bg);
}

.news h1 {
    text-align: center;
}

.news .row {
    margin-top: 30px;
    margin-bottom: 30px;
}

.news .card {
    background-color: white;
}

.news .card-body {
    padding-top: 25px;
}

.news .card-title {
    font-size: 1.2rem;
    color: var(--txt);
}

.news .h5 {
    font-size: 15px;
}

.news .card-subtitle {
    font-size: inherit;
    color: var(--highlight2);
    margin-bottom: 5px;
}

.blogentry h1 {
    margin-bottom: clamp(2rem, 2vw, 64px);
}

.blog-img {
    padding-bottom: 75%;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    position: absolute;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/**************** Team ****************/
.team .intro {
    min-height: 120px;
    margin-bottom: 1rem;
}

.team-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

section.team .team-filter button.filter-button {
    color: var(--txt);
    font-size: 15px;
    line-height: 18px;
    background-color: white;
    box-shadow: none;
    border: none;
    border-radius: 14px;
    padding: 5px 10px;
    min-width: 0;
    margin: 5px;
}

section.team .team-filter button.filter-button.active {
    color: var(--highlight);
    background-color: var(--highlight-op30);
}

.team .imgCoverCenter {
    padding-bottom: 100%;
    border-radius: 24px;
}

.team .card-img-top {
    border-radius: var(--bs-card-inner-border-radius);
}

.team .card {
    background-color: transparent;
}

.team .card-body {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
}

.team .card-title {
    font-size: inherit;
    color: var(--txt);
    margin-bottom: 3px;
}

.team .card > div:last-child {
    padding-bottom: 0;
}

/**************** Testimonials ****************/
.testimonials .row {
    font-size: 20px;
}

.testimonials .inner {
    background-color: white;
    border-radius: var(--bs-border-radius);
    padding: clamp(1rem,2.5vw,48px);
    height: 100%;
}

.testimonials .card {
    background-color: white;
}

.testimonials blockquote {
    font-style: italic;
    line-height: 1.6;
}

.testimonials .title {
    font-weight: bold;
}

.testimonials .subtitle {
    font-size: 1rem;
}

.testimonials .prevNext {
    position: absolute;
    top: calc(50% - 28px); /*28px embla-controls*/
    left: 12px;
    right: 12px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}
/**************** Galerie ****************/
.gallery .intro {
    margin-bottom: 2rem;
}

.gallery .lightgallery {
    margin-bottom: 2rem;
}

.gallery img {
    border-radius: 12px;
    transition: opacity 200ms linear;
}

.gallery .btnLink {
    text-align: center;
}

.gallery a:hover img,
.gallery a:focus img {
    opacity: 0.6;
    transition: opacity 200ms linear;
    cursor: pointer;
}

/****************Footer****************/
footer {
    flex-shrink: 0; /*Sticky Footer*/

    font-size: 14px;
    background-color: white;
    padding-top: clamp(50px,3vw,120px);
    padding-bottom: 50px;
}

footer strong {
    font-size: 1rem;
}

footer a {
    text-decoration: none;
}

footer .links {
    font-size: 12px;
}

footer .links li {
    margin-right: clamp(12px, 1.5vw, 48px);
}

footer .social a:not(:first-child) {
    margin-left: clamp(12px, 1.5vw, 48px);
}
/*Freetext Tabellen-Formatierung zurücksetzen*/
footer td,
footer td:first-child,
footer td:last-child {
    padding: 1px;
    white-space: initial;
}

footer tbody tr:last-child td {
    border-bottom: none !important;
}

footer ul.links a {
    color: var(--txt);
}

footer .links .dropdown-menu {
    background-color: var(--bg2);
    left: 0;
    padding-left: 5px;
}
/****************Formulare****************/
label {
    font-size: 14px;
    margin-bottom: 5px;
}

.form-control {
    border-radius: 2px;
    border-color: #E3D8D7;
}

div.form-control {
    background-color: transparent;
    padding: 0;
}

.form-control:focus {
    border-color: #ff660063;
    box-shadow: 0 0 0 .2rem rgba(255, 102, 0, 0.21);
}

select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}

button:not(.navbar-toggler):not(.embla__dot):not(.accordion-button):not(.emblaPrevNext):not(.filter-button), .btn {
    color: white;
    background-color: var(--highlight);
    padding: 5px 24px;
    border-radius: 2px;
    border: 1px solid var(--highlight);
    min-width: 125px;
    position: relative;
    transition: color 200ms linear, border-color 200ms linear, background-color 200ms linear;
    margin: 0.5rem 1rem 1rem 0;
    box-shadow: 0px 4px 8px var(--highlight-op15);
}

.btn:last-child {
    margin-right: 0;
}

button:not(.navbar-toggler):not(.embla__dot):not(.accordion-button):not(.emblaPrevNext):not(.filter-button):hover, .btn:hover,
button:not(.navbar-toggler):not(.embla__dot):not(.accordion-button):not(.emblaPrevNext):not(.filter-button):focus, .btn:focus,
button:not(.navbar-toggler):not(.embla__dot):not(.accordion-button):not(.emblaPrevNext):not(.filter-button):active, .btn:active {
    color: var(--highlight);
    background: var(--bg-dark);
    border-color: var(--bg-dark);
    transition: color 200ms linear, border-color 200ms linear, background-color 200ms linear;
}

.btn a {
    color: white;
}

.btn a:hover,
.btn a:focus {
    color: var(--red);
}

.btn:hover > a,
.btn:focus > a {
    color: var(--red);
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    background-color: var(--bg-lila);
    border-color: var(--bg-lila);
}

.btn.light {
    color: var(--txt);
    background-color: transparent;
    border-color: var(--txt);
    box-shadow: none;
    font-size: 15px;
    transition: box-shadow 200ms linear;
}

.btn.light:hover,
.btn.light:focus {
    color: black;
    background-color: transparent;
    border-color: var(--txt);
    box-shadow: 0px 4px 8px var(--txt-light);
    transition: box-shadow 200ms linear, color 200ms linear;
}

.umbraco-forms-field {
    margin-bottom: 1rem;
}

.umbraco-forms-label,
.umbraco-forms-field-wrapper {
    width: 100%;
}

.checkboxlist .form-control {
    display: table-caption;
    padding: 0;
    width: 17px;
    height: 17px;
    border-radius: 5px;
    margin-right: 7px;
}

.row-fluid { /*übernommen von .row in Bootstrap 5 */
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row-fluid > * { /*übernommen von .row > * in Bootstrap 5 */
    flex-shrink: 0;
    /*width: 100%;*/
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.form-control::placeholder {
    color: #DCDCDC;
    opacity: 1;
}

.umbraco-forms-submitmessage {
    position: relative;
    z-index: 100;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    --bs-alert-padding-x: 1rem;
    --bs-alert-padding-y: 1rem;
    --bs-alert-margin-bottom: 1rem;
    --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
    --bs-alert-border-radius: var(--bs-border-radius);
    --bs-alert-color: var(--bs-success-text-emphasis);
    --bs-alert-bg: var(--bs-success-bg-subtle);
    --bs-alert-border-color: var(--bs-success-border-subtle);
    --bs-alert-link-color: var(--bs-success-text-emphasis);
    padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
    margin-bottom: var(--bs-alert-margin-bottom);
    color: var(--bs-alert-color);
    background-color: var(--bs-alert-bg);
    border: var(--bs-alert-border);
    border-radius: var(--bs-alert-border-radius);
    animation: fadeInOut 8s linear forwards;
}

@keyframes fadeInOut {
    0% {
        position: relative;
        /*display: inline;*/
    }

    10% {
        position: fixed;
        /*display: block;
        */
    }

    90% {
        position: fixed;
        /*display: block;
        */
    }

    100% {
        position: relative;
        /*display: inline;
        */
        text-align: center;
    }
}
.field-validation-error {
    color:red;
}
/****************Media Queries****************/
@media (min-width: 768px) {
    .hyphens-xs {
        -moz-hyphens: manual;
        -ms-hyphens: manual;
        -webkit-hyphens: manual;
        hyphens: manual;
    }

    .container.bleedOfLeft {
        margin-right: 0;
        max-width: calc(768px + (100vw - 768px) / 2);
    }

    .home .bannerTxt p {
        display: block;
    }

    .teaser .card-img-top {
        border-top-right-radius: 0;
    }

    .teaser .imgCoverCenter {
        border-bottom-left-radius: var(--bs-card-inner-border-radius);
    }

    .teaser .card .text {
        border-top-right-radius: var(--bs-border-radius);
        border-bottom-right-radius: var(--bs-border-radius);
        border-bottom-left-radius: 0;
    }

    .teaser .card .noimg {
        border-top-left-radius: var(--bs-border-radius);
        border-bottom-left-radius: var(--bs-border-radius);
    }
}

@media (min-width: 992px) {
    h1, .h1 {
        font-size: 60px;
    }
    h2, .h2 {
        font-size: 45px;
    }
    h3, .h3 {
        font-size: 40px;
    }
    h4, .h4 {
        font-size: 32px;
    }
    h5, .h5 {
        font-size: 20px;
    }
    .home h1, .home .h1 {
        font-size: 72px;
    }
    .home h2, .home .h2 {
        font-size: 60px;
    }
    .home h3, .home .h3 {
        font-size: 45px;
    }
    .home h4, .home .h4 {
        font-size: 32px;
    }

    .topbar .txtlink{
        text-align:left;
    }
    .topbar .row > div {
        text-align: center;
    }
    .topbar .row > div:last-child {
        text-align: right;
    }

    .banner h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .accordions.noimg {
        background-color: var(--bg);
    }
    .accordions.noimg h1 {
        font-size: 40px;
    }
    .accordions h1 {
        font-size: 32px;
    }
    .team-filter {
        flex-wrap: nowrap;
    }
    section.team .team-filter button.filter-button {
        margin: 0 5px;
    }

    .teaser .noimg h2 {
        font-size: 45px;
    }

    .navbar-nav {
        height: 100%;
        margin: 0 auto;
    }
    .navCenter {
        width: calc(180px + 1rem); /*gleiche Breite wie Logo, damit Navi-Punkte zentriert werden können*/
    }
    .nav-item {
        display: table;
        margin: 0 12px;
    }
    .nav-link {
        font-size: 14px;
        text-align: center;
        display: table-cell;
        vertical-align: middle;
    }
    .container.bleedOfLeft {
        margin-right: 0;
        max-width: calc(992px + (100vw - 992px) / 2);
    }
}

@media (min-width: 1200px) {
    .blogentry .container {
        max-width: 960px;
    }

    .blogentry .ptext {
        font-size: 20px;
    }

    .freetext p,
    .blogentry p {
        margin-bottom: 2rem;
    }

    .container.bleedOfLeft {
        max-width: calc(1140px + (100vw - 1140px) / 2);
    }
}

@media (min-width:1400px) {
    .banner h1 {
        font-size: 72px;
        margin-bottom: 30px;
    }

    .container.narrow,
    .testimonials .ptext {
        max-width: 1140px;
        /*v.a. für Testimonial*/
        margin-left: auto;
        margin-right: auto;
    }
    /*.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1140px;
    }*/

}
