Downgrade from 4 to 2 in 1 row
hi how can i under 1200px that services section it so that there are 2 boxes in 1 row
https://codepen.io/zopdry/pen/xxjvobW
https://codepen.io/zopdry/pen/xxjvobW

}.services-grid.services-grid {
--repeat-num: 1;
display: grid;
grid-template-columns:
repeat(var(--repeat-num), 1fr);
padding: 1rem;
}@media screen and (min-width: 35rem) {
.services-grid {
--repeat-num: 2;
}
}
@media screen and (min-width: 75rem) {
.services-grid {
--repeat-num: 4;
}
}