.hero .image-grid {
	display: none;
	grid-gap: 15px;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
	margin-bottom: 35px;
	grid-auto-flow: dense;
}

.home .hero .image-grid {
	display: grid;
}

.hero .image-grid figure {
	border-radius: 5px;
	box-shadow: 0px 10px 30px rgba(163, 177, 185, 0.4);
}

.hero .image-grid .secondary-image,
.hero .image-grid .tertiary-image {
	height: 160px;
	transform: translateY(15px);
}

.hero .image-grid .primary-image {
	grid-column-start: 2; 
	grid-row: span 2;
}

@media screen and (min-width: 768px) {
	.hero > .container {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	
	.hero .content {
		width: 339px;
	}
	
	.hero .image-grid {
		width: calc(100% - 339px - 35px);
		display: grid;
		order: 1;
		margin: 0;
	}
	
	.hero .image-grid .secondary-image,
	.hero .image-grid .tertiary-image {
		transform: translateY(25px);
	}
}

@media screen and (min-width: 1024px) {
	body:not(.home) .hero .image-grid {
		margin-bottom: -100%;
	}
	
	body:not(.home) .hero + section {
		padding-top: 145px;
	}
	
	body:not(.home) .hero {
		padding-bottom: 70px;
	}
	
	.hero .content {
		width: 432px;
	}
	
	.hero .image-grid {
		width: calc(100% - 432px - 40px);
		grid-gap: 20px;
	}
	
	.hero .image-grid .secondary-image,
	.hero .image-grid .tertiary-image {
		transform: translateY(25px);
		height: 220px;
	}
	
	.hero .content {
		font-size: 14px;
	}
	
	.hero .buttons-container {
		margin-top: 30px;
	}
}

@media screen and (min-width: 1400px) {
	.home .hero:first-of-type {
		padding-bottom: 110px;
	}
	
	.home .hero .image-grid {
		margin-bottom: -100%;
	}
	
	.home .hero + section {
		padding-top: 215px;
	}
	
	body:not(.home) .hero + section {
		padding-top: 180px;
	}
	
	body:not(.home) .hero {
		padding-bottom: 95px;
	}
	
	.hero .content {
		width: calc(100% - 466px - 60px);
	}
	
	.hero .image-grid {
		width: 466px;
		grid-gap: 30px;
	}
	
	.home .hero .content {
		width: 570px;
	}
	
	.home .hero .image-grid {
		width: calc(100% - 570px - 50px);
	}
	
	.home .hero .image-grid .secondary-image,
	.home .hero .image-grid .tertiary-image {
		transform: translateY(30px);
		height: 320px;
	}
	
	.hero .content {
		font-size: 14px;
	}
	
	.hero .buttons-container {
		margin-top: 30px;
	}
}