@media (max-width: 767px) {
    .what .items,
    .works .items {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .works{
        margin: 1rem;
    }

    footer .footer-top{
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    footer{
        padding: 2rem 0;
        text-align: center;
    }

    footer .brand::after{
        margin: auto;
        margin-top: 1rem;
    }

    footer .links{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    footer .links>div{
        align-items: center;
    }

    footer .links h3::after{
        left: 50%;
        transform: translateX(-50%);
    }

    footer .footer-bottom{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}