* {
    font-family: "Helvetica", "Arial", sans-serif;
    line-height: 1.5;
}

body {
    margin: 0;
}

/* Navbar */
header {
    background-color: #2d481e;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logotext {
    text-decoration: none;
    color: #ffffff;
    text-align: center;
    font-size: 16px;

}

nav {
    height: 70px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #473198;
    z-index: 10000;

}

nav a {
    color: #473198;
}

nav ul {
    display: none;
    list-style: none;
    width: 20%;
    /* menü breite */
    top: 54px;
    background-color: #b7e0b5;
    margin-right: 280px;
    /* position menü */

}

nav li {
    text-align: center;
    padding: 10px 0;
    /* höhe menü */
    border-radius: 100px;
    width: 200px;
}

nav li:hover {
    background-color: #9ed19c;
}

nav ul a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    text-decoration: none;
    padding: 10px 0;
    /* abstand menüeinträge */
}

.dropdown {
    width: 100%;
    background-color: #b7e0b5;
    flex-direction: column;
    padding-right: 50px;
    /* breite untermenü */
    margin-left: 200px;
    /* abstand untermenü von menü */
}

.dropdown li {
    display: block;
    border-radius: 40px;
}

nav li:hover .dropdown {
    display: flex;
}

nav input[type="checkbox"] {
    display: none;
}

.Kinder_Menu label {
    cursor: pointer;
}

.Erwachsene_Menu label {
    cursor: pointer;
}

.Kinder_Menu input[type="checkbox"]:checked~.dropdown {
    display: block;
}

.Erwachsene_Menu input[type="checkbox"]:checked~.dropdown {
    display: block;
}

.hamburger {
    width: 35px;
    height: 28px;
    position: absolute;
    top: 20px;
    right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#hamburger:checked~ul {
    display: inline-table;
    position: absolute;
    right: 40px;
}

.bar {
    height: 4px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 100px;
    cursor: pointer;
    padding: 0.5px;
    /* strichdicke bürger */
}

#hamburger:checked~label .bar {
    transform: rotate(45deg);
    transition: transform 0.8s;
}

/* Kontaktdaten */
#Kontaktdaten {
    display: flex;
    justify-content: left;
    align-items: center;
    height: 60px;
    gap: 35px;
    margin-top: 8px;
    margin-left: 8px;
}

.festnetz {
    width: 272px;
    height: 47px;
    max-height: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: calc(90% - 40px);
    flex-wrap: wrap;
}

.festnetz img {
    width: 55px;
}

.handy {
    width: 272px;
    height: 47px;
    max-height: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: calc(90% - 40px);
    flex-wrap: wrap;
}

.handy img {
    width: 55px;
}

.email {
    width: 272px;
    height: 47px;
    max-height: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: calc(90% - 40px);
    flex-wrap: wrap;
    gap: 15px;
}

.email img {
    width: 55px;
}

hr {
    border: solid #b7e0b5 1px;
    background-color: #2d481e;
    height: 1px;
}

h1 {
    padding-left: 10px;
}

.Bild {
    float: left;
    padding-left: 10px;
}

.text {
    padding-left: 320px;
    margin-right: 10px;
    border-bottom: solid 90px #ffffff;
}

footer {
    font-size: 12px;
    background-color: #2d481e;
    color: #ffffff;
    margin-left: 10px;
    margin-right: 10px;
    border: 10px solid #2d481e;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.imp {
    float: right;
}

.dat {
    float: right;
    margin-right: 10px;
}

@media (max-width:800px) {

    .logotext {
        font-size: 12px;
    }

    nav ul {
        margin-right: 0;
    }

    nav li {
        width: 120px;
        margin-right: 30px;
    }

    .dropdown {
        margin-left: -50px;
        padding-right: 80px;
    }

    .hamburger {
        width: 25px;
        height: 25px;
        top: 20px;
        right: 15px;
    }

    #Kontaktdaten {
        align-items: baseline;
        height: 140px;
        max-height: 100%;
        max-width: 100%;
        flex-direction: column;
    }
    .email{
        margin-top:  25px;
    }
    .festnetz {
        font-size: 16px;
        width: 150px;
        height: 2px;
        margin-top: 8px;
    }

    .festnetz img {
        height: 27px;
        width: 27px;
    }

    .handy {
        max-width: calc(90% - 40px);
        width: 142px;
        height: 2px;
        font-size: 16px;
    }

    .handy img {
        height: 27px;
        width: 27px;
    }

    .email {
        gap: 0px;
        width: 213px;
        height: 2px;
        font-size: 16px;
    }

    .email img {
        height: 27px;
        width: 27px;
    }

    #Laryngektomie {
        margin-left: 5vw;
    }

    .Bild {
        float: none;
    }

    .text {
        padding-left: 10px;
        padding-right: 10px;
        border-bottom: 0;
    }

    footer {
        font-size: 8px;
    }
}