
html, body {
	margin: 0;
	padding: 0;
}

header {
		background-color: white;
		display: block;
}

.header-logo {
		height: 300px;
		width: auto;
		display: block;
		margin-left: auto;
		margin-right: auto;
}

.custom-line {
	border: none;
	height: 5px;
	background-color: #356f19;
	margin: 40px 0;
	width: 100%;
}

.g-container body {
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #0a0a0a;
	overflow: hidden;
}

.dropdown {
	position: relative;
}

.dropbtn {
	background-color: #356f19;
	color: white;
	padding: 16px;
	font-size: 16px;
	border: none;
	cursor: pointer;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #356f19;
	min-width: 200px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
	color: white;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdown-content a:hover {
	background-color: #6d4500;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown:hover .dropbtn {
	background-color: #6d4500;
}

.george-section {
	background-image: url('images/forest-stock-photo.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.george {
	color: white;
	font-family: Trebuchet MS;
	text-align: center;
	font-size: 60px;
	-webkit-text-stroke: 2px black;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #356f19;
  display: flex;
  width: 100%;
  font-family: verdana;
}

ul li {
	flex: 1;
	text-align: center;
}

ul li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover {
	color: white;
  background-color: #6d4500;
}

.heading {
	Color: #6d4500;
	font-family: Trebuchet MS;
	text-align: center;
	font-size: 60px;
}

h2 {
	Color: #356f19;
	font-family: Trebuchet MS;
	text-align: left;
	font-size: 40px;
	margin: 30px;
}
	

p {
	max-width: 100ch;
	margin: 0 auto;
	padding: 0 20px;
	color: #595959;
	text-align: center;
	font-family: verdana;
	font-size: 22px;
}

.wrap-image {
	float: left;
	margin-right: 20px;
	margin-bottom: 10px;
	width: 200px;
	height: auto;
}

.clear-layout {
	clear: both;
}

.intro {
	display: flow-root;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}
	
.bold {
	max-width: 100ch;
	margin: 0 auto;
	padding: 0 20px;
	color: #595959;
	text-align: center;
	font-weight: bold;
	font-family: verdana;
}
	


.Placeholder {
	margin-left: auto;
	margin-right: auto;
	height: 500px;
	width: auto;
	display: block;
	max-width: 500px;
	border: solid #6d4500;
	border-radius: 20px
	
}

.diagram {
	margin-left: auto;
	margin-right: auto;
	height: 800px;
	width: auto;
	display: block;
	max-width: 500px;
	border: none;
	border-radius: 20px
	
}

.side-by-side {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	max-width: 1000px;
	margin: 40px auto;
	padding: 0 20px;
}

.icons {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	max-width: 1000px;
	margin: 40px auto;
	padding: 0 20px;
	
}

.text-content {
	flex: 1;
	font-family: Trebuchet MS;
	color: #6d4500;
	font-size: 45;
	
}

.icon-text {
	flex: 1;
	font-family: Trebuchet MS;
	color: #6d4500;
	font-size: 45;
	vertical-align: middle;
	
}

.pics {
	flex: 1;
	max-width: 200px;
	width: 100%;
	height: auto;
	border: none;
}

.services-photo {
	flex: 1;
	max-width: 350px;
	width: 100%;
	height: auto;
	border: solid #6d4500;
	border-radius: 10px;
}

@media (max-width: 768px;) {
	.side-by-side {
		flex-direction: column;
		text-align: center;
	}
}

footer {
	background-color: #356f19;
	color: white;
}

.footer-menu {
	color: white;
}

form {
	max-width: 500px;
	margin: 40px auto;
	padding: 30px;
	background-color: #fcfcfc;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	
}

form label {
	display: block;
	margin-bottom: 8px;
	font-family: Trebuchet MS;
	font-weight: bold;
	color: #356f19
}

form input[type="email"],
form textarea {
	display: block;
	width: 100%;
	padding: 12px;
	margin-bottom: 24px;
	border: 1px solid #356f19;
	border-radius: 4px;
	box-sizing: border-box;
	font-family: inherit;
	font-size: 16px;
}

form input:focus,
form textarea:focus {
	border-color: #356f19;
	outline: none;
}

form button[type="submit"] {
	display:block;
	width: 100%;
	background-color: #356f19;
	color: white;
	padding: 14px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.2s ease;
}

form button[type="submit"]:hover {
	background-color: #6d4500;
}

.btn-link {
	display: inline-block;
	padding: 10px 20px;
	background-color: #356f19;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	text-align: center;
}

.btn-link:hover {
	background-color: #6d4500;
}

.button {
	text-align: center;
	width: 100%;
}
	
.image-gallery {
	display: flex;
	gap: 20px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.gallery-card {
	flex: 1;
	text-align: center;
	border: solid #6d4500;
	border-radius: 10px;
}

.gallery-card img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}

.gallery-card h3 {
	margin-top: 12px;
	font-family: verdana;
	color: #356f19;
}

.gallery-card p {
	margin-top: 5px;
	font-family: verdana;
	color: #595959;
}

.service-list {
	Background-color: none;
	margin: 50px;
	padding: 10px;
	font-family: verdana;
	font-size: 25px;
}

.service-list dt {
	Background-color: none;
	color: White;
	font-family: verdana;
	font-size: 25px;
}

.service-list dd {
	Background-color: none;
	color: White;
	font-family: verdana;
	font-size: 25px;
}

.list {
	background-color: #595959;
}

.serve{
	color: white;
	margin: 20px;
	padding: 10px;
	font-family:Trebuchet MS;
}


.g-container {
	position: relative;
	width: 1000px;
	height: 600px;
	margin: 40px auto;
	display: grid;
	place-items: center;
}

.g-spin {
	position: relative;
	width: 100%;
	height: 100%;
}

.g-spin:hover {
	animation-play-state: paused;
}

.g-spin span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.g-spin span img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	opacity: 0;
	animation: imageSwitch 16s infinite;
}

.g-spin span:nth-child(1) img { animation-delay: 0s; }
.g-spin span:nth-child(2) img { animation-delay: 4s; }
.g-spin span:nth-child(3) img { animation-delay: 8s; }
.g-spin span:nth-child(4) img { animation-delay: 12s; }

.g-spin span img:hover {
	transform: translateY(-15px) scale(1.05);
}

@keyframes imageSwitch {
	0% {
		opacity: 0;
	}
	5% {
		opacity: 1;
	}
	25% {
		opacity: 1;
	}
	30% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}


