/* FILE: TEMPLATE.CSS */
:root {
  --primary-color: #4cbb17;
  --primary-alt-color: #3e9715;
  --secondary-color: #1745ba;
  --secondary-alt-color: #3668e7;
  --dark-gray: #2f352d;
  --medium-gray: #454944;
  --light-gray: #f6f6f6;
  --light-base: #e5ecec;
}
/* Animations */
@-webkit-keyframes GradientAnimated {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes GradientAnimated {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes GradientAnimated {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes ButtonTextGlow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--secondary-color), 0 0 40px var(--secondary-color), 0 0 50px var(--secondary-color), 0 0 60px var(--secondary-color), 0 0 70px var(--secondary-color);
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px var(--secondary-alt-color), 0 0 40px var(--secondary-alt-color), 0 0 50px var(--secondary-alt-color), 0 0 60px var(--secondary-alt-color), 0 0 70px var(--secondary-alt-color), 0 0 80px var(--secondary-alt-color);
  }
}
@-moz-keyframes ButtonTextGlow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--secondary-color), 0 0 40px var(--secondary-color), 0 0 50px var(--secondary-color), 0 0 60px var(--secondary-color), 0 0 70px var(--secondary-color);
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px var(--secondary-alt-color), 0 0 40px var(--secondary-alt-color), 0 0 50px var(--secondary-alt-color), 0 0 60px var(--secondary-alt-color), 0 0 70px var(--secondary-alt-color), 0 0 80px var(--secondary-alt-color);
  }
}
@keyframes ButtonTextGlow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--secondary-color), 0 0 40px var(--secondary-color), 0 0 50px var(--secondary-color), 0 0 60px var(--secondary-color), 0 0 70px var(--secondary-color);
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px var(--secondary-alt-color), 0 0 40px var(--secondary-alt-color), 0 0 50px var(--secondary-alt-color), 0 0 60px var(--secondary-alt-color), 0 0 70px var(--secondary-alt-color), 0 0 80px var(--secondary-alt-color);
  }
}
/* Backgrounds */
.background-gradient-animated {
  background: linear-gradient(270deg, var(--primary-color), var(--secondary-color));
  background-size: 400% 400%;
  -webkit-animation: GradientAnimated 30s ease infinite;
  -moz-animation: GradientAnimated 30s ease infinite;
  animation: GradientAnimated 30s ease infinite;
}
.background-gradient-animated.animated-medium {
  -webkit-animation-duration: 15s;
  -moz-animation-duration: 15s;
  animation-duration: 15s;
}
.background-gradient-animated.animated-fast {
  -webkit-animation-duration: 10s;
  -moz-animation-duration: 10s;
  animation-duration: 10s;
}
.background-gradient {
  background: var(--primary-color);
  background: linear-gradient(125deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}
.bg-light-gray {
  background-color: #fafafa;
}
.bg-soft-gray {
  background: #eee;
}
/* Classes for Fixed Backgrounds */
.background-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
}
.background-image h1, .background-image h2, .background-image h3, .background-image h4, .background-image h5, .background-image h6, .background-image .headline1, .background-image .headline2, .background-image .headline3, .background-image .headline4, .background-image .headline5, .background-image .headline6 {
  color: #fff;
}
/* Global Navigation Bar */
nav {
  width: auto;
  -webkit-overflow-scrolling: touch;
}
/* Logo */
#img-logo {
  width: 200px;
  height: auto;
  margin: 0;
  display: block;
  transition: all 0.24s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/* Header */
