.hypnose-image {
    width: 70%;
    height: auto;
    margin-right: 20%;

    border-radius: 10px;
    background: url(/assets/img/beach.jpg) center no-repeat;
    background-size: cover;
}

.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: 20px;
    margin: 2rem;
    max-width: 1000px;
}
.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 */
    border-radius: 25px;
}

.navbar {
    transition: opacity .66s;
}

.navbar:hover,
.navbar:focus,
.navbar:active {
    opacity: 1 ;
}

li {
    color: white;
}

.dast {
    margin: 1rem;
}


.dast h4 {
    padding: 6px;
    margin: 0;
    line-height: 1;
}


@media screen and (max-width: 600px) {
    .card-sprechzeiten {
        margin-left: 20%;
    }

    .sprechzeiten-image {
        width: 80%;
        margin-right: 0%;
    }

    #more {
        min-height: 230vh !important;
    }
    #more2{
        min-height: 190vh !important;
    }
    #more3{
        min-height:220vh !important;
    }
    .therapy-image {    
       min-width: 40%;
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
    }
}