/* =============================================================================
   style_all.css — Komponentenbasiertes Stylesheet
   Breakpoints:
     Desktop  > 1400px  (kein Media Query = Basis)
     Pad     <= 1400px  @media (max-width: 1200px)
     Mobile  <=  750px  @media (max-width: 750px)
   Inhalt:
    01. Fonts                  11. Tabellen
    02. Variablen & Reset      12. Cards
    03. Typografie             13. Team
    04. Content-Boxen          14. News
    05. Grid                   15. Swiper / Slider
    06. Header                 16. Projekte
    07. Logo                   17. Formular / Kontakt
    08. Navigation Desktop     18. Buttons
    09. Navigation Mobile      19. Dropdown (Filter)
    10. Footer                 20. Alerts
                               21. Listen / Accordion
                               22. Animationen / Diverses
============================================================================= */


/* =============================================================================
   01. FONTS
============================================================================= */

@font-face {
    font-family: 'icomoon';
    src: url("webfonts/icomoon.eot?30355");
    src: url("webfonts/icomoon.eot?30355#iefix") format("embedded-opentype"),
        url("webfonts/icomoon.ttf?30355") format("truetype"),
        url("webfonts/icomoon.woff?30355") format("woff"),
        url("webfonts/icomoon.svg?30355#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Quicksand */
@font-face {
    font-family: 'Quicksand';
    src: url('webfonts/Quicksand-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('webfonts/Quicksand-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('webfonts/Quicksand-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('webfonts/Quicksand-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('webfonts/Quicksand-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OoohBaby';
    src: url('webfonts/OoohBaby-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* =============================================================================
   02. CSS-VARIABLEN & RESET
============================================================================= */

:root {
    --primarycolor: #bbd47c;
    --green: #99c4a0;
    --rot: #ff3a11;
    --darkgrey: #038363;
    --lightgrey: #ededed;
    --midgrey: #B1B1B1;
    --black: #000000;
    --white: #fafafa;
    --bildproportionen: 1;
    --bildproportionenQuer: 0.6;
    --containerbreite: 1400px;
    --containerbreiteKlein: 1400px;
    letter-spacing: 0px;
}

@media (max-width: 1400px) {
    :root {
        --containerbreite: 100%;
        --containerbreiteKlein: 1200px;
    }
}

@media (max-width: 1200px) {
    :root {
        --containerbreite: 100%;
        --containerbreiteKlein: calc(100% - 50px);
    }
}

@media (max-width: 750px) {
    :root {
        --containerbreite: 100%;
        --containerbreiteKlein: 100%;
    }
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.clear {
    clear: both;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Quicksand', 'times new roman', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0px;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    color: var(--green);
    background-color: var(--white);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    animation: fadein 2s;
    -moz-animation: fadein 1s;
    -webkit-animation: fadein 1s;
    -o-animation: fadein 1s;
}

@media (max-width: 750px) {
    body {
        font-size: 16px;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.page_wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
}

hr {
    border: 0;
    height: 1px;
    background-color: var(--primarycolor);
    margin: 0;
}

figure {
    display: block;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}


/* =============================================================================
   03. TYPOGRAFIE
============================================================================= */

h1 {
    font-family: 'OoohBaby', Times, serif;
    font-size: 30px;
    display: block;
    line-height: 40px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 12px;
    transition: all 0.15s ease-in-out;
    position: relative;
    color: var(--green);
}

@media (max-width: 750px) {
    h1 {
        font-size: 26px;
        line-height: 36px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: manual;
    }
}

h2 {
    font-family: 'OoohBaby', Times, serif;
    display: block;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    margin: 40px 0 10px 0;
    color: var(--primarycolor);
    position: relative;
}

@media (max-width: 750px) {
    h2 {
        font-size: 20px;
        line-height: 25px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

h3 {
    font-family: 'OoohBaby', Times, serif;
    display: block;
    font-size: 21px;
    line-height: 29px;
    margin: 0 0 10px 0;
    position: relative;
    font-weight: 400;
    color: var(--primarycolor);
}

@media (max-width: 750px) {
    h3 {
        font-size: 14px;
        line-height: 18px;
    }
}

h4 {
    font-family: 'OoohBaby', Times, serif;
    display: block;
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 10px 0;
    font-weight: 700;
    color: var(--black);
}

h4 a {
    text-decoration: none;
    color: var(--black);
}

p {
    font-size: 18px;
    line-height: 26px;
    display: block;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

@media (max-width: 750px) {
    p {
        font-size: 17px;
        line-height: 24px;
    }
}

q {
    font-family: 'OoohBaby', 'Dancing Script', cursive;
    text-align: center;
    color: var(--primarycolor);
    font-size: 40px;
    line-height: 40px;
    quotes: none;
    width: 100%;
    display: block;
}

q span {
    color: var(--green);
    display: block;
    margin-top: 5px;
}

@media (max-width: 1200px) {
    q {
        font-size: 26px;
        line-height: 30px;
    }
}

a {
    color: var(--primarycolor);
    text-decoration: none;
}

a:hover {
    color: var(--primarycolor);
}

ul li a {
    text-decoration: none;
    color: var(--primarycolor);
}

.lead {
    font-family: 'OoohBaby', Times, serif;
    font-size: 25px;
    line-height: 38px;
    margin-bottom: 30px;
    margin-top: 20px;
}

@media (max-width: 750px) {
    .lead {
        font-size: 20px;
        line-height: 30px;
    }
}

.hint {
    font-size: 12px;
}

.blase {
    background-image: url('../bilder/blase.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    font-family: 'OoohBaby', Times, serif;
    color: var(--white);
    font-size: 14px;
    line-height: 19px;
    font-weight: 700;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.55;
    padding: 5% 12% 5% 4%;
    margin-top: 100px;
}

.blase.weiss {
    background-image: url('../bilder/blase-weiss.svg');
    color: var(--black);
}

@media (max-width: 1200px) {
    .blase {
        font-size: clamp(11px, calc(11px + (100vw - 750px) * 5 / 650), 16px);
        line-height: clamp(14px, calc(14px + (100vw - 750px) * 5 / 650), 19px);
        padding: 7px 17px 7px 7px;
    }
}

@media (max-width: 750px) {
    .blase {
        display: none;
    }
}

.oeffnungszeiten {
    display: block;
    background-color: var(--primarycolor);
    padding: 30px;
    color: #fff;
    letter-spacing: 0.5px;
}

.oeffnungszeiten span {
    color: var(--green);
    text-transform: uppercase;
    display: block;
}

.oeffnungszeiten strong {
    font-weight: 600;
    font-size: 18px;
    display: block;
    text-transform: uppercase;
}

.blackcontent h3,
.blackcontent h1,
.orangecontent h1 {
    color: var(--white);
}

.blackcontent .cardtext,
.blackcontent .cardtext h4,
.blackcontent .cardtext h2 {
    color: var(--white);
}

.orangecontent li {
    color: var(--black);
}

.orangecontent a {
    color: var(--black);
}

.orangecontent a:hover {
    color: var(--lightgrey);
}


/* =============================================================================
   04. LAYOUT / CONTENT-BOXEN
============================================================================= */

.contentbox {
    width: var(--containerbreite);
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
}

.contentbox img {
    max-width: 100%;
}

@media (max-width: 1200px) {
    .contentbox {
        padding: 0 25px;
    }
}

@media (max-width: 750px) {
    .contentbox {
        width: 100%;
        padding: 0 20px;
    }
}

.titlecontent {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 50px 0 0 0;
    overflow: hidden;
}

.greycontent {
    width: 100%;
    display: block;
    background-color: var(--lightgrey);
    box-sizing: border-box;
    padding: 60px 0;
    margin-left: auto;
    margin-right: auto;
}

.whitecontent {
    width: 100%;
    display: block;
    background-color: var(--white);
    box-sizing: border-box;
    padding: 30px 0;
    margin-left: auto;
    margin-right: auto;
}

.blackcontent {
    display: block;
    background-color: var(--black);
    color: var(--white);
    box-sizing: border-box;
    padding: 60px 0;
    margin-left: auto;
    margin-right: auto;
}

.orangecontent {
    display: block;
    background-color: var(--primarycolor);
    color: var(--white);
    box-sizing: border-box;
    padding: 60px 0;
    margin-left: auto;
    margin-right: auto;
}

.enertycontent {
    display: block;
    background: linear-gradient(-64deg, #6bb09e, #5ba3c1, #d87a52);
    color: var(--white);
    box-sizing: border-box;
    padding: 60px 0;
    margin-left: auto;
    margin-right: auto;
}

.bildcontent {
    padding: 0;
    margin: 0;
    width: 100%;
}

.bildcontent img {
    width: 100%;
    height: auto;
}

.top {
    padding-top: 0px !important;
}

@media (max-width: 1200px) {

    .titlecontent,
    .whitecontent,
    .blackcontent,
    .orangecontent,
    .enertycontent {
        padding: 50px 0;
        margin-left: 0;
        margin-right: 0;
    }

    .top {
        padding-top: 20px !important;
    }
}

@media (max-width: 750px) {

    .titlecontent,
    .whitecontent,
    .greycontent {
        padding: 25px 0;
        margin-left: 0;
        margin-right: 0;
    }

    .top {
        padding-top: 60px !important;
    }
}

.spacer {
    display: block;
}

@media (max-width: 1200px) {
    .spacer {
        display: none;
    }
}


/* =============================================================================
   05. GRID-SYSTEM
============================================================================= */

.grid-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px 20px;
    padding: 0 20px;
}

.grid-container-inside {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
    padding: 20px 0 0 0;
}

.grid-container-inside2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 20px;
    padding: 40px 0 0 0;
}

.grid-container-inside3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 20px;
    padding: 40px 0 0 0;
}

.grid-container-inside3 img {
    width: 100%;
    display: block;
}

.col {
    position: relative;
    padding: 0;
    text-align: center;
}

.col img {
    border-radius: 50%;
    border-width: 0px;
    width: 50%;
    aspect-ratio: 1 / 1;
    margin-bottom: 20px;
}

.col-2 {
    grid-column: span 2;
}

.col-3 {
    grid-column: span 3;
}

.col-4 {
    grid-column: span 4;
}

.col-5 {
    grid-column: span 5;
}

@media (max-width: 750px) {

    .col-2,
    .col-3,
    .col-4,
    .col-5 {
        grid-column: span 1;
    }
}

.col-image {
    text-align: right;
}

.col-image img {
    width: auto;
    height: 150px;
}

a.col {
    text-decoration: none;
    color: inherit;
}

a.col:hover {
    color: var(--primarycolor);
}

.grid-container-inside .col p {
    font-size: 17px;
    line-height: 26px;
}

.col ul {
    list-style-type: none;
    padding-left: 15px;
    margin-block-end: 0;
    margin-block-start: 5px;
}

.col ul li::before {
    content: "- ";
    padding-right: 0;
    margin-left: -15px;
}

.col ul li {
    padding: 0 0 5px 0;
}

.grid {
    text-align: center;
    max-height: 150px;
}

.grid img {
    max-width: 100%;
    height: 100px;
}

.reihe {
    display: block;
    margin-right: 34px;
    float: left;
}

@media (max-width: 1200px) {


    .grid-container-inside {
        grid-template-columns: 1fr;
        gap: 20px 20px;
        padding: 20px 0 0 0;
    }

    .grid-container-inside2 {
        grid-template-columns: 1fr;
        gap: 20px 20px;
        padding: 40px 0 0 0;
    }

    .col img {
        border-radius: 50%;
        border-width: 0px;
        width: 30%;
        aspect-ratio: 1 / 1;
        margin-bottom: 20px;
    }

    .col-reftext {
        grid-column: 1 / 3;
        order: 1;
    }

    .col-refbild {
        grid-column: 3;
        order: 2;
    }
}

@media (max-width: 750px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-container-inside {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .grid-container-inside2 {
        grid-template-columns: 1fr;
        gap: 20px 20px;
        padding: 40px 0 0 0;
    }

    .col-3-4,
    .col-1-6,
    .col-2-6,
    .col-1-3,
    .col-3-6,
    .col-1-2,
    .col-4-6,
    .col-2-3,
    .col-5-6,
    .col-1-4,
    .col-2-4,
    .col-1-12,
    .col-2-12 {
        grid-column: span 1;
        margin-bottom: 0;
    }

    .col-reftext {
        grid-column: 1;
        order: 1;
    }

    .col-refbild {
        grid-column: 1;
        order: 2;
    }
}


/* =============================================================================
   06. HEADER
============================================================================= */

header {
    box-sizing: border-box;
    position: relative;
    height: 300px;
    top: 0;
    width: 100%;
    z-index: 5000;
    background: var(--white);
}

header .contentbox {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    box-sizing: border-box;
    padding: 40px 20px 60px 20px;
    align-items: start;
}

header .contentbox> :first-child {
    justify-self: start;
}

header .contentbox> :nth-child(2) {
    justify-self: center;
}

header .contentbox> :last-child {
    justify-self: end;
}

header a {
    color: var(--primarycolor);
}

.header-on {
    position: fixed;
}

@media (max-width: 1200px) {
    header {}

    header .contentbox {}
}

@media (max-width: 750px) {
    header {
        height: 120px;
    }

    header .contentbox {
        padding: 25px 20px 22px 20px;
    }
}


/* =============================================================================
   07. LOGO
============================================================================= */

#logoheader {
    grid-column: 1;
    grid-row: 1;
    height: 244px;
}

#logo {
    z-index: 6001;
    background-image: url("style_img/lebenspraxis.svg");
    background-repeat: no-repeat;
    height: 244px;
    width: 233px;
    transition: all 0.3s linear;
    text-decoration: none;
}

#logo img {
    height: 244px;
    text-decoration: none;
}

a #logo:hover,
a #logo2:hover {
    opacity: 0.7;
}




@media (max-width: 750px) {

    #logoheader,
    #logo,
    #logo img {
        height: 120px;
        width: 115px;

    }
}


/* =============================================================================
   08. NAVIGATION DESKTOP
============================================================================= */

#topnavi {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
}

#topnavi button {
    margin: 0;
}

.meta-nav {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-self: top;
}

.meta-nav li a {
    font-family: 'Quicksand', Times, serif;
    font-size: 17px;
    font-weight: 400;
    padding: 0;
    background-color: transparent;
}

.meta-nav li a:hover {
    color: var(--primarycolor);
}

.main-nav {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
}

.meta-nav ul,
.main-nav ul {
    display: inline-block;
    text-align: left;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul {
    justify-content: flex-start;
}

.has-dropdown {
    position: relative;
    cursor: pointer;
    text-align: right;
}

.has-dropdown>.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -10px;
    background: var(--white);
    padding: 10px 10px 0 10px;
    list-style: none;
    min-width: 150px;
    z-index: 1000;
    display: none !important;
    /* Dropdown standardmäßig ausgeblendet */
}

.has-dropdown:hover>.dropdown {
    display: block;
    display: none !important;
    /* Dropdown nur beim Hover anzeigen */
}

.dropdown li {
    font-size: 15px;
    line-height: 17px;
    text-transform: uppercase;
    padding: 8px 0 10px 0;
    border-top: 1px solid var(--midgrey);
}

.dropdown li:last-child {
    border-bottom: 1px solid var(--midgrey);
}

.dropdown a {
    text-decoration: none;
    color: #333;
}

.topnav {
    font-family: 'OoohBaby', Times, serif;
    font-weight: 500;
    cursor: pointer;
    font-size: 24px;
    line-height: 40px;
    background-color: transparent;
    transition: all 0.2s linear;
}

.topnav:hover>a,
.metanav:hover>a {
    color: var(--green);
}

.topnav_act a,
.subnav_act a {
    color: var(--green);
}

.metanav {
    font-weight: 400;
    cursor: pointer;
    font-size: 18px;
    background-color: transparent;
    transition: all 0.2s linear;
    color: var(--primarycolor);
}

.metanav_act a {
    color: var(--green);
}

a.nav2 {
    text-decoration: none;
    color: var(--black);
    width: 100%;
    display: inline-block;
}

a.nav2_act {
    color: var(--green);
}

a.nav3 {
    text-decoration: none;
    padding: 8px 0 8px 5px;
    width: 100%;
    display: inline-block;
    font-weight: 400;
    text-transform: none;
    color: var(--darkgrey);
}

a.nav3_act {
    color: var(--green);
    text-decoration: none;
    padding: 8px 0 8px 5px;
    width: 100%;
    display: inline-block;
    text-transform: none;
}

a.nav2:hover,
a.nav2:active,
a.nav2:focus,
a.nav3:hover,
a.nav3:active,
a.nav3:focus {
    color: var(--green);
    width: 100%;
    display: inline-block;
}

div.suche {
    position: absolute;
    display: block;
    right: 70px;
    top: 15px;
    margin: 0;
    z-index: 6009;
}

@media (max-width: 1200px) {
    div.suche {
        display: none !important;
    }
}

input.search_field {
    height: 43px;
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    background-color: var(--lightgrey);
    border: none;
    padding: 10px;
    color: var(--black);
    font-size: 14px;
    font-weight: 300;
    box-sizing: border-box;
    border-radius: 0;
    width: 165px;
}

input.search_field::placeholder {
    font-weight: 300;
    color: var(--black);
    opacity: 0.7;
}

input.search_field:focus {
    outline: 0 !important;
    border-bottom: 2px solid var(--midgrey);
}

.language-dropdown {
    z-index: 20;
}

.language-dropdown select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--white);
    color: var(--primarycolor);
    font-size: 18px;
    padding: 0;
    border: none;
    border-radius: 0;
    cursor: pointer;
    outline: none;
    width: auto;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237f866e' width='7px' height='16px'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 18px;
    padding-right: 15px;
}

.language-dropdown select:hover {
    color: var(--green);
}

.email-btn,
.phone-btn {
    grid-column: 3;
    grid-row: 1;

}

.phone-btn {
    display: none;
}

.email-btn a,
.phone-btn a {
    background-color: var(--primarycolor);
    width: 100%;
    height: 100%;
    display: block;
}

.email-btn a {
    cursor: pointer;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    display: inline-block;
    width: auto;
}

.email-btn a::after {
    content: "Termin anfragen";
    cursor: pointer;
}

.phone-btn a {
    background-image: url('../bilder/paper-plane.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}



.email-btn a:hover,
.phone-btn a:hover {
    background-color: var(--green);
}

@media (max-width: 750px) {
    .email-btn a::after {
        content: "";
        font-size: 40px;

    }

    .email-btn a {
        background-image: url('../bilder/paper-plane.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 20px;
        width: 40px;
        height: 40px;
    }

}

#slideout-trigger {
    position: fixed;
    top: 180px;
    right: 0;
    background: #F00000;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    color: white !important;
    font-weight: bold;
    display: block;
    z-index: 90;
    padding: 10px 10px 10px 25px;
    cursor: pointer;
    max-width: 160px;
}

#mobilenavi {
    display: none;
}

@media (max-width: 1200px) {
    #topnavi {
        top: 0;
        box-sizing: border-box;
        width: 100%;
        padding-top: 24px;
    }

    .meta-nav {
        margin-right: 130px;
        margin-top: 10px;
    }

    .meta-nav li a {
        padding: 15px 20px;
    }

    .main-nav {
        display: none;
    }
}

@media (max-width: 750px) {
    #topnavi {
        padding-top: 7px;
    }

    .meta-nav {
        display: none;
    }
}


/* =============================================================================
   09. NAVIGATION MOBILE (Hamburger + Subnavi)
   Alles innerhalb @media (max-width: 1200px)
============================================================================= */

@media (max-width: 1200px) {

    #mobilenavi {
        display: none;
        top: 0;
        left: 0;
        position: fixed;
        z-index: 2000;
        opacity: 1;
        padding-left: 0;
        padding-right: 0;
        width: 100vw;
        box-sizing: border-box;
        text-align: center;
        color: var(--white);
        cursor: initial;
        margin-top: 0;
        padding-top: 280px;
        line-height: 40px;
        height: 100vh;
        background-color: var(--primarycolor);
        overflow-x: hidden;
        font-family: 'OoohBaby', Times, serif;
        font-weight: 500;
    }

    #mobilenavi>ul {
        padding-inline-start: 0;
    }

    .navbar-toggle {
        display: block;
        right: 25px;
        width: 50px;
        height: 50px;
        cursor: pointer;
        position: absolute;
        text-align: center;
        z-index: 7000;
    }

    nav,
    .navbar-toggle {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .bar1,
    .bar2,
    .bar3,
    .bar1:active,
    .bar2:active,
    .bar3:active {
        width: 50px;
        height: 5px;
        margin-bottom: 10px;
        background-color: var(--primarycolor);
        transition: all 0.3s ease-in-out;
    }

    .navbar-on {
        display: inline-block;
        position: absolute;
        left: auto;
        width: 50px;
    }

    .navbar-on .bar1 {
        transform-origin: 9% 40%;
        transform: rotate(45deg);
        background-color: var(--white);
    }

    .navbar-on .bar3 {
        transform-origin: 9% 40%;
        transform: rotate(-45deg);
        background-color: var(--white);
    }

    .navbar-on .bar2 {
        background-color: transparent;
    }

    .nav-hide {
        display: none;
    }

    nav>ul {
        margin-top: 15px;
    }

    li.topnav {
        position: relative;
        display: block;
        text-align: center;
        width: auto;
        cursor: pointer;
        font-size: 30px;
        font-weight: bold;
        line-height: 35px;
        background-color: transparent;
        color: var(--white);
        transition: none;
        -webkit-transition: none;
        border-left: none;
        height: auto;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        margin-bottom: 0;
        margin-top: 0;

    }

    li.topnav:hover {
        background-color: var(--green);
    }

    li.topnav_act {
        position: relative;
        display: block;
        text-align: center;
        width: auto;
        cursor: pointer;
        font-size: 30px;
        font-weight: bold;
        line-height: 35px;
        color: var(--green);
        background-color: transparent;
        transition: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        margin-bottom: 0;
        margin-top: 0;

    }

    li.topnav_act:hover {
        background-color: var(--primarycolor);
        color: var(--white);
    }

    li.topnav:hover .subnavi,
    li.topnav:focus .subnavi,
    li.topnav_act:hover .subnavi,
    li.topnav_act:focus .subnavi {
        display: none;
    }

    li.topnav a,
    li.topnav_act a {
        color: var(--white);
        text-decoration: none;
        display: block;
        padding: 15px 40px 14px 25px;
        letter-spacing: 0.2px;
        cursor: pointer;
    }

    li.topnav_act a {
        color: var(--green);
    }

    li.topnav a:hover,
    li.topnav_act a:hover {
        color: var(--white);
    }

    li.topnav a.nav2,
    li.topnav_act a.nav2 {
        color: var(--white);
        display: block;
        font-size: 20px;
    }

    a.nav2,
    a.nav2_act {
        color: var(--white);
        padding: 15px 25px 14px 25px;
        font-size: 20px;
        display: block;
    }

    a.nav2_act {
        color: var(--primarycolor);
    }

    a.nav2_act:hover {
        background-color: var(--primarycolor);
        color: var(--white);
    }

    a.nav2:hover,
    a.nav2:active,
    a.nav2:focus {
        color: var(--white);
    }

    a.nav3,
    a.nav3_act {
        padding-left: 20px;
        color: var(--black);
    }

    .subnavi {
        display: none !important;
        /* Subnavi nicht aktiv */
        height: calc(100vh - 50px);
        position: absolute;
        padding-bottom: 20px;
        text-align: left;
        text-transform: none;
        padding-left: 0;
        padding-right: 0;
        padding-top: 50px;
        top: 50px;
        left: 0;
        line-height: 40px;
        z-index: 2500;
        background-color: var(--black);
        width: 100vw;
        list-style-type: none;
        border: none;
        display: block;
        overflow: scroll;
        transform: translateX(100%);
        transition: transform 0.4s ease-out, opacity 0.4s ease-out;
        box-sizing: border-box;
        color: var(--white);
        visibility: visible;
        opacity: 0;
    }

    .subnavi>div {
        display: none;
    }

    .subnavi.sichtbar {
        transform: translateX(0);
        opacity: 0;

    }

    li.subnavidiv,
    li.subnavidiv_act {
        margin-left: 0;
        position: relative;
        text-transform: none;
        color: var(--white);
        background-color: transparent;
        text-decoration: none;
        font-size: 20px;
        font-weight: bold;
        line-height: 25px;
        text-align: left;
        white-space: nowrap;
        display: block;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        border: none;
        padding: 0;
        border-bottom: 1px solid var(--white);
        box-shadow: none;
    }

    li.subnavidiv:hover,
    li.subnavidiv:active,
    li.subnavidiv:focus {
        color: var(--white);
        background-color: var(--primarycolor);
    }

    li.subnavidiv_act {
        color: var(--primarycolor);
    }

    .winkel {
        width: 100%;
        height: 22px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: -60px;
        margin-top: 16px;
        background-image: url('style_img/angle.svg');
        background-size: 12px 22px;
        background-position: 100% 100%;
        background-repeat: no-repeat;
    }

    .navback {
        font-weight: 400;
        margin-bottom: 10px;
        margin-left: 25px;
        color: var(--white) !important;
        cursor: pointer;
    }

    .navback:hover {
        color: var(--primarycolor) !important;
        background-color: transparent !important;
    }

    .navback::before {
        content: ' ';
        width: 22px;
        height: 22px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 25px;
        margin-top: 17px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
        background-size: 18px 18px;
        background-position: 0 50%;
        background-repeat: no-repeat;
    }

    #servicebox {
        display: none;
    }

    #servicebox_mobile {
        display: block;
        margin-top: 20px;
        font-size: 15px;
        color: #fff;
        font-weight: 400;
        text-align: left;
        z-index: 888;
    }

    #servicebox_mobile a,
    #servicebox_mobile p {
        display: block;
        color: #fff;
        text-decoration: none;
        line-height: 25px;
    }

    #servicebox_mobile a.social {
        display: inline-block;
        margin-right: 10px;
        margin-top: 5px;
    }

    #servicebox_mobile a:hover {
        opacity: 0.5;
    }

    #servicebox_mobile img {
        height: 40px;
    }

}

