@media(max-width:992px) {
    nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: white;
        transition: .35s;
        z-index: 1000;
        padding-top: 120px;

    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        margin-top: 120px;
        align-items: center;
    }

    .btn-nav {
        display: none;
    }

    #menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
    }

    #menu-btn span {
        width: 28px;
        height: 3px;
        background: var(--primary);
        border-radius: 5px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        text-align: center;
    }

    .about-list {
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: 360px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-about img {
        margin: auto auto 25px;
    }

    .footer-contact p {
        justify-content: center;
    }
}

@media(max-width:768px) {
    .cta {
        padding: 80px 0;
    }
}

@media(max-width:600px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item.tall,
    .gallery-item.wide {
        height: 260px;
        grid-column: auto;
    }
}

@media(max-width:576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
