@media only screen and (max-width: 1200px) {
    main {
        width: 100%;
        margin: auto 0;
        padding: 20px 0;
        display: flex;
    }


    nav {
        width: 3.5rem;
        height: 3.5rem;
        padding: 0;
        cursor: pointer;
        border-radius: 50%;
        position: fixed;
        bottom: 20px;
        right: 20px;
        top: auto;
    }

    nav ul {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(20px);
        position: fixed;
        bottom: 100px;
        right: 20px;
        background-color: var(--l-green);
        transition: all 0.5s ease-in-out;
    }

    nav ul li {
        display: block;
    }

    #burger-Menu {
        width: 70%;
        height: 70%;

        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    #burger-Menu span {
        height: 4px;
        width: 90%;
        background-color: #333;
        border-radius: 2px;
        transform: rotate(0deg) translate(0px, 0px);
        transition: all 0.3s ease;
    }

    #burger-Menu.toggle span {
        width: 80%;
    }

    #burger-Menu.toggle span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6.5px);
    }

    #burger-Menu.toggle span:nth-child(2) {
        opacity: 0;
    }
    #burger-Menu.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6.5px);
    }

    nav ul.toggle {
        max-height: 100%;
        opacity: 1;
        transform: translateY(0);
    }

    .sec-Para {
        width: 90%;
    }
    .sec-Btn {
        justify-content: center;
        text-align: center;
        text-wrap: wrap;
    }

    .correct {
        flex-wrap: wrap-reverse;
    }

    .no-Btn {
        display: none;
    }

    #Jasmin,
    #Marianne{
        grid-template-rows: repeat(3, auto);
    }
}


@media only screen and (max-width: 720px) {

    #indika-Element-Wrapper {
        justify-content: center;
        align-items: center;
    }

    #indika-Element-Wrapper .person-Card-Btn {
        align-items: center;
        text-align: center;
    }

    #video-Collaction-One {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 10px;
    }
}



@media only screen and (max-width: 660px) {

    a {
        flex-direction: column;
    }

    p, h3, #address {
        text-align: center;
    }

    .list,
    .list-In-Para {
        list-style: none;
        margin-left: 0;
        text-align: center;
    }

    .btn {
        justify-content: center;
    }

    .methode-gruppe {
        text-align: center;
    }

    #popup-Close-Wrapper {
        justify-content: center;
    }

    #popup-Content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: 
            'ausbildung'
            'bild'
            'fachgebiet'
            'standort'
            'tel'
            'zeit'
        ;
    }

    #partner-PopUp-Bild {
        align-items: center;
    }

    #popup-Standorte-Icon {
        display: none !important;
    }

    #popup-Standorte {
        align-items: center;
    }

    #adressen-Wrapper {
        align-items: center;
    }
}