html {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

h2 {
  color: darkgreen;
}

.sub-head {
  border-bottom: 2px solid darkolivegreen;
  padding: 0.5rem 1rem 0.5rem 0;
  margin-bottom: 2rem;
}

h4 {
  border-bottom: 2px solid #bdcbc4;
  display: inline-block;
  padding: 0.2rem 4rem 0.2rem 0;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5em;
}

body {
  border-top: 3px solid green;
  font-family: Raleway, sans-serif;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .container {
    max-width: 90%;
    margin: 0 auto;
  }
}

.content > ul {
  line-height: 2;
  margin-bottom: 2em;
}

.heading-2 {
  background: green;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 2rem;
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin-top: 0;
}

table {
  border-collapse: collapse;
  margin-bottom: 3em;
}
table th {
  font-weight: bold;
  background: #f6f6f6;
}
table td, table th {
  text-align: left;
  padding: 0.6em;
  border: 1px solid lightgrey;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-5 {
  margin-bottom: 5em;
}

.float-right {
  float: right;
  margin-left: 20px;
  max-width: 40%;
}

.btn {
  display: inline-block;
  padding: 0.5em 1em;
  background: green;
  color: #fff;
  font-weight: bold;
}
.btn:hover {
  background: darkolivegreen;
}

form label {
  display: block;
  width: 100%;
}
form .faux-label {
  display: block;
  margin-bottom: 0.5rem;
}

input, textarea {
  border: 2px solid #ccc;
  border-radius: 3px;
  padding: 10px;
  min-width: 400px;
  font: inherit;
}

button {
  background-color: darkolivegreen;
  border: 2px solid darkolivegreen;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  padding: 0.5rem 1rem;
}
button:hover {
  background-color: olivedrab;
}

.form-feedback {
  padding: 20px;
  background: #bdcbc4;
  border-bottom: 4px solid olivedrab;
  margin-bottom: 30px;
}
.form-feedback h3 {
  margin-bottom: 0;
}

@media (max-width: 770px) {
  .hide-small {
    display: none;
  }
}
@media (min-width: 771px) {
  .hide-large {
    display: none;
  }
}
.header {
  background-color: #fff;
  position: sticky;
}

.header a {
  text-decoration: none;
}

@media (min-width: 771px) {
  .header__layout {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 770px) {
  .header__layout {
    padding-top: 0;
  }
}
.header__logo {
  height: auto;
  width: 200px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.header__contact {
  background: green;
  color: #fff;
}
@media (min-width: 771px) {
  .header__contact {
    position: absolute;
    padding: 6px 30px 10px 30px;
    border-radius: 0 0 5px 5px;
    top: 0;
    right: 0;
  }
  .header__contact span:first-child {
    display: inline-block;
    margin-right: 30px;
  }
}
@media (max-width: 770px) {
  .header__contact {
    width: 100%;
    padding: 20px;
  }
  .header__contact span {
    display: block;
    margin-bottom: 10px;
  }
}
.header__contact a {
  color: #fff;
}
.header__contact a:hover {
  text-decoration: underline;
}
.header__contact i {
  margin-right: 8px;
}

@media (min-width: 771px) {
  .header__nav {
    margin-top: auto;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    list-style-type: none;
  }
  .header__nav > li {
    width: 25%;
    text-align: right;
    padding: 0;
  }
  .header__nav > li > a {
    display: inline-block;
    padding: 20px 15px;
    text-decoration: none;
    position: relative;
  }
  .header__nav > li > a.header__nav-item--active:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid green;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translatex(-50%);
  }
  .header__nav > li > a:hover:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid green;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translatex(-50%);
  }
  .header__nav li > ul {
    display: none;
    position: absolute;
    background: green;
    list-style-type: none;
    padding: 0;
  }
  .header__nav li > ul li {
    text-align: left;
  }
  .header__nav li:hover > ul {
    display: block;
  }
  .header__nav li:hover > ul a {
    color: #fff;
    display: block;
    padding: 10px 20px;
    border-bottom: 2px solid #fff;
  }
  .header__nav li:hover > ul a:hover {
    background-color: darkolivegreen;
  }
}
.header__nav-item {
  padding: 10px 15px;
  color: grey;
  font-weight: bold;
}

.header__nav-item--active {
  color: green;
}

.header__mobile-nav-button {
  width: 100%;
  border-radius: 0;
}

@media (max-width: 770px) {
  .header__nav {
    margin-top: 1em;
    margin-bottom: 0;
    padding: 0;
    display: none;
    list-style-type: none;
  }
  .header__nav a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid grey;
  }
  .header__nav > li {
    width: 100%;
  }
  .header__nav li > ul {
    display: block;
    list-style-type: none;
    background: green;
  }
  .header__nav li > ul li a {
    color: white;
  }
  .header__nav.open {
    display: block !important;
  }
}
.main-banner {
  background: darkgreen url(/assets/images/homepage_compressed.jpg) no-repeat;
  background-size: cover;
  padding: 3em 0 5em 0;
  border-top: 5px solid green;
  border-bottom: 5px solid green;
}

.main-banner__content > * {
  background: rgba(255, 255, 255, 0.8);
  padding: 15px;
  line-height: 1.6;
}
.main-banner__content h1 {
  font-weight: 900;
  font-size: 2rem;
  display: inline-block;
  border-left: 20px solid green;
}
.main-banner__content p {
  font-size: 1.2rem;
  max-width: 70%;
  border-left: 20px solid green;
}
.main-banner__content blockquote {
  border-left: 40px solid green;
  margin: 0 0 1.5em;
  min-width: 400px;
  width: 50%;
}

.banner {
  background: darkgreen url(/assets/images/about_compressed.jpg) no-repeat;
  background-size: cover;
  padding: 3em 0 5em 0;
  border-top: 5px solid green;
  border-bottom: 5px solid green;
  margin-bottom: 2em;
}
.banner .banner__title {
  background: rgba(255, 255, 255, 0.8);
  border-left: 20px solid green;
  display: inline-block;
  padding: 15px;
  line-height: 1.6;
}

.banner__services {
  background: darkgreen url(/assets/images/services_compressed.jpg) no-repeat;
}

.banner__faqs {
  background: darkgreen url(/assets/images/faqs_compressed.jpg) no-repeat;
}

.banner__gallery {
  background: darkgreen url(/assets/images/gallery/Gallery1_compressed.jpg) no-repeat center center;
}

.banner__hazards {
  background: darkgreen url(/assets/images/Hazard_compressed_banner.jpg) no-repeat center center;
}

.banner__development {
  background: darkgreen url(/assets/images/development_compressed.jpg) no-repeat center center;
}

.banner__veteran {
  background: darkgreen url(/assets/images/Veteran_compressed.jpg) no-repeat center center;
  background-size: cover;
}

.banner__woodland {
  background: darkgreen url(/assets/images/woodland_compressed_banner.jpeg) no-repeat center center;
  background-size: cover;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.services__block {
  display: flex;
  flex-direction: column;
  margin-bottom: 5%;
}
@media (min-width: 769px) {
  .services__block {
    width: 32%;
    margin-bottom: 2%;
  }
}

.services__block {
  background: #dee3cf;
}
.services__block p:last-of-type {
  margin: auto 0 0 0;
}

.services__header {
  border-bottom: 3px solid green;
  padding-bottom: 0.7em;
  border-top: 3px solid green;
  padding-top: 0.7em;
}

.services__content {
  padding: 1rem;
}

.services__block:nth-child(odd) {
  background: #e5e8dc;
}

.services__link {
  margin-top: auto;
  background: green;
  font-weight: 900;
  font-size: 1.3rem;
}
.services__link a {
  color: #fff;
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 1rem;
}
.services__link a:hover {
  background: #5e6e58;
}

.content-blocks {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4em;
}

.content-block {
  background: #e8ede9;
  padding: 2em;
  margin-bottom: 2em;
  font-size: 1.1em;
}
.content-block:nth-child(odd) {
  background: #ebf0ec;
  margin-left: 3em;
}
.content-block:nth-child(even) {
  margin-right: 3em;
}
.content-block h3 {
  font-size: 1.6em;
  border-bottom: 2px solid #b7c7bb;
  padding-bottom: 0.8em;
}

.content-highlight {
  border: 4px solid #b2bfb5;
  padding: 2em;
  margin-bottom: 4em;
  font-size: 1.2em;
  margin-right: 2em;
  line-height: 1.5;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.gallery__link {
  display: block;
  width: 32%;
  margin-bottom: 4%;
}

.gallery__img {
  display: block;
  width: 100%;
}

.footer {
  background: #5e6e58;
  color: #fff;
  padding: 1px;
  margin-top: 20px;
  padding: 2rem 0 0 0;
  font-size: 20px;
}
.footer a {
  color: #fff;
}

@media (min-width: 771px) {
  .footer__layout {
    display: flex;
    justify-content: space-between;
  }
  .footer__layout > div {
    width: 49%;
  }
}

.footer__linkedin, .footer__contact {
  padding: 2em 0;
}

.footer__logos {
  padding: 1em 0;
  background: #fff;
}
.footer__logos .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logos .footer__logos-image {
  padding: 0 20px;
}
.footer__logos .footer__logos-image:first-child {
  width: 50%;
}
.footer__logos .footer__logos-image:nth-child(2) {
  width: 50%;
}
.footer__logos .footer__logos-image:nth-child(3) {
  width: 55%;
}
.footer__logos .footer__logos-image:nth-child(4) {
  width: 45%;
}
.footer__logos .footer__logos-image img {
  width: 100%;
  align-self: center;
}
@media (min-width: 769px) {
  .footer__logos .container {
    flex-wrap: nowrap;
  }
  .footer__logos .footer__logos-image {
    padding: 0 20px;
  }
  .footer__logos .footer__logos-image:first-child {
    width: 30%;
  }
  .footer__logos .footer__logos-image:nth-child(2) {
    width: 50%;
  }
  .footer__logos .footer__logos-image:nth-child(3) {
    width: 60%;
  }
  .footer__logos .footer__logos-image:nth-child(4) {
    width: 50%;
  }
  .footer__logos .footer__logos-image img {
    width: 100%;
    align-self: center;
  }
}

.footer i {
  margin-right: 10px;
}

.footer__company-info {
  background: #475c4d;
  padding: 20px 0;
  font-size: 14px;
}
.footer__company-info p {
  margin-bottom: 0.5em;
}

/*# sourceMappingURL=main.css.map */
