@media (max-width: 1440px) {
    .static_grid {
        grid-template-columns: 1fr;

        grid-template-rows: auto;
        grid-template-areas:
            'rhdr'
            'ttl'
            'lg_imgs'
            'd'
            'jumpbtns'
            'chdr'
            't'
            'l'
            'r'
            'm'
            'err'
            'resp';
        justify-items: center;
    }

    #mobilebtns {
        display: flex;
        flex-direction: row;
        grid-area: jumpbtns;
    }

    #seemorelessbtns {
        display: flex;
        flex-direction: row;
    }

    .response {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        max-width: 100%;
    }
    
    .resptitle {
        font-size: 30px;
    }

    .respsect h2 {
        font-size: 26px;
    }

    .resprow {
        flex-direction: column;
    }

}