/* end @media (max-width: 1200px) */

@media (max-width: 750px) {
    .subnavi {
        padding-top: 20px;
    }

    .winkel {
        left: -45px;
    }

    .navbar-toggle {
        margin-top: 5px;
        width: 40px;
        right: 20px;
        top: 21px;
    }

    .bar1,
    .bar2,
    .bar3,
    .bar1:active,
    .bar2:active,
    .bar3:active {
        width: 40px;
        height: 4px;
        margin-bottom: 11px;
    }

    .navbar-on .bar1 {
        transform-origin: 50% 50%;
        transform: translateY(4px) rotate(45deg);
        margin-bottom: 0;
    }

    .navbar-on .bar2 {
        opacity: 0;
        margin-bottom: 0;
    }

    .navbar-on .bar3 {
        transform-origin: 50% 50%;
        transform: translateY(-4px) rotate(-45deg);
        margin-bottom: 0;
    }

    #mobilenavi {
        padding-top: 160px;
    }
}


/* =============================================================================
   10. FOOTER
============================================================================= */

div.footerspace {
    height: 250px;
    background-color: var(--white);
}

div.footer-top {
    background-image: url("style_img/footer-top.svg");
    background-repeat: no-repeat;
    height: calc(100vw * 0.084);
    background-size: cover;
}

