body {
	display: grid;
	width: 100%;
	grid-template-rows: 60px 1fr auto;
	grid-template-columns: 1fr;
	text-align: center;
	justify-content: center;
	font-family: "Roboto";
	background-color: rgb(255,255,255);
}

nav {
	grid-area: 1 / 1 / 2 / 2;
	z-index: 5;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	background-color: rgb(255,102,0);
}











#background {
	grid-area: 2/ 1 / 3 / 2;
	overflow: hidden;
	background-image: url("Images/sorrentohouse.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 100vh;
	width: auto;
}










.servicesContainer {
	grid-area: 2/ 1 / 3 / 2;
	width: 100%;
	display: flex;
	align-content: flex-start;
	justify-content: space-around;
	flex-wrap: wrap;
	background-color: rgba(255, 255, 255, 0.9);
}

.heading {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding-top: 10px;
}

.heading h3 {
	font-weight: 300;
	padding-left: 15px;
	padding-right: 15px;
}

.services {
	width: 400px;
	margin-top: 30px;
	overflow: hidden;
	margin-left: 20px;
	margin-right: 20px;
}

.services img {
	height: 300px;
	width: auto;
	margin-bottom: 15px;
}

#backgroundImage_1 {
	height: 300px;
	width: auto;
	margin-bottom: 15px;
	overflow: hidden;
	background-image: url("Images/JellyBean2.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

#backgroundImage_2 {
	height: 300px;
	width: auto;
	margin-bottom: 15px;
	overflow: hidden;
	background-image: url("Images/NewStreet1.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

#backgroundImage_3 {
	height: 300px;
	width: auto;
	margin-bottom: 15px;
	overflow: hidden;
	background-image: url("Images/Costco-Ringwood_001A.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

#backgroundImage_4 {
	height: 300px;
	width: auto;
	margin-bottom: 15px;
	overflow: hidden;
	background-image: url("Images/inspection.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}












footer {
	grid-area: 3 / 1 / 4 / 2;
	background-color: rgb(255,102,0);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	max-width: 100vw;
}










@media only screen and (max-width: 900px) {
	nav {
		align-items: center;
	}

	.navLogo {
		padding-left: 25px;
	}
}




@media only screen and (max-width: 900px) and (orientation: landscape) {

}






@media only screen and (max-width: 720px) and (orientation: portrait) {

}




@media only screen and (max-width: 480px) {
	#backgroundImage_1, #backgroundImage_2, #backgroundImage_3, #backgroundImage_4 {
		height: 320px;
		width: auto;
		margin-bottom: 15px;
		overflow: hidden;
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
	}

	.services {
		width: 100vw;
		margin-top: 30px;
		margin-left: 0;
		margin-right: 0;
		overflow: hidden;
	}

	.services h1, .services h2, .services h3, .services h4, .services p {
		padding-left: 20px;
		padding-right: 20px;
	}

	.services ul {
		padding-left: 40px;
	}

	.services li {
		padding-left: 10px;
		padding-right: 20px;
	}

	.navLogo {
		padding-left: 15px;
	}
}




@media only screen and (max-width: 360px) {
	#backgroundImage_1, #backgroundImage_2, #backgroundImage_3, #backgroundImage_4 {
		height: 240px;
		width: auto;
		margin-bottom: 15px;
		overflow: hidden;
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
	}

	.services h1 {
		font-size: 36px;
	}
}
