.grid{
	display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

@media screen and (min-width: 1200px) and (max-width: 1499px) {
	
}

@media screen and (min-width: 960px) and (max-width: 1199px) {

}

@media screen and (min-width: 768px) and (max-width: 959px) {
	.grid{
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (min-width: 480px) and (max-width: 767px){
	.grid{
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 479px){
	.grid{
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}