footer {
    background-image: url("style_img/footer_bg.svg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 2100px auto;
    background-color: var(--white);
    padding: 60px 0 0 0;
    color: var(--primarycolor);
    display: flex;
    align-content: left;
    height: 420px;
    overflow: hidden;
    font-family: 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 24px;
}

footer .col {
    padding-top: 0;
    vertical-align: bottom;
}

footer .contentbox {
    width: var(--containerbreite);
    margin-left: auto;
    margin-right: auto;
}

footer .grid-container {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 00px 20px;
    padding: 0;
}

footer .logo-footer {
    background-image: url("style_img/lebenspraxis-weiss.svg");
    background-position: center;
    background-repeat: no-repeat;
    height: 135px;
    width: 100%;
    transition: all 0.3s linear;
    text-decoration: none;
    grid-column: 4;
    grid-row: 1;
    align-self: end;
}

footer a {
    text-decoration: none;
    color: var(--green);
}

footer a:hover {
    color: var(--white);
}

footer .adresse1,
footer .adresse2 {
    text-align: left;
    color: var(--green);
    grid-row: 2;
    align-self: end;
}

footer .adresse2 {
    grid-column: 2/4;
}

footer div.links {
    font-family: 'OoohBaby', Times, serif;
    color: var(--weiss);
    font-size: 24px;
    line-height: 35px;
    text-align: right;
    grid-column: 7;
    grid-row: 2;
    align-self: end;
}

footer div.impressum,
footer div.impressum a {
    color: var(--green);
    font-size: 12px;
    text-align: center;
    grid-column: 3 / 6;
    grid-row: 3;
    align-self: center;
}

footer div.impressum a:hover {
    color: var(--white);
}

footer div.social {
    position: relative;
    display: block;
    text-align: right;
    font-size: 12px;
    grid-row: 2;
}

div.social a {
    vertical-align: bottom;
    height: 40px;
    width: 40px;
    padding: 5px;
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    background-color: var(--primarycolor);
    border: none;
    color: var(--white);
    font-size: 14px;
    box-sizing: border-box;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    margin-left: 15px;
}

div.social a:hover {
    background-color: var(--lightgrey);
}

footer .icons {
    grid-row: 3;
    grid-column: 1/4;

}

footer .icons a {
    display: inline-block;
    margin-right: 15px;
    margin-top: 20px;
    float: left;
    text-align: left;
}

footer .icons a img {
    width: 40px;
    transition: all 0.3s linear;
}

footer .icons a:hover {
    opacity: 0.5;
}

@media (max-width: 1200px) {
    footer {
        font-size: 14px;
        line-height: 22px;
        height: 400px;
    }

    footer .grid-container {
        gap: 10px 20px;
    }


    footer .contentbox {
        padding: 0 25px;
    }

    footer .adresse1,
    footer .adresse2 {
        font-size: 16px;
        line-height: 22px;
        grid-column: span 3;
    }

    footer .adresse2 {
        grid-row: 3;
        align-self: center;
    }

    footer .links {
        display: none;
    }

    footer div.impressum {
        grid-column: 5/8;
        text-align: right;
        align-self: end;
    }

    footer .icons {
        text-align: right;
        grid-column: 6/8;
        grid-row: 2;
        align-self: end;
    }

    footer .icons a {
        margin-right: 0px;
        margin-left: 15px;
        float: right;
    }
}

@media (max-width: 750px) {
    footer {
        padding: 20px 0;
        height: auto;
        overflow: visible;
        display: block;
    }

    footer .contentbox {
        padding: 0 20px;
    }

    footer .grid-container {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    footer .logo-footer {
        order: 1;
        width: 135px;
        height: 135px;
        margin-top: 10px;
        align-self: center;
    }

    footer .adresse1 {
        order: 2;
        grid-column: unset;
        grid-row: unset;
        align-self: unset;
        text-align: center;
    }

    footer .adresse2 {
        order: 3;
        margin-top: 10px;
        margin-bottom: 10px;
        grid-column: unset;
        grid-row: unset;
        align-self: unset;
        text-align: center;
    }

    footer div.impressum {
        order: 4;
        text-align: center;
        grid-column: unset;
        grid-row: unset;
        align-self: unset;
    }

    footer .icons a {
        display: inline-block;
        margin-right: 5px;
        margin-left: 5px;
        margin-top: 20px;
        float: left;
        text-align: center;
    }

    footer div.links {
        display: none;
    }

    footer div.social {
        order: 5;
        margin-top: 5px;
        text-align: left;
        grid-column: unset;
        grid-row: unset;
    }

    footer div.social a {
        margin-left: 0;
        margin-right: 15px;
    }

    footer .icons {
        text-align: center;
        grid-column: unset;
        grid-row: unset;
        align-self: unset;
    }

    footer .icons a {
        display: inline-block;
        margin-right: 5px;
        margin-left: 5px;
        margin-top: 20px;
        float: left;
        text-align: center;
    }
}


/* =============================================================================
   11. TABELLEN
============================================================================= */

table {
    max-width: 100%;
}

th {
    padding: 5px;
    background-color: var(--lightgrey);
    font-size: 0.85rem;
}

td {
    padding: 5px;
    border-bottom: 1px solid var(--darkgrey);
    font-size: 0.85rem;
}

.tabelle {
    border-collapse: collapse;
    font-size: 14px;
    line-height: 16px;
    width: 100%;
}

.tabellen-reihe {
    display: grid;
    text-decoration: none;
    color: inherit;
    grid-template-columns: 500px 100px 1fr 1fr;
    border: 4px solid #fff;
    border-bottom: none;
    cursor: pointer;
    background: var(--lightgrey);
}

.tabellen-reihe:last-child {
    border-bottom: 4px solid #fff;
}

.zelle {
    padding: 12px;
    border-right: 1px solid #fff;
    text-align: left;
    font-weight: 400;
}

.zelle:last-child {
    border-right: none;
}

.declare {
    border-spacing: 5px 0;
}

.declare td {
    padding: 5px 5px 5px 0;
    border-top: 1px solid var(--darkgrey);
    border-bottom: none;
}

.declare td.right {
    text-align: right;
}

.number {
    text-align: right;
}

.dokumentlink {
    display: block;
    padding: 15px 20px;
    border: 1px solid var(--green);
    color: var(--primarycolor);
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.5s;
    letter-spacing: 1px;
    width: 50%;
}

.dokumentlink:hover {
    background: var(--green);
    color: var(--white);
    letter-spacing: 5px;
}


/* =============================================================================
   12. CARDS
============================================================================= */

.cardbox {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: space-between;
    grid-gap: 40px;
}

.cardbox-team {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: space-between;
    grid-gap: 40px;
}

.col-3-4 .cardbox-team {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    width: 100%;
    background-color: transparent;
    display: block;
    transition: all 0.5s;
    position: relative;
    animation: fadein 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    font-weight: 400;
    padding: 0;
}

.stretched-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.5s;
}

.card:hover .stretched-link::after {
    background-color: rgba(250, 250, 250, 0.6);
}

.cardimage {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    transition: all 0.5s;
}

.cardtext {
    min-height: 120px;
    box-sizing: border-box;
    color: var(--black);
    font-weight: 400;
    position: relative;
    transition: all 0.5s;
    padding: 0;
}

.cardtext p,
.eventcard p {
    font-size: 24px;
    line-height: 28px;
}

.cardtext h2,
.eventcard h2 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    color: var(--black);
}

