.text-block .copy{
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	gap:2rem;
	justify-content: center;
}
.text-block .copy.quarter{
	grid-column: 5 / span 4;
}
.text-block .copy.half{
	grid-column: 4 / span 6;
}
.home .text-block .copy.half{
	max-width: 514px;
	margin:0 auto;
}
.text-block .copy.two-thirds{
	grid-column: 3 / span 8;
}
@media only screen and (max-width: 1440px) {
  .text-block .copy.quarter{
	  grid-column: 4 / span 6;
  }
}
@media only screen and (max-width: 900px) {
  .text-block .copy.quarter,
  .text-block .copy.two-thirds,
  .text-block .copy.half{
	  grid-column: 1 / span 6;
  }
}