/*
Theme Name: Timber Ridge
Author: Sparkfire Branding
Description: Custom theme for my website.
Version: 1.0
*/
/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html, body {
  width: 100%;
  min-height: 100vh;
  font-family: Helvetica, sans-serif;
  font-weight: normal;
  line-height: 2.06;
  font-size: 17px;
  color: #4a4a4a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; /* For Firefox on macOS */
  text-rendering: optimizeLegibility; /* Can also help with rendering quality */
}
html, body {
  overflow-x: clip;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
/******end reset styles******/
/* Grid System */
.container {
  width: 95%;
  max-width: 1340px;
  margin: 0 auto;
  /*padding: 0 40px;*/
}
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
}
.row.align-top {
  align-items: start;
}
.row.equal-height {
  align-items: stretch;
}
.row .align-right * {
  margin-left: auto;
  margin-right: 0;
}
/* Column Classes */
[class*="col-"] {
  padding: 0 15px;
  flex: 0 0 auto;
}
.col-1 {
  width: 8.3333%;
}
.col-2 {
  width: 16.6667%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.3333%;
}
.col-5 {
  width: 41.6667%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.3333%;
}
.col-8 {
  width: 66.6667%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.3333%;
}
.col-11 {
  width: 91.6667%;
}
.col-12 {
  width: 100%;
}
@media (max-width: 980px) {
  .col-lg-1 {
    width: 8.3333%;
  }
  .col-lg-2 {
    width: 16.6667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333%;
  }
  .col-lg-5 {
    width: 41.6667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333%;
  }
  .col-lg-8 {
    width: 66.6667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333%;
  }
  .col-lg-11 {
    width: 91.6667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .row .col-lg-12 {
    margin-bottom: 30px;
  }
  .row .col-lg-12:last-child, #main-nav .col-lg-12 {
    margin-bottom: 0;
  }
  .no-mob {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .col-sm-1 {
    width: 8.3333%;
  }
  .col-sm-2 {
    width: 16.6667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333%;
  }
  .col-sm-5 {
    width: 41.6667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333%;
  }
  .col-sm-8 {
    width: 66.6667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333%;
  }
  .col-sm-11 {
    width: 91.6667%;
  }
  .col-sm-12 {
    width: 100%;
  }
}
/* End Grid System */
/* Utility Classes */
.centered {
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.fs-20 {
  font-size: 20px;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-55 {
  margin-bottom: 55px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-70 {
  margin-bottom: 70px;
}
.site-wrapper .container.mt-150 {
  margin-top: 150px;
}
.site-wrapper .container.mt-200 {
  margin-top: 200px;
}
.white {
  color: #fff;
}
.dk-green {
  color: #41693C;
}
.dk-green-bg {
  background-color: #41693C;
}
.yellow {
  color: #FFB448;
}
.lt-green {
  color: #B5BC76;
}
.lt-green-bg {
  background-color: #B5BC76;
}
.blue {
  color: #28454B;
}
.blue-bg {
  background-color: #28454B;
}
.sand {
  color: #FAF8F3;
}
.mw-300 {
  max-width: 300px;
}
.mw-320 {
  max-width: 320px;
}
.mw-340 {
  max-width: 340px;
}
.mw-350 {
  max-width: 350px;
}
.mw-390 {
  max-width: 390px;
}
.mw-1000{
    max-width: 1000px;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
/* START Nav */
.nav-logo {
  display: inline-block;
}
.nav-logo img {
  padding: 40px 0 24px;
  transition: width 500ms ease-in, padding 500ms ease-in;
}
#main-nav {
  background-color: transparent;
  z-index: 5;
  position: fixed;
  top: 0;
  width: 100%;
  transition: background-color 500ms ease-in;
}
#main-nav.filled {
  background-color: rgb(65, 105, 60);
}
#main-nav.filled .nav-logo img {
  width: 75%;
  padding: 30px 0 18px;
}
.admin-bar #main-nav {
  top: 32px;
}
#main-nav .row {
  justify-content: space-between;
}
.hamburger {
  display: none;
}
.nav-links {
  display: flex;
  justify-content: space-between;
}
.nav-links a, .nav-links p {
  color: #fff;
  font-family: Helvetica;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
}
.nav-links a.active {
  font-weight: bold;
}
.has-dropdown{
    position: relative;
}
#main-nav.filled .submenu{
    background-color: rgb(65, 105, 60);
}
.submenu {
  display: none;
  position: absolute;
    line-height: 48px;
    text-align: left;
  min-width: 130px;
  padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.has-dropdown:hover .submenu {
  display: block;
}

/* END Nav */
#intro {
  position: relative;
}
.contact p {
  text-align: center;
}
.contact-divider {
  border-bottom: 1px solid #b5bc76;
  max-width: 75px;
  margin: 0 auto 30px;
  padding-top: 25px;
}
.site-wrapper .container.contact {
  margin: 40px auto;
}
.site-wrapper .container.contact .row {
  margin: 40px auto;
  align-items: flex-start;
}
.row.rev-mobile .leaf {
  transform: rotate(16deg);
  position: absolute;
  left: -24%;
  top: -11%;
}
.leaf {
  position: absolute;
  right: -24%;
  bottom: 0;
}
.team-member .row.rev-mobile .leaf {
  z-index: 0;
  opacity: 0.75;
  mix-blend-mode: multiply;
}
.team-member:nth-of-type(5) .row.rev-mobile .leaf {
  left: 0;
    top: 0;
  transform: translateX(-25%) translateY(-50%);
}
.team-member:nth-of-type(7) .row.rev-mobile .leaf {
  right: 0;
  transform: translateX(25%);
}
#virginia, #new-jersey, #new-york {
  position: relative;
}
#virginia .leaf {
  right: -6%;
  transform: translateY(43%);
  z-index: -1;
}
#new-york .leaf {
  right: -7%;
  transform: translateY(35%);
  z-index: -1;
}
#new-jersey .leaf {
  left: -11%;
  transform: translateY(33%);
  z-index: -1;
}
#new-jersey img.centered.relative {
  max-width: 912px;
}
#new-york img.centered.relative {
  max-width: 770px;
}
#virginia .container, #new-jersey .container, #new-york .container {
  margin-bottom: 0;
}
.pipe {
  display: inline-block;
}
.project .row {
  align-items: flex-start;
}
.project-image-grid {
  position: relative;
  z-index: 1;
}
.project-image-grid [class*="col-"] {
  padding: 0;
}
.project-image-grid img, .image-grid img {
  min-width: 100%;
}
.project {
  position: relative;
}
.project h4 {
  letter-spacing: 3.4px;
}
.project .container {
  width: 100%;
  max-width: unset;
}
.project .project-image {
  padding: 0;
}
.project .project-image img {
  max-width: 707px;
}
.project .rev-mobile .project-image img, .project-copy {
  margin-left: auto;
  margin-right: unset;
}
.project .project-image img, .rev-mobile .project-copy {
  margin-right: auto;
  margin-left: unset;
}
.rev-mobile .project-copy {
  padding-right: 20px;
  padding-left: 20px;
}
.project-copy {
  max-width: 640px;
  padding-right: 65px;
  padding-left: 40px;
}
.project-copy.no-max {
  max-width: unset;
  padding-right: 40px;
    text-align: center;
}
.project-copy.no-max p{
    text-align: center;
}
.additional-projects {
  text-align: center;
  background-color: #28454b;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
}
.additional-projects.new-jersey {
  background-color: #b5bc76;
}
.additional-projects.new-york {
  background-color: #ffffff;
  padding-top: 0;
  margin-top: 200px;
  color: #585858;
}
.additional-projects.new-york p {
  color: #585858;
}
.additional-projects.new-jersey .border {
  border-right: 1px solid #41693c;
}
.additional-projects.new-york .border {
  border-right: 1px solid #585858;
}
.additional-projects.virginia .border {
  border-right: 1px solid #b5bc76;
}
.what-we-do .border {
    border-right: 2px solid #ffb448;
}
.what-we-do h4{
    color: #41693c;
    line-height: 18px;
}
.what-we-do{
    margin-bottom: 20px;
}
.site-wrapper .additional-projects .container {
  margin: 0 auto;
}
.additional-projects .row {
  justify-content: space-around;
  align-items: stretch;
}
.virginia.additional-projects .row:nth-of-type(2) {
  justify-content: space-between;
  max-width: 920px;
  margin: 0 auto;
}