.card::after {
    content: "\279E";
    position: absolute;
    bottom: 20px;
    right: 0;
    color: var(--primarycolor);
    font-size: 20px;
}

.cardbox-team .card::after {
    content: "";
    display: none;
}

.eventcard {
    background-color: var(--lightgrey);
    border-radius: 0 0 5px 5px;
    box-sizing: border-box;
    padding: 15px;
    color: var(--darkgrey);
    font-weight: 600;
    position: relative;
    transition: all 0.5s;
    height: 100%;
}

.thumbnail {
    text-align: center;
    font-size: 18px;
    background: var(--white);
    display: block;
    float: left;
    padding-right: 10px;
    padding-bottom: 10px;
    height: 300px;
    cursor: zoom-in;
}

.thumbnail img {
    height: 300px;
    width: auto;
}

@media (max-width: 1200px) {
    .cardbox {
        grid-gap: 25px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cardbox-team {
        grid-gap: 25px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .col-3-4 .cardbox-team {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 750px) {
    .cardbox {
        grid-template-columns: 1fr;
    }

    .cardbox-team {
        grid-template-columns: 1fr;
    }

    .col-3-4 .cardbox-team {
        grid-template-columns: 1fr;
    }

    .col.empty {
        display: none;
    }
}


/* =============================================================================
   13. TEAM
============================================================================= */

.teambox {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20vw, 1fr));
    justify-content: space-between;
    grid-gap: 40px;
}

.team {
    width: 100%;
    display: block;
    transition: all 0.5s;
    position: relative;
    animation: fadein 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.team::before {
    background: var(--lightgrey);
    opacity: 1;
    width: calc(100% - 40px);
    height: 100%;
    position: absolute;
    left: 40px;
    top: 0;
    z-index: -1;
    content: "";
}

.memberimage {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 100px;
    height: 100px;
    transition: all 0.5s;
    margin: 20px 20px 20px 0;
    display: block;
    float: left;
    background-color: #fff;
    border: 5px solid var(--white);
    outline: 2px solid var(--lightgrey);
}

.teamimage {
    background-size: cover;
    background-repeat: no-repeat;
    width: 120px;
    height: 180px;
    transition: all 0.5s;
    margin: 20px 20px 20px 0;
    display: block;
    float: left;
}

.teamtext {
    max-height: 150px;
    box-sizing: border-box;
    padding: 0;
    font-size: 1rem;
    color: var(--darkgrey);
    font-weight: 600;
    position: relative;
    transition: all 0.5s;
    display: block;
    float: left;
    width: calc(60%);
    margin-top: 16px;
}

.teamtext p {
    font-size: 1rem;
    font-weight: 400;
}

.teamdetails {
    margin-left: 50px;
    margin-top: 0;
}

.teambild img {
    width: 100%;
}

@media (max-width: 1200px) {
    .teamdetails {
        margin-left: 0;
    }
}


/* =============================================================================
   14. NEWS
============================================================================= */

.newsbox {
    margin-top: -250px;
    z-index: 10;
}

.newsimage,
.newsimage img {
    width: 100%;
    height: auto;
}

.newstext {
    width: 100%;
}

.termin-list,
.news-list {
    padding: 0 !important;
    margin: 0;
    letter-spacing: 0.5px;
}

.termin-list-item,
.news-list-item {
    position: relative;
    color: var(--black);
    list-style: none;
    padding: 10px 0 !important;
    margin: 0;
}

.termin-list-item::before,
.news-list-item::before {
    display: none;
}

.news-title,
.termin-title,
.termin-date {
    font-size: 23px;
    line-height: 28px;
    font-weight: 600;
}

.news-link {
    display: inline-block;
    color: var(--primarycolor);
}

.news-link:hover {
    color: var(--green);
}

.newspic {
    width: 150px;
    float: left;
    padding-right: 16px;
    margin-top: 7px;
    display: block;
}

@media (max-width: 1200px) {
    #newsbutton {
        left: 5%;
        height: 42px;
    }

    #newsbutton a {
        padding: 10px;
        color: #fff;
    }

    #newsbereich {
        position: relative;
        margin-top: 62px;
        width: 90%;
        clear: both;
        padding: 60px 5%;
        color: #fff;
    }
}