#header-wrap {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.4rem;
  color: #fff;
  padding: 7.5rem 1rem 2.5rem 1rem;
}
#header-wrap .background-overlay {
  display: none !important;
}
#header-wrap #header-inner {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 0.25rem;
}
#header-wrap h1 {
  font-size: 1.8rem;
  line-height: 1.9rem;
  text-transform: capitalize;
}
#header-wrap h1 + p {
  margin-bottom: 2rem;
}
#header-wrap .button {
  margin: 0.25rem;
}
#header-wrap .button svg {
  fill: #fff;
  width: auto;
  height: 1rem;
  margin: auto 0.35rem -0.15rem auto;
  position: relative;
}
#header-wrap .button.quote svg {
  margin-bottom: -0.1rem;
}
/* Sections General */
section {
  position: relative;
  padding: 3rem 0;
}
section.background-image {
  color: #fff;
  background-size: cover;
}
section.background-image hr {
  background-color: #fff;
}
section > .container {
  position: relative;
  z-index: 1;
}
#section-main {
  padding: 2rem 1.25rem;
}
/* Grass Divider */
.grass-divider {
  margin: 0;
  display: block;
}
.grass-divider img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
}
/* Footer */
footer {
  background: #202020;
  color: #c2c2c2;
  font-size: 0.85rem;
  line-height: 1.3rem;
  padding: 1rem 0;
  position: relative;
}
footer .headline4 {
  color: var(--primary-color);
}
footer strong {
  color: #fff;
}
footer a {
  color: #c2c2c2 !important;
}
footer a:hover {
  color: var(--primary-color) !important;
}
footer .alert-box {
  background: transparent;
  margin: 0;
}
footer .alert-box.footer-box {
  background: #3c3c3c;
  border-radius: 0.25rem;
  border-top-right-radius: 0;
  position: relative;
}
footer .alert-box.footer-box:before, footer .alert-box.footer-box:after {
  width: 0;
  height: 0;
  border-style: solid;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
}
footer .alert-box.footer-box:before {
  border-width: 0 1rem 1rem 0;
  border-color: transparent #202020 transparent transparent;
}
footer .alert-box.footer-box:after {
  border-width: 1rem 0 0 1rem;
  border-color: transparent transparent transparent #494949;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
footer #footer-social a {
  line-height: normal;
  display: inline-block;
  padding: 0.5rem;
  transition: 0.25s;
}
footer #footer-social a:hover {
  opacity: 0.6;
}
footer #footer-social a img {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  width: 24px !important;
  height: 24px !important;
}
footer .footer-col {
  vertical-align: top;
  margin: auto 1.5rem auto auto;
  display: inline-block;
}
footer .footer-copyright {
  font-size: 0.85rem;
  margin: 0;
  display: block;
}
footer .footer-copyright a {
  margin: 0;
  display: block;
}
footer .footer-copyright a.footer-logo {
  width: 90%;
  max-width: 170px;
  margin-right: auto !important;
  margin-bottom: 1rem;
  display: inline-block !important;
  position: relative;
  top: auto;
  transition: 0.25s;
  filter: grayscale(1) brightness(1.2);
}
footer .footer-copyright a.footer-logo img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
}
footer .footer-copyright a.footer-logo:hover {
  filter: grayscale(0) brightness(1);
}
footer .footer-copyright span {
  display: none;
}
/* Sidebar */
#div-sb-main-spacer {
  display: none;
}
#div-side-bar-outer > section {
  padding: 0 0 3rem 0;
}
#div-side-bar-outer .alert-box {
  background: #3c3c3c;
  color: #c2c2c2;
  position: relative;
  border-radius: 0 !important;
}
#div-side-bar-outer .alert-box h3 {
  color: #fff;
}
#div-side-bar-outer .alert-box:first-of-type {
  margin-top: 0 !important;
}
#div-side-bar-outer .alert-box + .background-image {
  border-radius: 0 !important;
  overflow: hidden;
}
#div-side-bar-inner {
  height: 100%;
  padding: 0 1rem !important;
  position: relative;
}
#div-side-bar-inner .alert-box {
  margin: 0;
  z-index: 1;
}
#div-side-bar-inner > .background-image .background-overlay {
  background-color: transparent;
}
#sidebar-locations .list-half li {
  width: 100%;
  padding: 0.25rem 0.9rem;
  margin: 0;
  display: block;
  vertical-align: top;
}
.side-bar-contact {
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
  position: relative;
}
.side-bar-contact .side-bar-contact-inner {
  width: auto;
  max-width: 90%;
  height: auto;
  background-color: rgba(60, 60, 60, 0.9);
  padding: 0.75rem 1.5rem;
  margin: auto;
  display: inline-block;
}
.side-bar-contact h3 {
  text-transform: uppercase;
  margin-bottom: -1rem;
}
.side-bar-contact a {
  color: #fff;
  text-decoration: none;
}
.side-bar-contact .headline2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
}
/* Maps */
.area-map-outer {
  width: 100%;
  height: 100%;
  min-height: 560px;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
}
.google-map {
  width: 100%;
  height: 100%;
  min-height: 250px;
}
.popup-quote {
  display: none;
}
ul.blocks {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.blocks > li > a {
  display: block;
  background-color: #164388;
  color: #fff;
  text-align: center;
  text-decoration: none !important;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5rem 0;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.3rem;
  line-height: 1.7rem;
}
ul.blocks > li > a:hover .background-overlay {
  background: rgba(0, 0, 0, 0.25);
}
/* Home Page */
.home-services-section {
  padding: 2rem 0;
}
.home-services-container .home-services-row {
  padding: 0;
}
.home-services-container .home-services-row > div{
    max-width: 700px;
}
.home-services-container .headline2 a {
  color: var(--dark-gray);
  text-decoration: none;
}
.home-services-container .headline2 a:hover {
  color: #000;
}
.home-services-container img {
  width: 100% !important;
  border-radius: 0.5rem;
  border: 0.75rem solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  margin-bottom: -3.75rem;
}
.home-areas {
  padding: 0 2rem;
  margin-top: auto;
}
.home-areas > div{
    max-width: 700px;
}
.home-areas .background-icon {
  width: auto;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  opacity: 0.2;
}
.home-areas .home-areas-map {
  margin-bottom: 1.25rem;
}
.home-areas .home-areas-map img {
  width: 100%;
  margin: 0;
  display: block;
  border-radius: 0.25rem;
}
.home-areas .home-areas-text {
  color: #fff;
  padding: 0;
}
.home-areas .home-areas-text .first-headline {
  color: #fff;
}
.home-areas .home-areas-text hr.short {
  max-width: 70px;
  height: 3px;
  border-radius: 0.05rem;
  margin: 0.5rem auto;
  display: inline-block;
  background-color: #fff;
}
.home-areas .home-areas-text p a:not(.button) {
  color: #fff;
  text-decoration: underline;
}
.home-areas .home-areas-text p a:not(.button):hover {
  color: #fff;
  text-decoration: none;
}
.home-areas .home-areas-text .preheading{
    color: #fff;
}
.home-about-section {
  background-image: url(../account/images/banner-black-and-white-lawn.jpg);
  background-color: #fafafa;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem 1rem 0 1rem;
}
.home-about-section .home-about-col {
  background: #fff;
  box-shadow: 0 2.75rem 2.5rem rgba(0, 0, 0, 0.15);
  border-radius: 0.2rem;
  margin-bottom: -1.75rem;
}
.home-about-section .home-about-image {
  overflow: hidden;
  border-radius: 0.2rem;
  margin: 0;
  display: block;
  position: relative;
}
.home-about-section .home-about-image img {
  width: 100% !important;
  margin: 0;
  display: block;
  z-index: 0;
}
.home-about-section .home-about-image:after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.home-about-section .home-about-image h2 {
  font-size: 1.5rem;
  line-height: 1.6rem;
  color: #fff;
  width: 90%;
  height: auto;
  text-align: center;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.home-about-section .home-about-form {
  border-radius: 0.4rem;
  padding: 1rem;
  background: var(--light-gray);
  margin: 0 -2rem -2rem -2rem;
}
.home-about-section .home-about-form h3 {
  font-size: 1.25rem;
  line-height: 1.4rem;
}
.home-about-section .home-about-form input[type="text"], .home-about-section .home-about-form textarea {
  background: #fff;
  border-radius: 0.25rem;
}
/* Areas Served Page */
#ul-areas {
  list-style-type: none;
  padding-top: 1.5rem;
  margin: 1rem 0 2rem 0;
}
#ul-areas li {
  background: var(--light-gray);
  font-weight: 700;
  padding: 0.6rem 1rem;
  margin: auto 0.25rem 0.75rem 0.25rem;
  border-radius: 0.4rem;
  display: inline-block;
}
/* Careers Page */
.careers-row > div {
  padding: 1rem 0 !important;
}
/* Contact Page */
.contact-row > div {
  padding: 0 !important;
}
.contact-list {
  align-items: stretch;
  padding-top: 2rem;
}
.contact-list .item-icon {
  background-color: #323232;
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  border-radius: 15rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  margin: auto;
  display: inline-block;
}
.contact-list .item-icon svg {
  fill: #fff;
  width: auto;
  height: 1.75rem;
  margin: auto;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
/* Grid Lists */
.row.nopad .row.list-steps [class^="col-"],
.row.nopad .row.list-simple [class^="col-"]{
  padding:1rem!important;
  position:relative;
}
.list-steps .alert-box,
.list-simple .alert-box{
  height:100%;
  margin:0;
  border:.25rem solid #e2e2e2;
  border-radius:.4rem;
  transition:all .25s ease-out;
}
.list-steps .alert-box:hover,
.list-simple .alert-box:hover{
  transform:scale(1.05);
}
.list-simple .alert-box img{
    width:100%!important;
    border-radius:0.15rem;
    margin:0 0 0.5rem 0;
    display:block;
}
.list-simple .alert-box span{
  line-height:1.25rem;
  margin:auto;
  display:inline-block;
}
.list-simple.list-checked .alert-box span::before{
    content:url(../account/images/icons/check-square.svg);
    width:1.5rem;
    height:1.5rem;
    position:absolute;
    top:-0.2rem;
    left:0;
    z-index:1;
}
.list-simple.list-checked .alert-box span{
    padding-left:2.5rem;
    position:relative;
    z-index:2;
}
.list-steps .step-item strong{
  background: linear-gradient(270deg, var(--primary-color), var(--secondary-color));
  background-size: 400% 400%;
  -webkit-animation: GradientAnimated 15s ease infinite;
  -moz-animation: GradientAnimated 15s ease infinite;
  animation: GradientAnimated 15s ease infinite;
  font-size:2rem;
  color:#fff;
  width:4rem;
  height:4rem;
  line-height:4rem;
  border-radius:12rem;
  box-shadow:0 3px 6px rgba(0,0,0,.2);
  margin:1rem auto auto auto;
  display:inline-block;
  position:relative;
  overflow:hidden;
}
.list-steps .step-item strong::before{
  background:rgba(255,255,255,.08);
  width:50%;
  height:1.5rem;
  border-radius:10rem;
  content:"";
  position:absolute;
  top:25%;
  left:50%;
  transform:translate(-50%,-50%);
}
/* New Navi */
#navi {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.32);
  margin-top: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  z-index: 10;
}
#navi:after{
  background: linear-gradient(270deg, var(--primary-color), var(--secondary-color));
  background-size: 400% 400%;
  -webkit-animation: GradientAnimated 30s ease infinite;
  -moz-animation: GradientAnimated 30s ease infinite;
  animation: GradientAnimated 30s ease infinite;
  -webkit-animation-duration: 15s;
  -moz-animation-duration: 15s;
  animation-duration: 15s;
  content: '';
  height: 0.4rem;
  display: block;
}
#navi #navi-top {
  background: #fff;
  justify-content: flext-start;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0.75rem 0.25rem;
  position: relative;
  display: flex;
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
}
#navi #navi-top #navi-toggle {
  position: relative;
  top: 0.15rem;
  display: block;
}
#navi #navi-top .navi-logo {
  text-align: center;
  flex-basis: 13rem;
  width: 13rem;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