.additional-project {
  width: 33.33%;
}
.additional-project.mw-340, .additional-project.mw-390 {
  width: 50%;
}
.additional-project h3, .additional-project h4, .additional-project p {
  line-height: 25px;
}
.additional-project h4 {
  margin-bottom: 7px;
}
.additional-project p {
  text-align: center;
  color: #fff;
}
.additional-project {
  align-self: center;
}
.what-we-do-list .container, .team-member .container {
  width: 100%;
  max-width: unset;
}
.site-wrapper .team-member .container {
  margin: 0 auto;
}
.team-member {
  position: relative;
}
.team-member:nth-of-type(4) {
  background: linear-gradient(to bottom, #ffffff 50%, #faf8f3 50%);
}
.team-member:nth-of-type(5), .team-member:nth-of-type(7) {
  background-color: #faf8f3;
  padding: 40px 30px;
}
.team-member:nth-of-type(6) {
  background-color: #faf8f3;
}
.team-member:nth-of-type(8) {
  background: linear-gradient(to bottom, #faf8f3 50%, #ffffff 50%);
}
.site-wrapper .container.chat {
  margin: 150px auto;
}
.what-we-do-list .row, .team-member .row {
  align-items: stretch;
}
.what-we-do-list ul {
  list-style-image: url('/wp-content/themes/timberridge/img/HOME/Arrow_Graphic.svg');
  max-width: 440px;
  margin: 0 auto;
}
.what-we-do-list li {
  color: white;
  padding-left: 30px;
  margin-bottom: 30px;
}
.what-we-do-list li:last-of-type {
  margin-bottom: 0;
}
.what-we-do-list .col-5 {
  padding: 90px 65px;
}
.team-member .col-6 {
  padding: 20px 30px;
}
.team-member .blue-bg, .team-member .lt-green-bg {
  padding: 20px 30px;
}
.what-we-do-list img, .team-member img {
  position: relative;
  margin: 0 auto;
}
.team-member .lt-green-bg p, .team-member .blue-bg p {
  color: white;
}
.cut-above {
  text-align: center;
  margin-top: 142px;
  margin-bottom: 90px;
}
.cut-above img {
  margin: 0 auto;
  max-width: 80px;
}
.project-nav {
  background-color: #41693c;
  padding: 40px 20px 40px;
}
.site-wrapper .project-nav .container {
  margin: 0 auto;
}
.vision {
  background-color: #b5bc76;
  padding-top: 40px;
  padding-bottom: 35px;
  margin-top: 20px;
}
.vision h2 {
  text-align: center;
}
.ticker-wrapper {
  overflow: hidden;
  height: 68px;
}
.ticker {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: marquee 20s linear infinite;
  will-change: transform;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker h4 {
  text-wrap: unset;
  padding: 18px 0;
  display: inline-block;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  letter-spacing: 3.78px;
}
.ticker .pipe {
  height: 23px;
  width: 1px;
  line-height: 32px;
  background-color: #28454b;
  display: inline-block;
  margin: 0 25px -4px;
}
.button {
  width: 194px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: transparent;
  padding: 7px 10px 6px;
  text-transform: uppercase;
  border-radius: 24px;
  border: 2px solid #ffb448;
  line-height: 32px;
  cursor: pointer;
  position: relative;
}
#gform_submit_button_1:hover {
  background-color: #ffb448;
  color: #41693c;
}
.button::after {
  background: #ffb448;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  transition: .3s ease-in;
  border-radius: 24px;
}
.button:hover::after {
  opacity: 1;
}
.button:hover h4 {
  color: #41693c;
}
.button h4 {
  font-weight: bold;
  letter-spacing: 4px;
  transition: .3s ease-in;
  z-index: 1;
  position: relative;
}
.button.read-more {
  margin-top: 25px;
  color: #41693c;
  font-weight: bold;
  letter-spacing: 4px;
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  margin-bottom: 20px;
}
.extra-copy {
  display: none;
}
.extra-copy p:last-child {
  margin-bottom: 20px;
}
.site-wrapper .container.image-grid {
  margin: 0 auto;
  max-width: unset;
  width: 100%;
}
.site-wrapper .container.image-grid.half-bg {
  background: #ffffff;
}
.site-wrapper .container.approach {
  margin: 200px auto 60px;
}
.site-wrapper .container {
  margin: 38px auto;
}
.hero-overlay {
  opacity: 0.3;
  mix-blend-mode: multiply;
  background-image: linear-gradient(to bottom, #28454b, rgba(255, 255, 255, 0) 66%);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-container {
  position: relative;
}
.hero-container .mySlides {
  display: none;
  overflow: hidden;
}
.team-hero, .contact-hero{
    width:100%;
}
.mySlides img {
  max-width: unset;
  height: 514px;
}
/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {
    opacity: .4
  }
  to {
    opacity: 1
  }
}
/* Zoom animation */
.visible img {
  animation: visible 5s linear;
}
@keyframes visible {
  from {
    transform: scale(1)
  }
  to {
    transform: scale(1.2)
  }
}
.rev-mobile {
  direction: rtl;
}
.rev-mobile div {
  direction: ltr;
}
h1 {
  font-family: "larken", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  line-height: 47px;
  text-align: left;
  color: #41693c;
  margin-bottom: 16px;
}
h2 {
  font-family: "larken", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #a85f1f;
  font-size: 30px;
  line-height: 47px;
}
h3 {
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 3.4px;
  text-transform: uppercase;
}
h4 {
  font-family: Helvetica, sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 3.4px;
  text-transform: uppercase;
}
p, li {
  font-family: Helvetica, sans-serif;
  font-weight: normal;
  color: #585858;
  font-size: 17px;
  line-height: 32px;
  margin-bottom: 15px;
  text-align: left;
}
p:last-child {
  margin-bottom: 0;
}
#footer {
  text-align: center;
  padding: 0px;
  background-color: #41693c;
}
#footer h4 a {
  color: #ffb448;
  padding: 0 20px;
  font-size: 20px;
  letter-spacing: 3px;
}
.eho-logo {
  padding: 0 15px;
}
.eho-logo img {
  width: 15px;
}
.locations {
  display: flex;
  justify-content: space-between;
}
.locations .location:nth-of-type(2) {
  padding: 0 60px;
}
.footer-locations {
  display: flex;
  justify-content: center;
}
.footer-location {
  padding: 0 40px;
}
.footer-location h4 {
  letter-spacing: 2px;
  font-weight: normal;
  color: #b5bc76;
  text-transform: uppercase;
  line-height: 23px;
}
.footer-location .button h4 {
  font-weight: 700;
  color: #fff;
}
.footer-location p {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
#footer .container {
  width: 100%;
  max-width: unset;
}
#footer .container:nth-of-type(1) {
  padding-top: 39px;
  background-image: url("/wp-content/themes/timberridge/img/FOOTER/Background_Logo.svg");
  background-repeat: no-repeat;
  padding-bottom: 40px;
  background-position: bottom left;
}
#footer .container:nth-of-type(2) {
  background-color: #435f3a;
  display: flex;
  padding: 22px 20px;
  justify-content: center;
}
.footer-nav {
  line-height: 25px;
}
.copyright p, #privacy-policy, .footer-links p {
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 200;
}
#privacy-policy {
  text-decoration: underline;
  margin-left: 5px;
}
#privacy-policy, #disclaimer, .spacer {
  display: inline-block;
}
#privacy-policy, #disclaimer {
  cursor: pointer;
}
.spacer {
  margin-left: 20px;
  margin-right: 20px;
}
.footer-links {
  display: flex
}
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.social-links svg {
  width: 38px;
  height: 38px;
  fill: #c35c11;
}
.social-links svg:hover {
  fill: #ec9f22;
}
.social-links a:first-child {
  margin-right: 20px;
}
/* The Modal (background) */
#privacy-modal, #disclaimer-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.50);
}
/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  width: 90%;
  max-width: 1200px;
  height: auto;
  overflow: scroll;
  text-align: center;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
}
.modal-content h1 {
  font-family: "nexa-rust-sans-black-2", sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #02626a;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 30px;
}
#disclaimer-modal .modal-content h1 {
  color: #c35c11;
}
.modal-content h3 {
  font-family: "roboto-slab", serif;
  font-weight: 700;
  font-style: normal;
  color: #a29f9a;
  text-transform: uppercase;
  font-size: 22px;
}
.modal-content ul {
  list-style: disc;
  text-align: left;
  font-size: 15px;
  padding: 0 20px;
  margin-bottom: 20px;
}
.modal-content .col-md-12 {
  overflow: scroll;
  height: auto;
  max-height: 80vh;
  padding: 40px;
}
/* The Close Button */
.close {
  color: #3e3e3e;
  position: absolute;
  top: 0px;
  right: 15px;
  font-size: 35px;
  font-weight: bold;
}
.close:hover, .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
html.modal-open {
  overflow: hidden;
}
#gform_fields_1 {
  max-width: 417px;
  margin: 0 auto;
  grid-row-gap: 30px;
}
#gform_1 .gform-body {
  background-color: #faf8f3;
  padding-top: 110px;
}
#gform_1 .gform-footer {
  background-color: #faf8f3;
  margin-top: 0;
}
#input_1_1, #input_1_3, #input_1_4, #input_1_5 {
  border: solid 2px #b5bc76;
  background-color: #faf8f3;
  line-height: 56px;
  height: 56px;
  text-align: left;
  color: #41693c;
  font-size: 18px;
  letter-spacing: 3.4px;
  text-transform: uppercase;
}
#input_1_1:focus, #input_1_3:focus, #input_1_4:focus, #input_1_5:focus, #gform_submit_button_1:focus {
  outline-color: #41693c;
}
#input_1_5 {
  padding-top: 0;
  min-block-size: 129px;
}
#gform_confirmation_message_1 {
  color: #41693c;
}
.gform-footer.gform_footer.top_label {
  flex-direction: column;
}
#gform_ajax_spinner_1 {
  border-block-end-color: #41693c;
  border-inline-start-color: #41693c;
}
#gform_submit_button_1 {
  width: 194px;
  display: inline-block;
  text-align: center;
  color: #41693c;
  background-color: transparent;
  padding: 7px 10px 6px;
  text-transform: uppercase;
  border-radius: 24px;
  border: 2px solid #ffb448;
  line-height: 32px;
  margin: 30px auto;
  font-weight: bold;
  letter-spacing: 4px;
  font-size: 18px;
}
#gform_1_validation_container {
  border: solid 2px #41693c;
}
#gform_1_validation_container:focus {
  outline-color: #41693c;
}
#gform_1_validation_container h2.gform_submission_error {
  justify-content: center;
  color: #41693c;
}
#gform_1_validation_container .gform-icon {
  color: #41693c;
  border-color: #41693c;
}
#gform_confirmation_message_1 h3 {
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #41693c;
  padding-top: 30px;
}
.circle-image {
  padding-top: 100px;
}
.mob-relative {
  position: relative;
}
.eric-d .col-3 img, .rick .col-3 img {
  border: solid 7px #fff;
}
.what-we-do{
    display:flex;
    justify-content: space-around;
}
@media (max-width: 980px) {
  .hamburger {
    display: block;
    width: 24px;
    height: 20px;
    position: relative;
    margin: 30px 0 23px;
    background-color: transparent;
    border: none;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    float: right;
  }
  .hamburger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 50%;
    background: #b5bc76;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  .hamburger span:nth-child(even) {
    left: 50%;
    border-radius: 0 0 0 0;
  }
  .hamburger span:nth-child(odd) {
    left: 0px;
    border-radius: 0 0 0 0;
  }
  .hamburger span:nth-child(1), .hamburger span:nth-child(2) {
    top: 0px;
  }
  .hamburger span:nth-child(3), .hamburger span:nth-child(4) {
    top: 8px;
  }
  .hamburger span:nth-child(5), .hamburger span:nth-child(6) {
    top: 16px;
  }
  .hamburger.open span:nth-child(1), .hamburger.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .hamburger.open span:nth-child(2), .hamburger.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.open span:nth-child(1) {
    left: 3px;
    top: 2px;
  }
  .hamburger.open span:nth-child(2) {
    left: calc(50% - 2px);
    top: 2px;
  }
  .hamburger.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
  }
  .hamburger.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
  }
  .hamburger.open span:nth-child(5) {
    left: 3px;
    top: 10px;
  }
  .hamburger.open span:nth-child(6) {
    left: calc(50% - 2px);
    top: 10px;
  }
  /* Add styles for when the menu is active/expanded */
  .nav-links.expanded {
    left: 0;
    display: block;
    width: 100%;
    position: absolute;
    top: 73px;
    z-index: 4;
    background-color: #435f3a;
    padding: 60px 40px;
    text-align: center;
  }
  .nav-links.expanded a, .nav-links.expanded p {
    display: block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #b5bc76;
          text-align: center;
  }
  .nav-links.expanded a#menu-item-contact, .nav-links.expanded a#submenu-item-upcoming {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .rev-mobile {
    direction: rtl;
  }
  .nav-links {
    display: none;
  }
    .nav-links.expanded #menu-item-projects p{
        margin-bottom: 0;
    }
    .submenu{
        display: block;
        position: relative;
        text-align: center;
        margin-bottom: 20px;
        padding: 20px;
    }
  .nav-logo img {
    max-width: 208px;
    max-height: 37px;
    padding: 0;
  }
  #main-nav {
    justify-content: center;
    background-color: #41693c;
    position: relative;
  }
  .admin-bar #main-nav {
    top: 0px;
  }
  .what-we-do-list .half-bg {
    background: linear-gradient(to bottom, #ffffff 50%, #28454b 50%);
    margin-bottom: 0;
  }
  .team-member .half-bg {
    background: linear-gradient(to bottom, #ffffff 50%, #b5bc76 50%);
    margin-bottom: 0;
  }
  .team-member.jeff .half-bg {
    background: linear-gradient(to bottom, #ffffff 50%, #28454B 50%);
  }
  #main-nav .container {
    width: 100%;
    padding: 0 30px;
    max-width: 100%;
  }
  #main-nav .container [class*="col-"] {
    padding: 0;
  }
  #main-nav .row .col-lg-9, #main-nav .row .col-lg-3 {
    height: 73px;
  }
  #main-nav .nav-logo {
    padding: 17px 0 19px;
  }
  .hero-video video, img.team-hero, img.contact-hero {
    max-width: unset;
    height: 514px;
    transform: translateX(-50%);
      position: relative;
      left:50%;
  }
    .row .col-lg-12.mob-mb-10, .mb-30.mob-mb-10 {
    margin-bottom: 10px;
  }
  .site-wrapper .container.mt-150.mob-mt-0 {
    margin-top: 0;
  }
  .mob-fs-14 {
    font-size: 14px;
  }
  .mob-mb-0, .row .col-lg-12.mob-mb-0, .row.mob-mb-0 {
    margin-bottom: 0;
  }
  .mob-mb-30 {
    margin-bottom: 30px;
  }
  .mob-mt-0 {
    margin-top: 0;
  }
  .team-member .col-5.mob-pad-0 {
    padding: 0;
  }
  .what-we-do-list .col-3 {
    padding: 0 30px;
  }
  .site-wrapper .container.mt-150.mob-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  li {
    font-size: 15px;
  }
  .what-we-do-list ul {
    list-style-image: none;
  }
  .what-we-do-list li {
    padding-left: 0;
    text-align: center;
  }
  .what-we-do-list .col-5 {
    padding: 40px;
  }
  .additional-project {
    margin-bottom: 30px;
  }
  .what-we-do-list li::after, .additional-project::after {
    content: "";
    display: block;
    margin: 0 auto;
    padding-top: 30px;
    width: 80px;
    border-bottom: 1px solid #b8bc78;
  }
    .new-jersey .additional-project::after {
            border-bottom: 1px solid #41693c;
    }
  .what-we-do-list li:last-of-type::after, .footer-location:last-of-type::after, .virginia .additional-project.mw-390:last-of-type::after, .new-jersey .row:last-of-type .additional-project:last-of-type::after, .new-york .row:last-of-type .additional-project.mw-350::after {
    display: none;
  }
    .what-we-do{
        flex-direction: column;
        text-align: center;
        margin-bottom: 0;
    }
    .what-we-do h4{
        margin-bottom: 20px;
    }
  .footer-location::after {
    content: "";
    display: block;
    margin: 0 auto;
    padding-top: 30px;
    width: 80px;
    border-bottom: 1px solid #b8bc78;
    margin-bottom: 30px;
  }
  .footer-locations {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .site-wrapper .container.approach {
    margin: 38px auto 0px;
  }
  .container.approach h1, .container.approach p {
    text-align: left;
  }
  h1 {
    font-size: 30px;
    line-height: 35px;
  }
  h2 {
    font-size: 20px;
    line-height: 27px;
  }
  h4 {
    font-size: 15px;
    line-height: 20px;
  }
  p {
    font-size: 15px;
    line-height: 30px;
  }
  [class*="col-"] {
    padding: 0 22px;
  }
  .site-wrapper .container.image-grid .col-4:nth-of-type(1) {
    padding: 0 4px 4px 0;
  }
  .site-wrapper .container.image-grid .col-4:nth-of-type(2) {
    padding: 0 0 4px 4px;
  }
  .site-wrapper .container.image-grid .col-4:nth-of-type(3) {
    padding: 4px 0 0 0;
  }
  .vision {
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 12px;
  }
  .ticker h4 {
    font-size: 12px;
    line-height: 37px;
    letter-spacing: 2.27px;
  }
  .ticker .pipe {
    margin-bottom: -7px;
  }
  .site-wrapper .container.chat {
    margin: 30px auto;
  }
  .mb-70, .mb-60, .mb-55, .mb-50 {
    margin-bottom: 20px;
  }
  img.footer-logo {
    width: 300px;
  }
  #footer h4 a {
    font-size: 15px;
    letter-spacing: 2.25px;
  }
  .footer-nav a {
    display: block;
    margin-bottom: 20px;
  }
  .footer-locations, #footer .container:nth-of-type(2) {
    flex-direction: column;
    align-items: center;
  }
  .eho-logo {
    order: 1;
    margin-top: 5px;
  }
  .footer-location p {
    font-size: 16px;
  }
  .copyright p {
    font-size: 11px;
    line-height: 20px;
  }
  #footer .container:nth-of-type(2) {
    padding: 16px 20px 11px;
  }
  .team-leaf {
    right: 23%;
    max-width: unset;
    width: 130%;
    top: 2px;
    transform: rotate(-21.6deg) translateX(50%);
  }
  .project-nav .locations {
    flex-direction: column;
    align-items: center;
  }
  .additional-projects .row {
    flex-direction: column;
  }
  #virginia .mt-150, #new-jersey .mt-200, #new-york .mt-200, .additional-projects.new-york {
    margin-top: 100px;
  }
  .pipe .yellow {
    display: none;
  }
  .project-copy, .rev-mobile .project-copy {
    text-align: center;
        margin:0 auto;      
  }
  .project-copy img {
    margin: 0 auto;
  }
  .project-copy img.project-image-mob {
    margin-top: 20px;
  }
  img.virginia-text, img.new-york-text, img.new-jersey-text {
    height: 60px;
  }
  .project-copy img.project-logo {
    width: 130px;
    margin-bottom: 20px;
  }
  .project-copy img.project-logo.va-crossing {
    width: 94px;
  }
  .project-copy img.project-logo.metro-row {
    width: 65px;
  }
  .project-copy img.project-image-mob {
    width: 100%;
    margin-bottom: 30px;
  }
  .extra-copy-mobile {
    display: none;
    margin-bottom: 10px;
  }
  .site-wrapper .project .container {
    margin-top: 0;
  }
  .row .col-lg-12.project-image {
    margin-bottom: 0;
  }
  .project-copy strong {
    display: block;
  }
  .additional-project, .additional-project.mw-340, .additional-project .mw-300, .additional-project.mw-390 {
    width: 100%;
    max-width: unset;
  }
  .additional-project h3 {
    font-size: 14px;
    letter-spacing: 2.64px;
  }
  .additional-project h4 {
    font-size: 13px;
    margin-bottom: 0;
  }
  .additional-project p {
    font-size: 14px;
  }
}
@media (min-width:981px) {
  #gf_1{
    scroll-margin-top:252px;
}
    #virginia, #new-jersey, #new-york{
    scroll-margin-top:262px;
}
    .extra-copy-mobile {
    margin-bottom: 15px;
  }
  .footer-location:nth-of-type(2), .location:nth-of-type(2) {
    border-left: 1px solid #b5bc76;
    border-right: 1px solid #b5bc76;
  }
  .what-we-do-list img {
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 187%;
  }
    .team-member .col-3 img {
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 147.5%;
  }
  .eric-d .col-3 img, .rick .col-3 img {
    max-width: 147.5%;
    border-radius: 12px;
  }
  .team-member .lt-green-bg {
    z-index: 1;
  }
  .team-member .col-3 img {
    z-index: 2;
  }
  .mob-only {
    display: none;
  }
  .modal-content h1 {
    font-size: 62px;
  }
  .modal-content .col-md-12 {
    padding: 80px 60px;
  }
  .close {
    right: 25px;
  }
  .mySlides img {
    width: 100%;
    height: auto;
  }
  .site-wrapper .container {
    margin: 100px auto;
  }
  .circle-image {
    padding-top: 0;
  }
  .mob-relative {
    position: unset;
  }
  .row.rev-mobile .leaf {
    top: 0;
    transform: rotate(0) translateY(-44%);
  }
  .site-wrapper .container.image-grid .col-4:nth-of-type(1) {
    padding: 0 10px 0 0;
  }
  .site-wrapper .container.image-grid .col-4:nth-of-type(2) {
    padding: 0 5px 0;
  }
  .site-wrapper .container.image-grid .col-4:nth-of-type(3) {
    padding: 0 0 0 10px;
  }
  .eho-logo img {
    width: 21px;
  }
  .team-member .col-6 {
    padding: 100px 40px;
  }
  .team-member:nth-of-type(5), .team-member:nth-of-type(7) {
    padding: 100px 50px;
  }
  .team-member .blue-bg {
    padding: 170px 40px;
  }
  .team-member:nth-of-type(8) .lt-green-bg {
    padding: 160px 40px;
  }
  .site-wrapper .container.contact {
    margin: 140px auto;
  }
  .site-wrapper .container.contact .row {
    margin: 140px auto;
    align-items: flex-start;
  }
  .cut-above img {
    margin-bottom: 30px;
  }
  .project-nav {
    padding-top: 70px;
  }
  .site-wrapper .container.image-grid.half-bg {
    background: linear-gradient(to bottom, #41693c 50%, #ffffff 50%);
  }
  .mobile-only {
    display: none;
  }
  .rev-mobile .project-copy {
    padding-right: 40px;
    padding-left: 65px;
  }
  .additional-projects {
    padding-top: 80px;
    padding-bottom: 90px;
  }
    .new-jersey.additional-projects .row:nth-of-type(2) .additional-project, .new-york.additional-projects .row:nth-of-type(2) .additional-project, .new-york.additional-projects .row:nth-of-type(3) .additional-project {
  padding-top: 60px;
}
}