@media (max-width: 750px) {
    .newsbox {
        margin-top: 0;
    }
}


/* =============================================================================
   15. SWIPER / SLIDER
============================================================================= */

#projektheader {
    margin-top: 0;
    width: 100%;
    height: 800px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

#topheader {
    margin-top: 0;
    width: var(--containerbreiteKlein);
    margin-left: auto;
    margin-right: auto;
    height: 500px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

#topheaderoff {
    position: relative;
    border: 0;
    opacity: 1;
    height: 0;
    overflow: hidden;
    background-size: cover;
}

#slider {
    position: relative;
    border: 0;
    display: block;
    width: 100%;
}

.swiper-slide {
    text-align: left;
    font-size: 18px;
    display: block;
    float: left;
    width: 100%;
    background-repeat: no-repeat;
}

.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 20px 0;
}

.swiper-container .swiper-slide img {
    width: 60%;
    height: auto;
    border: none;
    float: left;
    margin-right: 3%;
}

.swiper-container .swiper-slide figcaption {
    padding-top: 3.3rem;
    float: left;
    color: var(--white);
    width: 30%;
}

.swiper-container .swiper-slide h1 {
    color: var(--white);
}

.swiper-button-next {
    right: 2%;
    cursor: pointer;
    top: 50%;
}

.swiper-button-prev {
    left: 2%;
    cursor: pointer;
    top: 50%;
}

.projekt-slider.swiper-container {
    margin-top: 80px;
    height: 680px;
}

.projekt-slider .swiper-slide {
    height: 680px;
}

.projekt-slider .swiper-button-next {
    right: 0;
    cursor: pointer;
    top: 0;
    margin-top: 0;
    height: 100px;
    width: 50px;
    background-size: contain;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2055.363%20109.375'%3E%3Cpolyline%20points%3D'0.729%200.729%2054.633%2054.688%200.729%20108.646'%20fill%3D'none'%20stroke%3D'%23f1864c'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%20stroke-width%3D'1.458'%2F%3E%3C%2Fsvg%3E");
}

.projekt-slider .swiper-button-prev {
    display: none;
}

.projekt-slide-content {
    position: relative;
    min-height: 680px;
    background: var(--white);
}

.projekt-slide-images {
    display: block;
    position: relative;
    width: 100%;
    height: 680px;
}

.projekt-slide-image {
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.projekt-slide-images .projekt-slide-image--first {
    left: 0;
    top: 0;
    width: 860px;
    height: 580px;
    z-index: 1;
}

.projekt-slide-images .projekt-slide-image--second {
    right: 0;
    top: 320px;
    width: 630px;
    height: 350px;
    z-index: 2;
}

.projekt-slide-info {
    display: block;
    position: absolute;
    right: 0;
    top: 150px;
    width: 480px;
    height: 250px;
    z-index: 23;
}

.projekt-slide-info h2 {
    font-size: 32px;
    line-height: 34px;
}

.projekt-slide-info h4 {
    font-weight: 500;
    line-height: 18px;
    color: var(--primarycolor);
    margin-bottom: 5px;
}

@media (max-width: 1200px) {
    .projekt-slider.swiper-container {
        height: calc(100vw * var(--bildproportionenQuer) + 150px);
    }

    .projekt-slider .swiper-slide {
        height: calc(100vw * var(--bildproportionenQuer) + 150px);
    }

    .projekt-slider .swiper-button-next {
        right: 0;
        top: calc(100vw * var(--bildproportionenQuer) + 20px);
        height: 80px;
    }

    .projekt-slide-content {
        width: 100%;
        height: calc(100vw * var(--bildproportionenQuer) + 150px);
    }

    .projekt-slide-images {
        width: 100%;
        height: auto;
    }

    .projekt-slide-images .projekt-slide-image--first {
        width: 100%;
        height: calc(100vw * var(--bildproportionenQuer));
    }

    .projekt-slide-image--second {
        display: none;
    }

    .projekt-slide-info {
        width: 100%;
        height: auto;
        top: calc(100vw * var(--bildproportionenQuer) + 10px);
    }

    #topheader {
        width: 100%;
        height: calc(100vw * 0.4);
    }
}

@media (max-width: 750px) {
    .projekt-slider.swiper-container {
        margin-top: 20px;
    }

    .projekt-slider .swiper-button-next {
        top: calc(100vw * var(--bildproportionenQuer) + 12px);
        height: 40px;
        width: 20px;
    }

    .swiper-container .swiper-slide img {
        width: var(--containerbreite);
        margin-right: 0;
    }

    .swiper-container .swiper-slide figcaption {
        width: var(--containerbreite);
        padding-top: 1rem;
    }
}


