@media only screen and (max-width: 1200px) {
    .leistungen-grid {
        width: 90%;
        margin: 0 auto;
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 800px) {
    nav {
        padding: 0;
        position: relative;
    }

    .nav-inner {
        padding: 10px 5%;
    }

    .nav-items {
        /* display: none; */
        border-top: 2px solid var(--akzent);
        position: absolute;
        left: 0;
        z-index: 999;
        bottom: 100px;
        background-color: var(--dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 10px 5%;
    }

    .nav-items a {
        margin-bottom: 10px;
        margin-left: 0;
        width: fit-content;
    }

    .nav-inner > a {
        z-index: 1000;
    }

    .nav-items a.active::after {
        width: 0%;
    }

    .menu-icon {
        display: inline-block !important;
        z-index: 1000;
    }

    .section-wrapper {
        width: 90%;
    }

    .welcome h2 {
        font-size: 20px;
    }

    .section-header {
        font-size: 32px;
    }

    .hero {
        height: 400px;
    }

    .hero .content p {
        font-size: 24px;
    }

    .praxis,
    .leistungen {
        padding: 40px 0;
    }

    .leistungen-grid,
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .top .inner {
        flex-direction: column;
        align-items: center;
    }

    .top .left {
        width: 80%;
        margin-bottom: 10px;
    }

    .top .left a,
    .footer-title {
        text-align: center;
    }

    .footer-kontakt {
        justify-content: center;
    }

    .welcome {
        padding: 40px 0;
    }
}

@media only screen and (max-width: 600px){
    .leistungen-grid,
    .gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}