#navi #navi-top .navi-logo img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
}
#navi #navi-top #navi-actions {
  flex-basis: calc(100% - 12rem);
  width: calc(100% - 12rem);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  text-align: right;
  display: none;
}
#navi #navi-top #navi-actions a {
  color: var(--dark-gray);
  text-decoration: none;
  vertical-align: middle;
  transition: all 0.25s ease;
}
#navi #navi-top #navi-actions a.navi-contact {
  text-transform: uppercase;
  color: var(--dark-gray);
  margin-left: 0;
  padding: 0 1rem;
  display: inline-block;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
#navi #navi-top #navi-actions a.navi-contact span {
  margin: 0;
  display: block;
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
#navi #navi-top #navi-actions a.navi-contact span strong {
  font-weight: 900;
}
#navi #navi-top #navi-actions a.navi-contact span.navi-contact-label {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0;
  display: none;
}
#navi #navi-top #navi-actions a.navi-contact span.navi-contact-phone {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25rem;
  letter-spacing: -0.075rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  background-size: 400% 400%;
  -webkit-animation: GradientAnimated 15s ease infinite;
  -moz-animation: GradientAnimated 15s ease infinite;
  animation: GradientAnimated 15s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#navi #navi-top #navi-actions a.navi-contact span.navi-contact-phone strong {
  display: none;
}
#navi #navi-top #navi-actions a.navi-contact:hover span.navi-contact-label {
  color: var(--dark-gray);
}
#navi #navi-top #navi-actions a.navi-contact:hover span.navi-contact-phone {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-size: 400% 400%;
  -webkit-animation: GradientAnimated 5s ease infinite;
  -moz-animation: GradientAnimated 5s ease infinite;
  animation: GradientAnimated 5s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#navi #navi-top #navi-actions a:not(.navi-contact) {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  margin: auto 0.2rem;
  display: none;
  opacity: 0.25;
  position: relative;
  top: -0.1rem;
}
#navi #navi-top #navi-actions a:not(.navi-contact) img {
  width: auto !important;
  height: 1.5rem !important;
  margin: auto;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  filter: invert(1);
}
#navi #navi-top #navi-actions a:not(.navi-contact):hover {
  opacity: 0.6;
}
#navi #navi-top .navi-call {
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#navi #navi-top .navi-call svg {
  fill: var(--dark-gray);
  width: auto;
  height: 1.8rem;
  margin: auto;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  transition: all 0.25s ease;
}
#navi #navi-top .navi-call:hover svg {
  fill: var(--primary-color);
}
#navi #navi-menu {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  position: fixed;
  top: -100%;
  left: 0;
  display: flex;
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  overflow-y: auto;
  z-index: 0;
}
#navi #navi-menu #navi-menu-primary {
  flex-basis: 100%;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  position: relative;
  top: 92px;
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
#navi #navi-menu.is-open {
  top: 0;
}
#navi.is-scrolled {
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 100%;
  height: auto;
  margin-top: 0;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
}
#navi.is-scrolled #navi-top {
  padding: 0.75rem 0.25rem;
}
#navi.is-scrolled #navi-top .navi-logo {
  flex-basis: 12rem;
  width: 12rem;
}
#navi.is-scrolled #navi-top #navi-actions {
  flex-basis: calc(100% - 12rem);
  width: calc(100% - 12rem);
}
#navi.is-scrolled #navi-top #navi-actions a.navi-contact span.navi-contact-label {
  font-size: 0.8rem;
  line-height: 0.8rem;
}
#navi.is-scrolled #navi-top #navi-actions a.navi-contact span.navi-contact-phone {
  font-size: 1rem;
}
#navi.is-scrolled #navi-menu #navi-menu-primary {
  top: 84px;
}
.alert-box.side-quote{
    background-color: transparent;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important;
  background-size: 400% 400% !important;
  -webkit-animation: GradientAnimated 15s ease infinite !important;
  -moz-animation: GradientAnimated 15s ease infinite !important;
  animation: GradientAnimated 15s ease infinite !important;
}
.areas-served-gmap iframe{
    width:100%;
    max-width:1024px;
    height:320px;
    margin:auto;
    display:inline-block;
}
/* Responsive */
@media (min-width: 375px) {
  #navi #navi-top #navi-actions a.navi-contact span.navi-contact-phone {
    font-size: 1.4rem;
  }
  #navi.is-scrolled #navi-top #navi-actions a.navi-contact span.navi-contact-phone {
    font-size: 1.4rem;
  }
}
@media (min-width: 720px) {
  footer {
    padding: 4rem 0;
  }
  .side-bar-contact {
    padding: 5rem 1rem;
  }
  .side-bar-contact .headline2 {
    font-size: 3rem;
  }
  .side-bar-contact h3 {
    margin-bottom: 0;
    /*--*/
  }
  #header-wrap {
    padding: 4.25rem 1rem;
  }
  #header-wrap h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .home-about-section .home-about-col {
    margin-bottom: -2.75rem;
  }
  
  
  #navi #navi-top {
    justify-content: center;
    padding: 0.75rem 1rem 0.65rem 1rem;
  }
  #navi #navi-top .navi-logo {
    flex-basis: 18rem;
    width: 18rem;
    position: relative;
    top: -0.2rem;
    left: auto;
    transform: translate(0, 0);
  }
  
  #navi #navi-top .navi-call {
    display: none;
  }
  #navi #navi-top #navi-actions {
    display: block;
  }
  #navi #navi-top #navi-actions a.navi-contact {
    text-align: left;
  }
  #navi #navi-top #navi-actions a.navi-contact span.navi-contact-label {
    display: block;
  }
  #navi #navi-top #navi-actions a.navi-contact span.navi-contact-phone {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 2rem;
    letter-spacing: -0.075rem;
  }
  #navi #navi-top #navi-actions a.navi-contact span.navi-contact-phone strong {
    display: inline;
  }
}
@media (min-width: 768px) {
  #navi {
    position: relative;
    top: auto;
    left: auto;
  }
  #navi #navi-top #navi-actions a:not(.navi-contact) {
    display: inline-block;
  }
  #navi.is-scrolled #navi-top {
    padding: 0.75rem 1rem;
  }
  #navi.is-scrolled #navi-top .navi-logo {
    flex-basis: 12rem;
    width: 12rem;
  }
  #navi.is-scrolled #navi-top #navi-actions {
    flex-basis: calc(100% - 12rem);
    width: calc(100% - 12rem);
  }
  #header-wrap {
    padding: 4.25rem 1rem;
  }
}
@media (min-width: 1024px) {
    #navi:after{
        display: none;
    }
  #navi #navi-top #navi-toggle {
    display: none;
  }
  #navi #navi-top .navi-logo {
    flex-basis: 16rem;
    width: 16rem;
    top: -0.35rem;
  }
  #navi #navi-top #navi-actions {
    flex-basis: calc(100% - 16rem);
    width: calc(100% - 16rem);
  }
  #navi #navi-top #navi-actions a.navi-contact {
    border-left: 1px dotted #e6e6e6;
    padding: 0 0.5rem 0 1.5rem;
    margin-left: 1rem;
  }
  #navi #navi-menu {
    width: auto;
    height: auto;
    align-items: center;
    padding: 0 0.4rem;
    position: relative;
    top: auto;
    left: auto;
    transition: all 0s linear;
    overflow-y: visible;
  }
  #navi #navi-menu #navi-menu-primary {
    top: auto !important;
    height: auto;
  }
  #navi.is-scrolled #navi-menu #navi-menu-primary {
    top: auto !important;
    overflow-y: visible;
  }
  #nav-outer {
    display: block !important;
  }
  nav {
    position: static;
    background: none;
    padding: 0;
  }
  #div-nav-button {
    display: none;
  }
  #nav-headline {
    display: none;
  }
  #section-main {
    padding: 3rem 1.25rem;
  }
  #div-side-bar-outer > section {
    padding: 3rem 0;
  }
  #div-side-bar-outer .alert-box {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  }
  #div-side-bar-outer .alert-box:first-of-type {
    margin-top: -1rem !important;
  }
  #div-side-bar-outer .alert-box:first-of-type:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 1rem 1rem;
    border-color: transparent transparent #000000 transparent;
    content: "";
    position: absolute;
    top: 0;
    left: -1rem;
  }
  #div-side-bar-outer .alert-box.alert-sticky {
    position: sticky;
    top: 7rem;
  }
  #div-side-bar-outer .alert-box:nth-child(1) {
    z-index: 1;
  }
  #div-side-bar-outer .alert-box:nth-child(2) {
    z-index: 2;
  }
  #div-side-bar-outer .alert-box:nth-child(3) {
    z-index: 3;
  }
  #div-side-bar-inner {
    padding: 0 0 2rem 0 !important;
  }
  .side-bar-contact .headline2 {
    font-size: 2.2rem;
  }
  .side-bar-contact h3 {
    margin-bottom: -0.5rem;
  }
  #sidebar-locations .list-half li {
    width: 46%;
    padding: 0.25rem 0.9rem;
    margin: auto;
    display: inline-block;
    /*--*/
  }
  #sidebar-locations .list-half li a{
      color:#fff;
      padding:0;
  }
  #header-wrap {
    font-size: 1.25rem;
    line-height: 1.7rem;
    padding: 4.5rem 2rem;
  }
  #header-wrap #header-inner {
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.4);
  }
  #header-wrap h1 {
    font-size: 3rem;
    line-height: 3rem;
  }
  footer .footer-copyright a {
    margin: auto;
    display: inline-block;
  }
  footer .footer-copyright a.footer-logo {
    margin: auto 1rem auto auto !important;
    display: inline-block !important;
    top: 0.8rem;
  }
  footer .footer-copyright span {
    display: inline-block;
  }
  .home-services-section {
    padding: 0;
  }
  .home-services-container .home-services-row {
    padding: 2rem;
  }
  .home-services-container img {
    margin-bottom: 0;
  }
  .home-areas {
    padding: 0;
  }
  .home-areas > div{
    max-width: none;
}
  .home-areas .home-areas-map {
    margin-bottom: 0;
  }
  .home-areas .home-areas-map img {
    box-shadow: -20px 20px 0 rgba(0, 0, 0, 0.1);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .home-areas .home-areas-text {
    padding: 0 3rem;
  }
  .home-about-section .home-about-image h2 {
    font-size: 2.8rem;
    line-height: 2.8rem;
  }
  .home-about-section .home-about-form {
    padding: 2rem;
    margin: 0;
  }
  .home-about-section .home-about-form h3 {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
  .careers-row > div {
    padding: 2rem !important;
  }
  .contact-row > div {
    padding: 0 2rem !important;
  }
  .home-services-container .home-services-row > div{
      max-width: none;
  }
  .areas-served-gmap iframe{height:560px;}
}
@media (min-width: 1200px) {
  section {
    padding: 4rem 0;
  }
  footer {
    font-size: 0.9rem;
  }
  #div-side-bar-outer > section {
    padding: 4rem 0;
  }
  .side-bar-contact .headline2 {
    font-size: 2.4rem;
  }
  .side-bar-contact h3 {
    margin-bottom: -0.75rem;
  }
  #header-main-inner {
    padding: 6rem 1rem;
    /*--*/
  }
  #header-wrap {
    font-size: 1.5rem;
    line-height: 2rem;
    padding: 5rem 2rem;
  }
  #header-wrap h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
  .home-services-container .home-services-row {
    padding: 2rem 5rem;
  }
}
@media (min-width: 1600px) {
  section {
    padding: 5rem 0;
  }
  .side-bar-contact .headline2 {
    font-size: 3rem;
  }
  .side-bar-contact h3 {
    margin-bottom: -0.5rem;
  }
  #div-side-bar-outer > section {
    padding: 5rem 0;
    /*--*/
  }
  #header-wrap {
    font-size: 1.2rem;
    line-height: 1.6rem;
    padding: 5.5rem 2rem;
  }
  #header-wrap h1 {
    font-size: 3rem;
    line-height: 3rem;
  }
  .home-services-container .home-services-row {
    padding: 2rem 13rem;
  }
}