/* =============================================================================
   16. PROJEKTE
============================================================================= */

#projektdetails {
    margin-left: 0;
}

#projektdetails h1 {
    margin-top: 0;
}

#projektdetails p {
    margin: 0;
}

#projektdetails span {
    font-weight: 400;
    text-transform: uppercase;
}

#projektbeschreibung {
    padding-top: 30px;
    clear: both;
    width: 32vw;
}

#projektnavigation {
    top: 20px;
    left: 10%;
    margin-bottom: 20px;
    text-align: left;
    z-index: 3000;
    width: 100%;
}

#projektnavigation div {
    float: right;
}

.filter-container {
    margin-bottom: 50px;
    font-family: 'OoohBaby', Times, serif;
    font-weight: 300;
    color: var(--black);
}

.filter-kategorie {
    display: inline-block;
    margin-right: 20px;
    font-size: 18px;
    color: var(--primarycolor);
    cursor: pointer;
}

@media screen and (orientation: portrait) {
    #slider {
        width: 100%;
        clear: both;
        display: block;
    }

    #projektdetails {
        clear: both;
        margin-top: 20px;
        margin-left: 0;
        width: 100%;
        height: auto;
    }

    #projektbeschreibung {
        clear: both;
        margin-top: 20px;
        margin-left: 0;
        width: 100%;
        height: auto;
    }
}


/* =============================================================================
   17. FORMULAR / KONTAKT
============================================================================= */

.formular {
    background-color: transparent;
}

.formular>div {
    position: relative;
}

.formular h3 {
    margin-top: 30px;
    padding: 5px;
}

.formular p {
    font-size: 18px;
}

.formular input[type="text"],
.formular input[type="email"],
.formular input[type="tel"],
.formular input[type="password"],
.formular textarea {
    width: 100%;
    padding: 15px 20px 12px 20px;
    border: 1px solid var(--lightgrey);
    transition: all 0.3s ease;
}

.formular input[type="text"]:focus,
.formular input[type="email"]:focus,
.formular input[type="tel"]:focus,
.formular input[type="password"]:focus,
.formular textarea:focus {
    outline: 1px solid var(--primarycolor);
}

.formular label {
    font-size: 16px;
    color: var(--white);
    font-family: 'OoohBaby', Times, serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.formular input[type="checkbox"],
.formular input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background-color: var(--lightgrey);
    border: 1px solid var(--darkgrey);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    padding: 10px;
}

.formular input[type="checkbox"]:checked,
.formular input[type="radio"]:checked {
    background-color: var(--primarycolor);
    border: 1px solid var(--white);
}

.formular input[type="checkbox"]:checked::after,
.formular input[type="radio"]:checked::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 14px;
    width: 100%;
    background: var(--lightgrey);
    background-image: linear-gradient(45deg, transparent 50%, var(--darkgrey) 50%),
        linear-gradient(135deg, var(--darkgrey) 50%, transparent 50%),
        linear-gradient(to right, var(--lightgrey), var(--lightgrey));
    background-position: calc(100% - 20px) calc(20px + 1px), calc(100% - 15px) calc(20px + 1px), 100% 0;
    background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
    background-repeat: no-repeat;
    color: var(--darkgrey);
    border: 0 solid #fff;
    border-radius: 0;
    padding: 10px;
    font-weight: 400;
    cursor: pointer;
}

textarea {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--lightgrey);
    border: none;
    padding: 10px;
    color: var(--darkgrey);
    font-size: 14px;
    box-sizing: border-box;
    border-radius: 0;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
    width: 100%;
    position: relative;
}

.form-row .half {
    flex: 1;
    position: relative;
}

.bewerbung-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

.subject {
    display: none;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

@media (max-width: 1200px) {
    #googleMaps {
        width: 100%;
        padding-left: 0;
        margin-top: 40px;
    }

    #kontaktformular {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 750px) {
    .bewerbung-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    label {
        font-size: 12px;
    }
}


/* =============================================================================
   18. BUTTONS
============================================================================= */

button {
    font-family: 'OoohBaby', Times, serif;
    -webkit-appearance: none;
    appearance: none;
    width: auto;
    padding: 10px;
    transition: 0.5s;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: var(--primarycolor);
    color: var(--white);
    border: none;
    margin-bottom: 2px;
}

button:hover {
    background: var(--midgrey);
}

.ctabutton {
    font-size: 20px;
    font-weight: 600;
    background-color: var(--primarycolor);
    color: var(--white);
    padding: 15px 20px;
    border: none;
    border-radius: 3px;
    transition: all 0.5s ease;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 20px auto;
}

.ctabutton:hover {
    background-color: var(--midgrey);
    color: var(--black);
}

.detailbutton {
    -webkit-appearance: none;
    appearance: none;
    width: auto;
    padding: 10px;
    transition: 0.5s;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: var(--primarycolor);
    color: var(--white);
    border: none;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.detailbutton:hover {
    background: var(--midgrey);
}

.tinybutton {
    -webkit-appearance: none;
    appearance: none;
    width: auto;
    padding: 3px;
    transition: 0.5s;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    background: var(--midgrey);
    color: var(--white);
    border: none;
    margin-bottom: 2px;
}

.tinybutton:hover {
    background: var(--primarycolor);
}

a.linkarrow,
a.fulllinkarrow {
    color: var(--black);
    display: inline-block;
    text-decoration: none;
    transition: all 0.5s ease;
    width: 100%;
    font-family: 'OoohBaby', Times, serif;
    letter-spacing: 0;
}

a.linkarrow::before,
a.fulllinkarrow::before {
    content: "\279E";
    color: var(--black);
    padding-right: 10px;
}

a.linkarrow:hover,
a.fulllinkarrow:hover {
    color: var(--lightgrey);
}

input.search_submit {
    vertical-align: top;
    height: 30px;
    width: 30px;
    padding: 5px;
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    background-color: #8e8e8e;
    border: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
    border-radius: 0;
    cursor: pointer;
}

input.search_submit:hover {
    background-color: var(--darkgrey);
}

input.send_submit {
    vertical-align: top;
    height: 30px;
    width: auto;
    padding: 5px;
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    background-color: var(--primarycolor);
    border: none;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    box-sizing: border-box;
    border-radius: 0;
    cursor: pointer;
}

input.send_submit:hover {
    background-color: #505050;
}

input.kill {
    font-weight: 700;
    width: auto;
    display: inline-block;
    padding: 8px 12px;
    cursor: pointer;
    background: #d4001c;
    color: #fff;
    border: 1px solid #d4001c;
    font-size: 14px;
    margin: 6px 6px 6px 0;
}

input.kill:hover {
    background: #a5001c;
    border-color: #a5001c;
}

input.nokill {
    font-weight: 700;
    width: auto;
    display: inline-block;
    padding: 8px 12px;
    cursor: pointer;
    background: green;
    color: #fff;
    border: 1px solid green;
    font-size: 14px;
    margin: 6px 6px 6px 0;
}

input.nokill:hover {
    background: darkgreen;
    border-color: darkgreen;
}

@media (max-width: 750px) {
    a.fulllinkbutton {
        width: 100%;
    }
}


/* =============================================================================
   19. DROPDOWN (Projektfilter)
============================================================================= */

div.dropdown {
    cursor: pointer;
    background: transparent;
    text-align: left;
    padding: 0;
    display: inline-block;
}

div.dropdown .dropdown-lab {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    display: inline-block;
    margin: 0 5px 5px 0;
    cursor: pointer;
    background: var(--midgrey);
    color: var(--white);
    padding: 7px 10px !important;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    width: 205px;
}

div.dropdown .dropdown-lab:after {
    position: absolute;
    display: block;
    content: '\276E';
    margin-left: 160px;
    width: 26px;
    margin-top: -34px;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

div.dropdown .buttonwrap {
    position: absolute;
    display: none;
    margin-bottom: 10px;
    background: var(--white);
    z-index: 9999;
}

div.dropdown .clearer {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    display: none;
    cursor: pointer;
    text-align: center;
    background: var(--primarycolor);
    color: var(--white);
    padding: 7px !important;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    position: absolute;
    content: '\276E';
    margin-left: 165px;
    width: 40px;
    margin-top: -45px;
    border-style: none;
    border-left: 2px solid #fff;
}

div.dropdown .sichtbar {
    display: block;
}

div.dropdown .show {
    display: block;
}

div.dropdown .dropdown-lab.activ:after {
    margin-left: 122px;
}

div.dropdown .dropdown-lab.down:after {
    margin-top: -17px;
    transform: rotate(90deg);
}

div.dropdown .buttonwrap::after {
    content: ' ';
    clear: both;
}

button.filter2 {
    color: var(--darkgrey);
    display: block;
    padding: 7px 10px;
    border: 0;
    cursor: pointer;
    text-align: left;
    background: var(--lightgrey);
    font-size: 16px;
    margin-right: 0;
    margin-bottom: 5px;
    width: 205px;
    clear: both;
}


/* =============================================================================
   20. ALERTS
============================================================================= */

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 20px;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert {
    color: #a5001c;
}

.succeed {
    color: green;
}

#alert {
    display: block;
    position: fixed;
    line-height: 26px;
    font-size: 20px;
    font-weight: 600;
    top: 20%;
    left: 15%;
    width: 70%;
    border: 5px solid #f00;
    padding: 20px;
    color: #222;
    border-radius: 15px;
    z-index: 999999;
    background-color: #fff;
    text-align: center;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.5);
}

