* {
	margin: 0;
	padding: 0;
}

html { height: 100%; }

body {
	background-color: #f6f6f6;
	box-sizing: border-box;
	font: 300 16px 'Roboto', sans-serif;
  font-optical-sizing: auto;
	min-height: 100%;
	padding-bottom: 251px !important;
	position: relative;
}

h1, h2 {
	font: 600 40px 'Roboto Condensed', sans-serif;
  margin-bottom: 0.75em;
	text-transform: uppercase;
}

h3 {
	font-size: 20px;
	font-weight: 400;
	margin: 1em 0 0.75em 0;
}

p {
	line-height: 1.5em;
	margin: 1em 0;
}

p:first-of-type { margin-top: 0; }

p:last-of-type { margin-bottom: 0; }

a { transition: 300ms; }

strong { font-weight: 500; }

.button {
	background-color: #fff;
	border-radius: 20px;
	color: #000;
	display: inline-block;
	font-weight: 400;
	line-height: 20px;
	padding: 9px 23px;
	text-decoration: none;
}

.button:hover {
  background-color: #14663b;
  color: #fff;
}

.pull-right {
	float: right;
	margin: 0 0 1em 2em;
}

.pull-left {
	float: left;
	margin: 0 2em 1em 0;
}

/* ==========================================================================
   Header
   ========================================================================== */

.top-wrapper { background-color: #343636; }

.top {
  color: #d5d2d2;
  display: grid;
  font-size: 14px;
  gap: 10px 20px;
  grid-template-columns: 1fr repeat(2, auto);
	margin: 0 auto;
	max-width: 1600px;
	padding: 10px 20px;
}

.top span {
  font-weight: 500;
  margin-right: 5px;
	text-transform: uppercase;
}

.top a {
  color: #d5d2d2;
  text-decoration: none;
}

.header-wrapper { background-color: #fff; }

.header {
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr;
	margin: 0 auto;
	max-width: 1600px;
	padding: 30px 20px;
  place-items: center end;
}

.logo { display: block; }

.logo img { max-width: 100%; }

/* ==========================================================================
   Main Menu
   ========================================================================== */

#menu-main-menu {
  display: flex;
  flex-flow: row wrap;
  gap: 0 10px;
  list-style: none;
}

#menu-main-menu a {
	border-radius: 20px;
	color: #333;
	display: block;
	font-size: 18px;
  font-weight: 400;
	padding: 9px 23px 10px;
	text-decoration: none;
}

#menu-main-menu a:hover,
#menu-main-menu li.current-menu-item a {
  background-color: #018e3e;
  color: #fff;
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

#mainMenu {
	background-color: #232525;
	height: 100vh;
	overflow-x: hidden;
	position: fixed;
		top: 0;
		right: 0;
	transition: 1s;
	width: 0;
	z-index: 998;
}

#mainMenu.show { width: 100%; }

#mainMenu ul { list-style: none; }

.mobile-menu { margin: 30px; }

.mobile-menu a {
	color: #fff;
	display: block;
	font-size: 18px;
	margin: 20px 0;
	text-decoration: none;
	white-space: nowrap;
}

/* ==========================================================================
		Mobile Menu Toggle
		========================================================================== */
	
#openMenu {
	background-color: #14663b;
	display: none;
	padding: 20px 15px;
	position: fixed;
		top: 0;
		right: 0;
	transition: .5s;
	width: 41px;
	z-index: 999;
}

#openMenu.open {
	background-color: #232525;
	color: #fff;
}

#menuTitle {
	position: relative;
	text-align: center;
	transition: .5s;
}
	
/* ==========================================================================
		Mobile Menu Icon Transition Effect
		========================================================================== */
	
#btn {
	cursor: pointer;
	display: block;
	height: 30px;
	position: relative;
	transition: .5s;
	z-index: 200;
}

#btn .icon,
#btn .icon::before,
#btn .icon::after {
	background: #fff;
	content: '';
	display: block;
	height: 2px;
	position: absolute;
	transition: top ease .5s .5s, transform ease .5s;
	width: 41px;
}

#btn .icon {
	top: 14px;
	left: 2px;
}