@media(min-width:1920px){
    #header-wrap #header-inner {
      flex-basis: 40%;
    }
}

.block-cards .box {
    width: 100%;
    max-width: 560px;
    height: 100%;
    margin: 0 auto;
    transition: ease-out 0.5s;
    box-shadow: -1px 7px 0.7rem 8px rgba(0, 0, 0, 0.05);
    position: relative; 
    margin-top: 20px;
    padding-bottom:30px;
}

.block-cards .box img {
    width: 100% !important;
    margin: 0;
}

.block-cards .box h4 {
    padding-top:30px;
}

.block-cards .box .icon {
    background-color: #92c743;
    width: 5rem;
    height: 5rem;
    border-radius: 10rem;
    border: .5rem solid #fefefe;
    margin: -2.5rem auto 0 auto;
    position:relative;
}

.block-cards .box .icon svg {
    fill: #fefefe;
    width: 2rem;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);

}

.block-cards .box h3 .sub {
    font-size: 0.8rem;
    line-height: 1rem;
}

.block-cards .box small {
    font-size: 0.8rem;
    line-height: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #92c743; 
    position: relative;
    display: inline-block;
}

.block-cards .box small:before,
.block-cards .box small:after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
}

.block-cards .box small:before {
    background-color: #f8f9fa; 
    z-index: 0;
}

.block-cards .box small:after {
    background-color: #92c743; 
    z-index: 1;
    transition: ease-out 0.5s;
    transform-origin: left;
    transform: scaleX(0);
}

.block-cards .box a:not(.button) {
    text-decoration: none;
    width: 100%;
    height: 100%;
    color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.block-cards .box:hover {
    box-shadow: 0 0.75rem 1rem rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.block-cards .box:hover small:after {
    transform: none;
}