#alertSoft {
    display: block;
    position: absolute;
    font-size: 1rem;
    font-weight: 400;
    top: 25%;
    left: 15%;
    width: 70%;
    padding: 20px;
    color: #222;
    border-radius: 5px;
    z-index: 999999;
    background-color: var(--white);
    text-align: left;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.5);
}

#softer {
    position: fixed;
    box-sizing: border-box;
    left: 0;
    top: 0;
    color: #222;
    width: 100%;
    height: 100%;
    z-index: 7500;
    background: rgba(0, 0, 0, 0.7);
    overflow: scroll;
}

#softalert {
    position: absolute;
    box-sizing: border-box;
    left: 3%;
    top: 150px;
    padding: 20px;
    color: #222;
    max-width: 94%;
    z-index: 7920;
    background: #ddd;
    border: 1px solid #333;
    border-radius: 5px;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.5);
}

.closealert {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    padding: 10px;
}

@media (max-width: 750px) {
    #alertSoft {
        top: 10%;
        left: 8%;
        width: 84%;
    }
}


/* =============================================================================
   21. LISTEN / ACCORDION
============================================================================= */

ul.liste {
    margin: 0;
    padding: 0;
}

ul.liste>li {
    font-size: 16px;
    background-color: var(--lightgrey);
    margin: 5px 0;
    padding: 5px;
    list-style-type: none;
    display: block;
    position: relative;
}

ul.liste li div.loeschen {
    display: none;
    position: absolute;
    left: -5px;
    top: -5px;
}

ul.liste li:hover div.loeschen {
    display: block;
}

#accordion {
    width: 100%;
}

#accordion h3 {
    display: block;
    padding: 10px;
    color: var(--midgrey);
    background: var(--lightgrey);
    position: relative;
    width: auto;
    cursor: pointer;
    margin-block-end: 0;
    font-size: 16px;
    border-radius: 0;
    font-weight: 700;
    margin-top: 3px;
}

#accordion h3.neu {
    color: #038650;
}

#accordion h3.aktiv {
    color: var(--black);
}

#accordion h3:focus {
    outline: none !important;
}

#accordion h3::after {
    content: '\0020\0020\2794';
    transform: rotate(90deg);
    display: block;
    float: right;
    transition: all 0.15s ease-in-out;
    position: absolute;
    right: 6px;
}

#accordion h3.ui-state-active::after {
    content: '\0020\0020\2794';
    transform: rotate(-90deg);
}

.ui-button.ui-state-active:hover,
.ui-button:active,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    background: var(--midgrey) !important;
    border: 0 solid #F00000 !important;
    border-radius: 0 !important;
}

@media (max-width: 1200px) {

    li.thema h2:hover::after,
    li.themaAktiv h2:hover::after,
    li.thema h4:hover::after {
        content: none;
    }
}


/* =============================================================================
   22. ANIMATIONEN / DIVERSES
============================================================================= */

.animate {
    transition: all 1s;
}

.animate.from_left {
    opacity: 0;
    transform: translateX(-50px);
}

.animate.from_left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate.from_right {
    opacity: 0;
    transform: translateX(50px);
}

.animate.from_right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate.from_top {
    opacity: 0;
    transform: translateY(-50px);
}

.animate.from_top.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 750px) {
    .animate.from_right {
        opacity: 0;
        transform: translateY(50px);
    }

    .animate.from_right.visible {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =============================================================================
   23. ERGÄNZUNGEN / FEHLENDE KLASSEN
============================================================================= */

/* Typografie-Hilfsklassen */

.negative {
    color: var(--white);
}

@media (max-width: 750px) {
    .negative {
        color: var(--black);
    }
}

.short {
    min-height: 100px;
}

/* News */

.newscard {
    background-color: var(--green);
}

.newscard:hover .cardtext span {
    color: var(--white);
}

.newscard .cardtext {
    color: var(--white);
}

.news-teaser {
    line-height: 20px;
}

/* Team */

.team:hover .stretched-link::after {
    background-color: rgba(255, 255, 255, .4);
}

/* Swiper Ergänzungen */

.swiper-pagination {
    margin-top: -15px;
    display: none;
}

.swiper-container-projekt {
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Projekte Ergänzungen */

.projekttext p,
.auftraggeber,
.leistung,
.anhang {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 20px;
}

.projekt-bilder img {
    margin-bottom: 20px;
}

.projekt-slide-info .projekt-slide-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.projekt-slide-info .projekt-slide-link:hover {
    opacity: 0.4;
}

.append-buttons {
    text-align: center;
    margin-top: 20px;
}

.append-buttons a {
    display: inline-block;
    border: 1px solid #007aff;
    color: #007aff;
    text-decoration: none;
    padding: 4px 10px;
    margin: 0 10px;
    font-size: 13px;
}

/* Formular Ergänzungen */

.floating {
    float: left;
    display: block;
    margin-right: 10px;
}

.filterselect {
    height: 32px;
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    background-color: var(--lightgrey);
    border: none;
    padding: 5px 10px;
    color: var(--black);
    font-size: 14px;
    box-sizing: border-box;
    border-radius: 0;
    width: 115%;
}

.consent-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.bewerbung-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

.bewerbung-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 750px) {
    .bewerbung-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .bewerbung-column {
        display: contents;
    }

    .question-block.q-1 {
        order: 1;
    }

    .question-block.q-2 {
        order: 2;
    }

    .question-block.q-3 {
        order: 3;
    }

    .question-block.q-4 {
        order: 4;
    }

    .question-block.q-5 {
        order: 5;
    }

    .question-block.q-6 {
        order: 6;
    }

    .question-block.q-7 {
        order: 7;
    }
}

.question-block {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.question-block h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    text-transform: none;
    font-family: 'OoohBaby', 'times new roman', serif;
    font-weight: 600;
}

.question-block p {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--white);
}

.question-block .form-group {
    margin-bottom: 5px;
}

.question-block .form-group:last-child {
    margin-bottom: 0;
}

.submit-section {
    text-align: left;
    margin-top: 30px;
}

/* Input-Typen Ergänzungen */

input.email:focus {
    outline: 0 !important;
    border: none;
    background: #fff;
}

input[type="radio"].rot {
    background-color: #c11932;
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

input[type="radio"].rot:checked {
    border: 2px solid var(--lightgrey);
    outline: 2px solid var(--darkgrey);
}

input[type="radio"].grau {
    background-color: var(--darkgrey);
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

input[type="radio"].grau:checked {
    border: 2px solid var(--lightgrey);
    outline: 2px solid var(--darkgrey);
}

input.send {
    display: inline-block;
    text-decoration: none;
    border: 0 solid #000;
    background-color: #d4001c;
    color: #fff;
    padding: 8px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
}

input.kill {
    font-weight: 700;
    width: auto;
    display: inline-block;
    padding: 8px 12px;
    cursor: pointer;
    background: #d4001c;
    color: #fff;
    border: 1px solid #d4001c;
    font-size: 14px;
    margin: 6px 6px 6px 0;
}

input.kill:hover {
    background: #a5001c;
    border: 1px solid #a5001c;
}

input.nokill {
    font-weight: 700;
    width: auto;
    display: inline-block;
    padding: 8px 12px;
    cursor: pointer;
    background: green;
    color: #fff;
    border: 1px solid green;
    font-size: 14px;
    margin: 6px 6px 6px 0;
}

input.nokill:hover {
    background: darkgreen;
    border: 1px solid darkgreen;
}

a.back {
    display: inline-block;
    padding: 2px 4px;
    cursor: pointer;
    border: 2px solid green;
    color: white;
    background: green;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

a.back:hover {
    background: darkgreen;
    border: 2px solid darkgreen;
}

a.sehdich {
    display: inline-block;
}

/* Buttons Ergänzungen */

.button2 {
    font-family: 'OoohBaby', Times, serif;
    -webkit-appearance: none;
    appearance: none;
    width: auto;
    padding: 10px;
    transition: 0.5s;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: var(--lightgrey);
    color: var(--midgrey);
    border: none;
}

.button2:hover {
    background: var(--midgrey);
}

.listbuttonright {
    right: 0;
    position: absolute;
}

button.mehr {
    background: var(--primarycolor);
    font-size: 15px;
    color: var(--white);
    border: none;
    box-shadow: none;
    cursor: pointer;
    padding: 10px;
    margin-bottom: 30px;
    margin-top: 10px;
    transition: 0.5s;
    border-radius: 3px;
}

button.mehr:hover {
    background-color: var(--midgrey);
    color: var(--black);
}

.detailbutton {
    -webkit-appearance: none;
    appearance: none;
    width: auto;
    padding: 10px;
    transition: 0.5s;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: var(--primarycolor);
    color: var(--white);
    border: none;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.detailbutton:hover {
    background: var(--midgrey);
}

.icsbutton {
    -webkit-appearance: none;
    appearance: none;
    width: auto;
    height: 28px;
    padding: 0;
    transition: 0.5s;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: var(--white);
    border: none;
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.icsbutton:hover {
    opacity: 0.5;
}

.icsbutton2 {
    -webkit-appearance: none;
    appearance: none;
    width: auto;
    height: 28px;
    padding: 0;
    transition: 0.5s;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: var(--white);
    border: none;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.icsbutton2:hover {
    opacity: 0.5;
}

button.filter2 {
    color: var(--darkgrey);
    display: block;
    padding: 7px 10px;
    border: 0;
    cursor: pointer;
    text-align: left;
    background: var(--lightgrey);
    font-size: 16px;
    margin-right: 0;
    margin-bottom: 5px;
    width: 205px;
    clear: both;
}

a.clear_submit {
    position: absolute;
    margin-left: -60px;
    vertical-align: bottom;
    height: 30px;
    width: 30px;
    padding: 4px 5px 6px 5px;
    -webkit-appearance: none;
    appearance: none;
    display: none;
    background-color: transparent;
    text-align: center;
    font-size: 16px;
    box-sizing: border-box;
    border-radius: 0;
    cursor: pointer;
    color: var(--primarycolor);
    text-decoration: none;
}

a.clear_submit:hover {
    background-color: var(--primarycolor);
    color: #fff;
    width: 30px;
}

/* Alerts Ergänzungen */

.activated {
    background-color: var(--midgrey) !important;
}

#alertSoft {
    display: block;
    position: absolute;
    font-size: 1rem;
    font-weight: 400;
    top: 25%;
    left: 15%;
    width: 70%;
    min-height: auto;
    border: none;
    padding: 20px;
    color: #222222;
    border-radius: 5px;
    z-index: 999999;
    background-color: var(--white);
    text-align: left;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, .5);
    margin-bottom: 50px;
}

@media (max-width: 750px) {
    #alertSoft {
        top: 10%;
        left: 8%;
        width: 84%;
    }
}

#alertInfo {
    animation: cssAnimation 0s ease-in 3s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    display: block;
    position: fixed;
    line-height: 26px;
    font-size: 18px;
    font-weight: 700;
    top: 180px;
    left: 0;
    margin: 0;
    width: 100%;
    min-height: auto;
    outline: 5px solid #0f0;
    padding: 20px;
    color: #000;
    z-index: 999999;
    background: #0f0;
    text-align: center;
}

#softer {
    position: fixed;
    box-sizing: border-box;
    left: 0;
    top: 0;
    color: #222222;
    width: 100%;
    height: 100%;
    z-index: 7500;
    background: rgba(0, 0, 0, .7);
    overflow: scroll;
}

#softalert {
    position: absolute;
    box-sizing: border-box;
    left: 3%;
    top: 150px;
    padding: 20px;
    color: #222222;
    max-width: 94%;
    z-index: 7920;
    background: #ddd;
    border: 1px solid #333;
    border-radius: 5px;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, .5);
}

