/* Mobile Sticky Quote Button */
.mobile-sticky-quote {
  display: none;
}
@media (max-width: 767px) {
  .mobile-sticky-quote {
    display: block;
    position: fixed;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 99999;
  }
  .mobile-sticky-quote a {
    display: block;
    width: 100%;
    text-align: center;
    background: #39FF14;
    color: #111111 !important;
    font-weight: 800;
    font-size: 17px;
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.28);
    text-decoration: none !important;
  }
  body {
    padding-bottom: 82px;
  }
}

/* Footer Services Box */
.footer-services-box {
  text-align: center;
  color: #ffffff;
  padding: 0;
  margin: 0 auto;
}
.footer-services-box h3,
.footer-services-box .footer-menu-group h3 {
  color: #ffffff !important;
  font-size: 26px;
  margin: 0 0 8px;
  padding: 0;
  line-height: 1.1;
}
.footer-menu-group {
  margin: 0;
  padding: 0;
}
.footer-menu-services {
  margin-bottom: 22px;
}

/* Footer 3-column grid */
.footer-services-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  column-gap: 58px;
  row-gap: 8px;
  justify-content: center;
  align-items: center;
}
.footer-services-list li {
  margin: 0;
  padding: 0;
  line-height: 1.15;
}

/* Footer links */
.footer-services-list a,
.footer-services-box a {
  color: #ffffff !important;
  text-decoration: none !important;
  line-height: 1.15;
  display: inline-block;
  padding: 0;
  margin: 0;
}
.footer-services-list a:hover,
.footer-services-list a:focus,
.footer-services-box a:hover,
.footer-services-box a:focus {
  color: #76c80f !important;
  text-decoration: none !important;
}
.footer-full-row {
  grid-column: 1 / -1;
  margin-top: 2px;
}

/* Bottom footer nav */
.site-footer a {
  color: #ffffff;
  text-decoration: none;
}
.site-footer a:hover,
.site-footer a:focus {
  color: #76c80f;
  text-decoration: none;
}

/* Mobile footer */
@media (max-width: 767px) {
  .footer-services-box h3,
  .footer-services-box .footer-menu-group h3 {
    font-size: 23px;
    margin-bottom: 7px;
  }
  .footer-services-list {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
  .footer-menu-services {
    margin-bottom: 18px;
  }
}