p.intro {
	margin: 12px 0 0;
	line-height: 24px;
}

hr {
	height: 3px;
	width: 70px;
	text-align: center;
	position: relative;
	background: #6aaf08;
	margin: 0 auto;
	margin-bottom: 20px;
	border: 0;
}


/* Hero Blurb */
#heroblurbimage {
	background-image: url(../Assets/JohnDeereTrailer.jpg);
	background-size: cover;
	height: 100vh;
}

.heroblurbinner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 36px;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(112,173,71,0.4) 50%, #131516 100%);
	text-align: center;
}

.herotitle {
	font-size: 64px;
	font-weight: 900;
	line-height: 48px;
	text-shadow: 4px 4px 5px #131516;
}

.herodescription {
	font-size: 24px;
	font-weight: 500;
	line-height: 32px;
	text-shadow: 4px 4px 5px #131516;
}

.herocalloutbuttons {
	display: flex;
	flex-wrap: nowrap;
	gap: 18px;
}


/* About Us */
#aboutus {
	padding: 80px 0 120px 0;
	text-align: center;
	background: linear-gradient(rgba(0,0,0,0.1) 0%, 15%, #131516, 96%, #5f9d07);
	display: flex;
	align-items: center;
	justify-content: center;
}

.aboutusinner {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.aboutustitle {
	color: #6aaf08;
	font-size: 48px;
	font-weight: 700;
}

.aboutushr {
	width: 100px;
	margin-bottom: 0;
}

.aboutusdescription {
	font-size: 16px;
	line-height: 24px;
	width: 70%;
	margin: 5px auto;
}

#aboutusbutton {
	align-self: center;
}


/* Services Section */
#services {
	padding: 60px;
	background: linear-gradient(#5f9d07 25px, #5f9d07, 90%, #f6f6f6);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.servicestitle {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

.servicestitle h2 {
	font-size: 50px;
	color: #fff;
	font-weight: 700;
}

#services hr {
	margin-bottom: 5px;
	background: rgba(255,255,255,0.6);
}

#services .servicestitle p {
	font-size: 1.2rem;
	max-width: unset;
}

.servicesinner {
	padding: 20px 40px;
	display: flex;
	flex-wrap: nowrap;
}

.servicescolumn {
	display: flex;
	flex-direction: column;
	max-width: 25%;
	margin: 0 auto;
}

#services .servicemedia {
	margin: 0 auto;
}

#services .servicemedia img {
	width: 104px;
	height: 104px;
	margin: 10px;
	border-radius: 50%;
	border: 10px solid #5f9d07;
	box-shadow: 0px 0px 12px hsla(0, 0%, 0%, 0.5);
	padding: 0.75rem;
	background-color: #ffffffa8;
}

#services .servicedescription {
	text-align: center;
	padding: 0 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#services h3 {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	padding: 15px 0;
}

#services p {
	color: rgba(255,255,255,0.9);
	font-size: 1rem;
	max-width: 300px;
}

#services .calloutbutton {
	margin-top: 40px;
	padding: 16px 32px;
}


/* Gallery Section */
#gallery {
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #f6f6f6;
	background: linear-gradient(to bottom, #f6f6f6 0%, #333 100%);
}

.gallerytitle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.gallerytitle h2 {
	color: #131516;
	font-size: 42px;
	font-weight: 700;
}

.gallerytitle hr {
	margin: 12px 0;
}

.gallerytitle p {
	color: #333;
	font-size: 18px;
	padding-bottom: 16px;
}

.gallerycategories {
	font-size: 18px;
	text-align: center;
	padding: 20px;
}

.gallerycategories a {
	padding: 10px;
}

.galleryitems {
	display: flex;
	flex-wrap: nowrap;
	gap: 16px;
	justify-content: center;
	align-items: center;
	padding: 16px;
}

.galleryitem {
	width: 33%;
	position: relative;
}

.galleryitem img {
	width: 100%;
	height: auto;
}

.galleryoverlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: 0.25s ease-in-out;
	background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, #131516 100%);
}

.galleryitem:hover .galleryoverlay,
.galleryitem:active .galleryoverlay {
	opacity: 1;
}

.textoverlay {
	color: #fff;
	font-size: 24px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}



/* Testimonials Section */
#testimonials {
	background: linear-gradient(to bottom, #333 0%, rgba(0,0,0,0.6) 100%);
	background-size: cover;
}

.testimonialsinner {
	text-align: center;
	padding: 60px 0;
}

#testimonials h2 {
	color: #fff;
}

#testimonials hr {
	background: rgba(255,255,255,0.6);
}

#testimonials p {
	font-size: 16px;
	font-weight: 400;
	line-height: 32px;
}

#testimonialitems {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 32px;
	padding: 24px 128px;
}

.testimonialitem {
	height: 250px;
	width: 250px;
	padding: 16px;
	background: linear-gradient(to bottom, #222 0%, rgba(0,0,0,0.6) 100%);
	box-shadow: 0 0 12px #555;
	display: flex;
	justify-content: center;
	align-items: center;
}

.testimonialitem:hover,
.testimonialitem:active {
	transform: translateY(-10px);
	box-shadow: 0 0 12px #5555558c;
	transition: 0.5s ease-out;
}

.testimonialdescription {
	color: #6aaf08;
}

.testimonialitem:hover .testimonialdescription,
.testimonialitem:active .testimonialdescription {
	color: #5f9d07;
}


/* Mobile */
@media (max-width: 875px) {
	.herotitle {
		line-height: 64px;
		font-size: 52px;
	}

	.herocalloutbuttons {
		flex-direction: column;
	}
	
	.aboutusdescription {
		width: 90%;
	}

	.servicestitle {
		text-align: center;
	}

	.servicesinner {
		flex-direction: column;
		padding: 20px 0;
	}

	.servicescolumn {
		max-width: none;
		padding: 16px 0;
		width: 100%;
	}

	.servicedescription {
		padding: 0;
		width: 100%;
	}

	#services p {
		font-size: 1.2rem;
		max-width: unset;
		width: 100%;
	}

	#gallery {
		text-align: center;
		padding: 60px 10px;
	}

	.galleryitems {
		flex-direction: column;
	}

	.galleryitem {
		width: 100%;
	}

	#testimonialitems {
		flex-direction: column;
	}
}