.hypnose-image {
    width: 70%;
    height: auto;
    margin-right: 20%;

    border-radius: 10px;
    background: url(/assets/img/blutegel.png) center no-repeat;
    background-size: cover;
}

.therapy-info {
    display: flex;
    align-items: center;
    /* Zentriert vertikal */
    justify-content: space-around;
}

.therapy-image {
    justify-items: end;
    max-width: 20%;
    /* Maximale Breite auf 100% des Containers begrenzen */
    height: auto;
    /* Automatische Höhe beibehalten, um das Bildverhältnis beizubehalten */
}

.nichtraucherspritze {
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 45px;
    margin: 2rem;
    max-width: 1000px;
}



.navbar {
    transition: opacity .66s;
}

.navbar:hover,
.navbar:focus,
.navbar:active {
    opacity: 1 ;
}

.nichtraucherspritze a {
    text-decoration: none;
    color: var(--acent-color);
    transition: all .66s;
}
.nichtraucherspritze a:hover,
.nichtraucherspritze a:focus,
.nichtraucherspritze a:active {
    text-decoration: none;
    color: aqua;
    transform: scale(1.2);
}


li {
    color: white;
}


#more {
    min-height: 160vh !important;
}
.dast {
    margin: 1rem;
}


.dast h4 {
    padding: 6px;
    margin: 0;
    line-height: 1;
}


@media screen and (max-width: 600px) {
    .nichtraucherspritze {
        padding: 20px;
    }
    .card-sprechzeiten {
        margin-left: 20%;
    }

    .sprechzeiten-image {
        width: 80%;
        margin-right: 0%;
    }

    .therapy-image {
        justify-items: end;
        max-width: 40%;
        height: auto;
    }

    #more {
        min-height: 343vh !important;
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
    }
}