/* ELEMENTS */


@media (max-width: 991px) {

}

/* VENDOR */


/* SITEMAP */
.sitemap ul {
    margin: 0;
    padding: 1rem 0 1rem 1rem;
    list-style-type: none;
    background-color: rgba(var(--c-teal-rgb),0.1);
}
.sitemap ul a {
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 3rem;
}
.sitemap ul ul a {
    font-size: 1.1rem;
    line-height: 2rem;
}
.sitemap ul ul ul a {
    font-size: 1rem;
    line-height: 1.8rem;
}
@media (max-width: 991px) {
}

/* OPENER */
.opener h1, .opener .fs-1 {
	font-size: 4rem !important;
    line-height: 5rem !important;
}
.opener {
    min-height: 400px;
}
.opener.home {
    min-height: 75vh;
}

/* FOOTER */
footer {

}
footer img.logo {
    height: auto;
    width: 400px;
}
@media (max-width: 991px) {
}

/* NAV */
.navbar img.logo {
    height: auto;
    width: 385px;
}
.offcanvas-end {
    width: 50vw !important;
}
#offcanvasNav a.nav-page {
    border-top: 1px solid rgba(0,0,0,0.5);
}
#offcanvasNav a.nav-page:first-of-type {
    border-top: 0px;
}

#navThema a {
    text-decoration: none;
}
#navThema a.active {
    text-decoration: underline;
}
@media (max-width: 991px) {
    .offcanvas-end {
        width: 100vw !important;
    }
}


/* ---------- SASS ---------- */
/* ---------- ROOT ---------- */
:root {
    --c-teal: #08808C;
    --c-teal-rgb: 8,128,140;

    --c-tuerkis: #70D5DA;
    --c-tuerkis-rgb: 112,213,218;

    --c-blauhell: #F0F8F8;
    --c-blauhell-rgb: 240,248,248;

    --c-rot: #ED3639;
    --c-rot-rgb: 237,54,57;

    --c-white: #FFFFFF;
    --c-white-rgb: 255,255,255;
}

/* ---------- TEAL ---------- */
.text-c-teal,
.text-h-c-teal :is(h1, h2, h3, h4, h5, h6) {
    color: var(--c-teal) !important;
}
.bg-c-teal {
    background-color: var(--c-teal) !important;
}
.border-c-teal {
    border-color: var(--c-teal) !important;
}
.verlauf-c-teal {
    background: linear-gradient(to right, rgba(var(--c-teal-rgb), 1) 0%, rgba(var(--c-teal-rgb), 0.75) 100%);
}
.btn-c-teal {
    background-color: rgba(var(--c-teal-rgb), 1) !important;
    color: #fff !important;
    border: none;
}
.btn-c-teal:hover {
    background-color: rgba(var(--c-teal-rgb), 0.8) !important;
}
.btn-c-teal:focus,
.btn-c-teal:active {
    background-color: rgba(var(--c-teal-rgb), 0.9) !important;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(var(--c-teal-rgb), 0.4);
}
.btn-c-teal:disabled {
    background-color: rgba(var(--c-teal-rgb), 0.5) !important;
    opacity: 0.65;
    cursor: not-allowed;
}

/* ---------- TÜRKIS ---------- */
.text-c-tuerkis,
.text-h-c-tuerkis :is(h1, h2, h3, h4, h5, h6) {
    color: var(--c-tuerkis) !important;
}
.bg-c-tuerkis {
    background-color: var(--c-tuerkis) !important;
}
.border-c-tuerkis {
    border-color: var(--c-tuerkis) !important;
}
.verlauf-c-tuerkis {
    background: linear-gradient(to right, rgba(var(--c-tuerkis-rgb), 1) 0%, rgba(var(--c-tuerkis-rgb), 0.75) 100%);
}
.btn-c-tuerkis {
    background-color: rgba(var(--c-tuerkis-rgb), 1) !important;
    color: #fff !important;
    border: none;
}
.btn-c-tuerkis:hover {
    background-color: rgba(var(--c-tuerkis-rgb), 0.8) !important;
}
.btn-c-tuerkis:focus,
.btn-c-tuerkis:active {
    background-color: rgba(var(--c-tuerkis-rgb), 0.9) !important;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(var(--c-tuerkis-rgb), 0.4);
}
.btn-c-tuerkis:disabled {
    background-color: rgba(var(--c-tuerkis-rgb), 0.5) !important;
    opacity: 0.65;
    cursor: not-allowed;
}

/* ---------- BLAUHELL ---------- */
.text-c-blauhell,
.text-h-c-blauhell :is(h1, h2, h3, h4, h5, h6) {
    color: var(--c-blauhell) !important;
}
.bg-c-blauhell {
    background-color: var(--c-blauhell) !important;
}
.border-c-blauhell {
    border-color: var(--c-blauhell) !important;
}
.verlauf-c-blauhell {
    background: linear-gradient(to right, rgba(var(--c-blauhell-rgb), 1) 0%, rgba(var(--c-blauhell-rgb), 0.75) 100%);
}
.btn-c-blauhell {
    background-color: rgba(var(--c-blauhell-rgb), 1) !important;
    color: #000 !important;
    border: none;
}
.btn-c-blauhell:hover {
    background-color: rgba(var(--c-blauhell-rgb), 0.85) !important;
}
.btn-c-blauhell:focus,
.btn-c-blauhell:active {
    background-color: rgba(var(--c-blauhell-rgb), 0.9) !important;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(var(--c-blauhell-rgb), 0.4);
}
.btn-c-blauhell:disabled {
    background-color: rgba(var(--c-blauhell-rgb), 0.5) !important;
    opacity: 0.65;
    cursor: not-allowed;
}

/* ---------- ROT ---------- */
.text-c-rot,
.text-h-c-rot :is(h1, h2, h3, h4, h5, h6) {
    color: var(--c-rot) !important;
}
.bg-c-rot {
    background-color: var(--c-rot) !important;
}
.border-c-rot {
    border-color: var(--c-rot) !important;
}
.verlauf-c-rot {
    background: linear-gradient(to right, rgba(var(--c-rot-rgb), 1) 0%, rgba(var(--c-rot-rgb), 0.75) 100%);
}
.btn-c-rot {
    background-color: rgba(var(--c-rot-rgb), 1) !important;
    color: #fff !important;
    border: none;
}
.btn-c-rot:hover {
    background-color: rgba(var(--c-rot-rgb), 0.8) !important;
}
.btn-c-rot:focus,
.btn-c-rot:active {
    background-color: rgba(var(--c-rot-rgb), 0.9) !important;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(var(--c-rot-rgb), 0.4);
}
.btn-c-rot:disabled {
    background-color: rgba(var(--c-rot-rgb), 0.5) !important;
    opacity: 0.65;
    cursor: not-allowed;
}
/* ---------- WHITE ---------- */
.text-h-c-white :is(h1, h2, h3, h4, h5, h6) {
    color: var(--c-white) !important;
}
.bg-c-white-01 {
    background-color: rgba(var(--c-white-rgb), 0.1) !important;
}
.bg-c-white-05 {
    background-color: rgba(var(--c-white-rgb), 0.5) !important;
}
.bg-c-white-08 {
    background-color: rgba(var(--c-white-rgb), 0.8) !important;
}