#btn .icon::before { top: -8px; }

#btn .icon::after { top: 8px; }

#btn.active .icon { background: transparent; }

#btn.active .icon::before { transform: rotate(45deg); }

#btn.active .icon::after { transform: rotate(-45deg); }

#btn.active .icon::before,
#btn.active .icon::after {
	background-color: #fff;
	top: 0;
	transition: top ease .5s, transform ease .5s .5s;
}

/* ==========================================================================
   Banner
   ========================================================================== */

.banner img { max-width: 100%; }

/* ==========================================================================
   Section 1
   ========================================================================== */

.section1 {
  margin: 80px auto;
  max-width: 1600px;
  padding: 0 20px;
}

.section1 .grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.section1 .grid-item {
  align-items: center;
  aspect-ratio: 4 / 3;
	background: url("../images/directional-drilling.jpg") center center no-repeat;
	background-size: cover;
	color: #fff;
  display: flex;
  justify-content: center;
	text-align: center;
}

.section1 .grid-item:first-child { background-image: url("../images/hydro-vac-excavating.jpg"); }

.section1 .grid-item:last-child { background-image: url("../images/trenching.jpg"); }

/* ==========================================================================
   Frontpage
   ========================================================================== */

.frontpage {
	color: #333;
  display: grid;
  gap: 30px 60px;
  grid-template-columns: 5fr 3fr;
	margin: 80px auto;
	max-width: 1600px;
	padding: 0 20px;
}

.box {
	background-color: #14663b;
	color: #fff;
	box-sizing: border-box;
	padding: 30px;
}

.box h2 { margin-bottom: 0.5em; }

.box .button { margin-top: 0.5em; }

.box .button:hover {
	background-color: #fff;
	color: #000;
}

/* ==========================================================================
   Content
   ========================================================================== */

.content {
	color: #333;
	margin: 80px auto;
	max-width: 1600px;
	overflow: hidden;
	padding: 0 20px;
}

.content a { color: #14663b; }

.content ul {
	line-height: 1.5em;
	margin: 1em 0;
	overflow: hidden;
}

.content li { margin-left: 1em; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer-wrapper {
	background-color: #343636;
	position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
}

.footer {
  color: #d5d2d2;
	display: grid;
	gap: 30px 20px;
	grid-template-columns: auto 1fr;
	grid-template-rows: 1fr auto;
	justify-items: end;
	margin: 0 auto;
	max-width: 1600px;
	padding: 40px 20px;
}


.footer a { color: #d5d2d2; }

.footer .logo { margin-bottom: 20px; }

.footer .branding { grid-row: 1 / span 2; }

#menu-bottom-menu {
	display: flex;
  flex-flow: row wrap;
	gap: 20px;
	list-style: none;
}

.bottom-menu a {
	color: #fff;
  font-weight: 400;
	text-decoration: none;
}

.bottom-menu a:hover { color: #018e3e; }

/* ==========================================================================
   Mobile
   ========================================================================== */

@media only screen  
and (max-width : 1399px) {

.header {
	grid-template-columns: auto;
	padding-bottom: 24px;
	place-items: center;
}

}

@media only screen  
and (max-width : 1199px) {

body { padding-bottom: 0 !important; }

.footer-wrapper { position: relative; }

.footer {
	grid-template-columns: auto;
	place-items: center;
	text-align: center;
}

#menu-bottom-menu { justify-content: center; }

.pull-right,
.pull-left {
	float: none;
	margin: 2em 0;
}

}

@media only screen  
and (max-width : 1023px) {

h1, h2 { font-size: 32px; }

.top {
  grid-template-columns: auto;
  justify-items: center;
}

#menu-main-menu a {
  font-size: 16px;
  padding: 9px 15px 10px;
}

.section1 .grid { gap: 20px; }

.frontpage { gap: 30px 40px; }

}

@media only screen  
and (max-width : 767px) {

.main-menu { display: none; }

#openMenu { display: block; }

.section1,
.content,
.frontpage { margin: 60px 0; }

.frontpage { grid-template-columns: auto; }

}

@media only screen  
and (max-width : 479px) {

.section1 .grid { grid-template-columns: auto; }

}