@media screen and (min-width: 1024px) {
    .filtres form {
        grid-template-rows: repeat(4, 1fr);
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
        "a b"
        "c d"
		"e f"
        "g h"
		"i j";
    }
}