.itch_row_of_images {
	display: grid;
	width: 100%;
	gap: 50px;
	grid-template-columns: repeat(4, 1fr);
	@media (max-width: 1400px) {
		gap: 20px;
	}
	@media (max-width: 1024px) {
		grid-template-columns: 1fr 1fr !important;
	}
	img {
		height: 500px;
		object-fit: cover;
		border-radius: 25px;
		box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);'
		@media (max-width: 1024px) {
			height: 350px;
		}
		@media (max-width: 767px) {
			height: 250px;
		}
		&:nth-child(even) {
			transform: translateY(100px);
			@media (max-width: 1400px) {
				transform: translateY(50px);
			}
			@media (max-width: 767px) {
				transform: translateY(0px);
			}
		}
	}
}