#softalert h2 {
    font-size: 30px;
    display: block;
    color: #F00000;
    line-height: 100px;
    margin-top: 0;
    position: relative;
    margin-left: 0;
}

#softalert b {
    text-transform: uppercase;
    font-size: 24px;
}

.closealert {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    padding: 10px;
}

/* Suche / Such-Resultate */

.suchresultat {
    border-top: 1px solid #ccc;
    line-height: 0.7rem;
    padding: 10px 0;
}

.suchresultat h4 {
    margin-block-end: 7px;
    margin-block-start: 5px;
    display: block;
}

/* Memberliste */

.memberlist span {
    color: var(--primarycolor);
}

ul.liste>li.memberlist-aktiv {
    background-color: rgb(191, 230, 191);
}

ul.liste>li.memberlist-neu {
    background-color: rgb(191, 219, 230);
}

/* Tabellen Ergänzungen */

.tabellen-reihe-edit {
    display: grid;
    text-decoration: none;
    color: inherit;
    grid-template-columns: 350px 100px 160px 1fr 100px 90px;
    place-items: left;
    border: 4px solid #fff;
    border-bottom: none;
    cursor: pointer;
    background: var(--lightgrey);
}

.tabellen-reihe-termine {
    display: grid;
    text-decoration: none;
    color: inherit;
    grid-template-columns: 1fr 1fr 1fr 150px;
    place-items: left;
    border: 4px solid #fff;
    border-bottom: none;
    cursor: pointer;
    background: var(--lightgrey);
}

.zelle-edit {
    padding: 5px;
    border-right: 1px solid #fff;
    text-align: left;
    font-weight: 400;
}

/* Login */

.loginbutton {
    display: block;
}

.loginbutton a {
    padding: 7px 10px !important;
    background-color: var(--primarycolor) !important;
    color: #fff !important;
    text-decoration: none !important;
}

@media (max-width: 1200px) {
    .loginbutton {
        right: 100px;
        top: 26px;
    }
}

iframe {
    border: 0;
    display: block;
    width: 80%;
    height: 400px;
    margin: 0 auto;
}

/* Video Lightbox */

.lightbox--video {
    -webkit-filter: none !important;
    filter: none !important;
}

.lightbox--video .lightbox__frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90vw;
    max-width: 960px;
    height: 50.625vw;
    max-height: 540px;
    transform: translate(-50%, -50%);
    border: 5px solid #fff;
    box-shadow: 0 0 20px #000;
    background: #000;
}

.lightbox--video .lightbox__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* News Diverses */

.newspic {
    width: 150px;
    float: left;
    padding-right: 16px;
    margin-top: 7px;
    display: block;
}

div.cta a {
    font-size: 16px;
    line-height: 16px;
}

/* jQuery UI Widget Ergänzungen */

@media (max-width: 750px) {

    .ui-widget input,
    .ui-widget select,
    .ui-widget textarea,
    .ui-widget button {
        font-size: 12px;
    }
}

/* Projekt-Navigation */

#projektnavigation div a.leftbutton {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23222222'%2F%3E%3C%2Fsvg%3E");
    background-repeat: none;
    display: block;
    width: 15px;
    height: 15px;
    background-size: 15px;
    float: left;
    text-decoration: none;
}

#projektnavigation div a.rightbutton {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23222222'%2F%3E%3C%2Fsvg%3E");
    background-repeat: none;
    display: block;
    width: 15px;
    height: 15px;
    background-size: 15px;
    float: left;
    text-decoration: none;
}

#projektnavigation div a.leftbutton:hover,
#projektnavigation div a.rightbutton:hover {
    opacity: 0.5;
}

/* Navigation Fixed-Header */

header.fixed-header a.nav2_act {
    color: var(--primarycolor);
}

header.fixed-header .navbar-on .bar2,
.navbar-on .bar2 {
    background-color: transparent;
}

/* Grid: benefits Spalten */

@media (max-width: 1200px) {
    .grid-container.benefits .col-first {
        display: none;
    }

    .grid-container.benefits .col-title {
        grid-column: span 2;
    }

    .grid-container.benefits .col-image {
        text-align: right;
    }

    .grid-container.benefits .col-image img {
        height: 100px;
    }
}

/* Kontakt-Formular: Breite-Klasse */

@media (max-width: 750px) {
    #kontaktformular div.breit {
        width: 100%;
        margin-right: 0;
    }
}

/* input.senden */

input.senden {
    cursor: pointer;
}

/* MixItUp / Isotope Grid */

@media (max-width: 1200px) {

    .container .mix,
    .container .gap {
        width: 49%;
    }
}

/* Nav: Mobile Active-State (JavaScript-Klasse) */

@media (max-width: 1200px) {
    a.Active {
        color: var(--primarycolor);
        padding: 0;
        display: block;
    }
}

/* Typografie: Standort-spezifische h1 */

@media (max-width: 750px) {
    h1.restaurant-winterthur {
        display: none;
    }
}