body {
  background-color: #fef0d9;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 38px;
  line-height: 44px;
  font-weight: 400;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 400;
}

p {
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.8em;
  font-weight: 400;
}

a {
  color: #ea6a46;
  text-decoration: underline;
}

strong {
  display: inline-block;
  margin-top: 18px;
  margin-bottom: 0px;
  line-height: 18px;
  font-weight: 700;
}

.sticky-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 1000;
  padding: 10px 20px;
  background-color: #f4f4f4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ececec));
  background-image: linear-gradient(180deg, #fff, #ececec);
}

.nav-grid {
  display: -ms-grid;
  display: grid;
  width: 100%;
  margin: 0px;
  padding: 0px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-flow: column;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -ms-grid-columns: 1fr -webkit-max-content -webkit-max-content -webkit-max-content;
  -ms-grid-columns: 1fr max-content max-content max-content;
  grid-template-columns: 1fr -webkit-max-content -webkit-max-content -webkit-max-content;
  grid-template-columns: 1fr max-content max-content max-content;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.nav-logo-link {
  display: block;
  height: 100px;
  margin-right: 0px;
  margin-left: 0px;
  padding: 0px;
}

.nav-logo {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 0% 50%;
  object-position: 0% 50%;
}

.nav-link {
  display: inline-block;
  margin-right: 4px;
  margin-left: 4px;
  padding: 10px 11px;
  color: #444;
  font-size: 13px;
  line-height: 19px;
  text-decoration: none;
}

.nav-link:hover {
  color: #ea6a46;
  text-decoration: none;
}

.nav-link:focus {
  margin-right: 4px;
  margin-left: 4px;
  padding-right: 11px;
  padding-left: 11px;
  background-color: #ea6a46;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e57454), to(#ea6a46));
  background-image: linear-gradient(180deg, #e57454, #ea6a46);
  color: #fff;
}

.nav-link.w--current {
  background-color: #ea6a46;
  color: #fff;
}

.nav-link.w--current:hover {
  color: #fff;
}

.hero-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-top: 19px;
  padding-bottom: 75px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))), url('../images/barry-in-office.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), url('../images/barry-in-office.jpg');
  background-position: 0px 0px, 50% 10%;
  background-size: auto, cover;
  color: #fff;
}

.hero-overlay.slide-1 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(null), to(null)), url('../images/fleet-3.jpg');
  background-image: linear-gradient(180deg, null, null), url('../images/fleet-3.jpg');
}

.hero-overlay.slide-2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(null), to(null)), url('../images/fleet-3.jpg');
  background-image: linear-gradient(180deg, null, null), url('../images/fleet-3.jpg');
}

.centered-container {
  padding-right: 15px;
  padding-left: 15px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.slider {
  min-height: 400px;
}

.button {
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 9px;
  background-color: rgba(0, 0, 0, 0.64);
  -webkit-transition: background-color 300ms ease;
  transition: background-color 300ms ease;
}

.button:hover {
  background-color: rgba(234, 106, 70, 0.66);
}

.heading-2 {
  margin-top: 15px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 300;
  text-shadow: 1px 1px 6px #000;
}

.subnav {
  position: static;
  display: block;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.subnav-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.subnav-text.left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
  margin-left: -1px;
  padding-top: 5px;
  padding-bottom: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
}

.subnav-text.right {
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: right;
}

.phone-text {
  padding: 5px 10px;
  font-family: 'Droid Sans', sans-serif;
  color: #2e2e2e;
  font-size: 14px;
}

.phone-text:hover {
  color: #ea6a46;
}

.phone-text.emergency {
  display: none;
}

.container-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.heading-3 {
  text-shadow: 1px 1px 6px #000;
}

.slide-nav {
  display: none;
}

.hero-overlay-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-top: 19px;
  padding-bottom: 75px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))), url('../images/fleet-3.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), url('../images/fleet-3.jpg');
  background-position: 0px 0px, 50% 43%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  color: #fff;
}

.hero-overlay-1.slide-1 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(null), to(null)), url('../images/fleet-3.jpg');
  background-image: linear-gradient(180deg, null, null), url('../images/fleet-3.jpg');
}

.hero-overlay-1.slide-2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(null), to(null)), url('../images/fleet-3.jpg');
  background-image: linear-gradient(180deg, null, null), url('../images/fleet-3.jpg');
}

.hero-overlay-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-top: 55px;
  padding-bottom: 75px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))), url('../images/barry-in-office.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), url('../images/barry-in-office.jpg');
  background-position: 0px 0px, 50% 15%;
  background-size: auto, cover;
  color: #fff;
}

.hero-overlay-2.slide-1 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(null), to(null)), url('../images/fleet-3.jpg');
  background-image: linear-gradient(180deg, null, null), url('../images/fleet-3.jpg');
}

.hero-overlay-2.slide-2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(null), to(null)), url('../images/fleet-3.jpg');
  background-image: linear-gradient(180deg, null, null), url('../images/fleet-3.jpg');
}

.left-container {
  padding-right: 15px;
  padding-left: 15px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
}

.left-container.darker {
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.36);
}

.hero-overlay-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-top: 55px;
  padding-bottom: 75px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))), url('../images/front-of-office-winter.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), url('../images/front-of-office-winter.jpg');
  background-position: 0px 0px, 50% 45%;
  background-size: auto, cover;
  color: #fff;
}

.hero-overlay-3.slide-1 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(null), to(null)), url('../images/fleet-3.jpg');
  background-image: linear-gradient(180deg, null, null), url('../images/fleet-3.jpg');
}

.hero-overlay-3.slide-2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(null), to(null)), url('../images/fleet-3.jpg');
  background-image: linear-gradient(180deg, null, null), url('../images/fleet-3.jpg');
}

.hero-overlay-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-top: 55px;
  padding-bottom: 75px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))), url('../images/transponder-keys-and-remote-key-combo.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), url('../images/transponder-keys-and-remote-key-combo.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  color: #fff;
}

.hero-overlay-4.slide-1 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(null), to(null)), url('../images/fleet-3.jpg');
  background-image: linear-gradient(180deg, null, null), url('../images/fleet-3.jpg');
}

.hero-overlay-4.slide-2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(null), to(null)), url('../images/fleet-3.jpg');
  background-image: linear-gradient(180deg, null, null), url('../images/fleet-3.jpg');
}

.cards-section {
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 3px solid #591e01;
  border-bottom: 3px solid #591e01;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ead7c0), to(#ead7c0));
  background-image: linear-gradient(180deg, #ead7c0, #ead7c0);
}

.centered-container-2 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.cards-grid-container {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}

.cards-image-mask {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 100%;
  border-radius: 0%;
}

.cards-image {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.card-h3 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: 'Droid Sans', sans-serif;
  color: #591e01;
  line-height: 28px;
  font-weight: 400;
}

.button-2 {
  margin-top: 10px;
  margin-bottom: 10px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-radius: 9px;
  background-color: rgba(234, 106, 70, 0.82);
  -webkit-transition: background-color 300ms ease;
  transition: background-color 300ms ease;
  color: #fff;
}

.button-2:hover {
  background-color: rgba(234, 106, 70, 0.66);
}

.div-block-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.call-to-action {
  padding-top: 50px;
  padding-bottom: 50px;
}

.centered-container-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 19px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 13px;
  background-color: rgba(0, 87, 66, 0.6);
  text-align: center;
}

.heading-4 {
  margin-top: 15px;
  color: #fff;
}

.cta-button {
  padding: 12px 21px;
  border-radius: 8px;
  background-color: #ea6a46;
  -webkit-transition: background-color 300ms ease;
  transition: background-color 300ms ease;
}

.cta-button:hover {
  background-color: #ec7c5d;
}

.header-title-area {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ea6a46), to(#d6623e));
  background-image: linear-gradient(180deg, #ea6a46, #d6623e);
}

.header-title {
  margin-bottom: 15px;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-size: 30px;
  line-height: 35px;
}

.feature-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.feature-image-mask {
  height: 600px;
  margin-right: 0px;
  margin-left: 40px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 50%;
  -ms-flex: 0 50%;
  flex: 0 50%;
}

.feature-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.page-title-content {
  margin-top: 0px;
  font-size: 22px;
  line-height: 32px;
}

.page-title-content.smaller {
  font-size: 18px;
  line-height: 28px;
}

.page-title-content.smaller.centered {
  margin-top: 33px;
  text-align: center;
}

.subhead-bold {
  color: #ea6a46;
  line-height: 18px;
}

.slider-2 {
  height: 100%;
}

.slide-nav-2 {
  display: none;
}

.slide-5 {
  background-image: url('../images/residential-Key-duplication.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.slide-6 {
  background-image: url('../images/alarm-lock-push-button-lever.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.slide-7 {
  background-image: url('../images/Schlage-push-button-dead-bolt.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonial-frame {
  padding: 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #d3d3d3;
  border-radius: 5px;
}

.entered-line {
  height: 2px;
  max-width: 100px;
  margin: 18px auto;
  border: 1px solid #000;
}

.byline {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

.div-block {
  -webkit-box-flex: 0;
  -webkit-flex: 0 50%;
  -ms-flex: 0 50%;
  flex: 0 50%;
}

.navbar {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #f1f1f1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e9e9e9));
  background-image: linear-gradient(180deg, #fff, #e9e9e9);
}

.container-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.brand {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.with-top-padd {
  margin-top: 24px;
  margin-bottom: 20px;
}

.with-top-padd.centered {
  text-align: center;
}

.lightbox {
  overflow: hidden;
  height: 150px;
}

.lightbox-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.image {
  -o-object-fit: fill;
  object-fit: fill;
}

.image-2 {
  margin-bottom: 25px;
}

.list {
  color: #ea6a46;
  list-style-type: square;
}

.text-block {
  margin-bottom: 15px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .sticky-nav {
    padding-right: 6px;
    padding-left: 6px;
  }

  .nav-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    -ms-grid-columns: 0.75fr -webkit-max-content -webkit-max-content -webkit-max-content;
    -ms-grid-columns: 0.75fr max-content max-content max-content;
    grid-template-columns: 0.75fr -webkit-max-content -webkit-max-content -webkit-max-content;
    grid-template-columns: 0.75fr max-content max-content max-content;
  }

  .nav-logo-link {
    height: 80px;
  }

  .nav-link {
    display: block;
    padding: 14px 4px;
    text-align: center;
  }

  .hero-overlay {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.35))), url('../images/fleet-3.jpg');
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('../images/fleet-3.jpg');
    background-position: 0px 0px, 50% 0%;
    background-size: auto, cover;
  }

  .slider {
    min-height: 300px;
  }

  .heading-2 {
    font-size: 20px;
    line-height: 30px;
  }

  .phone-text.emergency {
    display: none;
  }

  .heading-3 {
    font-size: 30px;
    line-height: 40px;
  }

  .hero-overlay-1 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.35))), url('../images/fleet-3.jpg');
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('../images/fleet-3.jpg');
    background-position: 0px 0px, 50% 0%;
    background-size: auto, cover;
  }

  .hero-overlay-2 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.35))), url('../images/barry-in-office.jpg');
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('../images/barry-in-office.jpg');
    background-position: 0px 0px, 50% 0%;
    background-size: auto, cover;
  }

  .left-container {
    padding-right: 51px;
    padding-left: 51px;
  }

  .left-container.darker {
    padding-right: 35px;
    padding-left: 35px;
  }

  .list-item {
    min-width: 30px;
  }

  .hero-overlay-4 {
    padding-right: 36px;
    padding-left: 36px;
  }

  .cards-grid-container {
    grid-column-gap: 20px;
  }

  .header-title-area {
    padding-right: 20px;
    padding-left: 20px;
  }

  .div-block {
    margin-bottom: 25px;
  }

  .navbar {
    background-color: transparent;
    background-image: none;
  }

  .brand {
    height: 80px;
  }

  .menu-button {
    margin-right: 10px;
    margin-left: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #cfcfcf;
    border-radius: 8px;
    background-color: #fdfdfd;
  }

  .menu-button.w--open {
    border-style: solid;
    border-width: 1px;
    border-color: #ccc;
    background-color: #fff;
  }

  .icon-3 {
    color: #ea6a46;
  }

  .nav-menu {
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    background-color: #fff;
  }

  .lightbox {
    height: 110px;
  }
}

@media screen and (max-width: 767px) {
  .sticky-nav {
    position: relative;
  }

  .nav-grid {
    grid-auto-flow: row;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 100px;
    grid-template-rows: 100px;
    text-align: center;
  }

  .nav-logo-link {
    height: 80px;
  }

  .nav-logo {
    height: 100%;
  }

  .nav-link {
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
  }

  .hero-overlay {
    height: 250px;
    padding: 25px 58px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.56)), to(rgba(0, 0, 0, 0.56))), url('../images/fleet-3.jpg');
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)), url('../images/fleet-3.jpg');
    background-position: 0px 0px, 50% 0%;
    background-size: auto, cover;
  }

  .slider {
    height: 250px;
    min-height: 250px;
  }

  .button {
    margin-top: 3px;
    margin-bottom: 3px;
  }

  .heading-2 {
    font-size: 17px;
    line-height: 24px;
  }

  .phone-text.emergency {
    display: block;
    font-weight: 400;
  }

  .container-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .heading-3 {
    font-size: 23px;
    line-height: 33px;
  }

  .slide-nav {
    display: none;
  }

  .hero-overlay-1 {
    height: 250px;
    padding: 25px 58px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.56)), to(rgba(0, 0, 0, 0.56))), url('../images/fleet-3.jpg');
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)), url('../images/fleet-3.jpg');
    background-position: 0px 0px, 50% 0%;
    background-size: auto, cover;
  }

  .hero-overlay-2 {
    height: 250px;
    padding: 25px 58px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.56)), to(rgba(0, 0, 0, 0.56))), url('../images/barry-in-office.jpg');
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)), url('../images/barry-in-office.jpg');
    background-position: 0px 0px, 50% 0%;
    background-size: auto, cover;
  }

  .left-container {
    padding-right: 25px;
    padding-left: 25px;
    text-align: center;
  }

  .hero-overlay-3 {
    height: 250px;
    padding: 25px 58px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hero-overlay-4 {
    height: 250px;
    padding: 16px 58px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cards-section {
    padding: 40px 20px;
  }

  .cards-grid-container {
    max-width: none;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }

  .button-2 {
    margin-top: 3px;
    margin-bottom: 3px;
  }

  .call-to-action {
    padding: 40px 20px;
  }

  .feature-section {
    padding: 40px 20px;
  }

  .flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .feature-image-mask {
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .feature-image {
    margin-right: auto;
    margin-left: auto;
  }

  .navbar {
    height: 80px;
  }

  .brand {
    height: 60px;
  }

  .lightbox {
    height: 170px;
  }
}

@media screen and (max-width: 479px) {
  a {
    color: #ea6a46;
  }

  .sticky-nav {
    padding: 0px;
  }

  .nav-grid {
    grid-auto-flow: row;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 100px;
    grid-template-rows: 100px;
  }

  .nav-logo-link {
    border-top: 1px none #c4c4c4;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #c4c4c4;
  }

  .hero-overlay {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .centered-container {
    text-align: center;
  }

  .heading-2 {
    font-size: 15px;
    line-height: 22px;
  }

  .subnav-text.left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .subnav-text.left.tight {
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 14px;
  }

  .phone-text {
    text-align: center;
  }

  .phone-text.tight {
    padding-top: 2px;
    padding-bottom: 2px;
    font-weight: 700;
  }

  .phone-text.emergency {
    font-size: 14px;
  }

  .bullet {
    display: none;
  }

  .heading-3 {
    font-size: 21px;
    line-height: 29px;
  }

  .hero-overlay-1 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero-overlay-2 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .left-container {
    padding-right: 0px;
    padding-left: 0px;
    text-align: center;
  }

  .left-container.darker {
    padding-right: 9px;
    padding-left: 9px;
  }

  .hero-overlay-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .icon {
    margin-right: 4px;
    margin-left: 4px;
  }

  .icon-2 {
    margin-right: 34px;
    margin-left: 34px;
  }

  .hero-overlay-4 {
    padding: 8px 23px;
  }

  .centered-container-2 {
    text-align: left;
  }

  .cards-grid-container {
    margin-right: 0px;
    margin-left: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .card-h3 {
    text-align: center;
  }

  .button-2 {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    text-align: center;
  }

  .div-block-card {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .centered-container-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
  }

  .heading-4 {
    text-align: center;
  }

  .header-title {
    text-align: center;
  }

  .feature-image-mask {
    height: 400px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .page-title-content {
    text-align: center;
  }

  .slider-2 {
    margin-bottom: 30px;
  }

  .slide-5 {
    height: 100%;
  }

  .mask {
    overflow: hidden;
  }

  .brand {
    height: 60px;
  }

  .menu-button {
    padding: 12px;
  }

  .lightbox {
    height: 230px;
  }

  .lightbox-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

#w-node-f2262934-1219-816e-627f-2c5529ac4fe0-5a22b4a6 {
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
}

@media screen and (max-width: 767px) {
  #w-node-c9a88ac1-e939-7a28-ee0c-765a9ef3b889-5a22b4a6 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-c9a88ac1-e939-7a28-ee0c-765a9ef3b890-5a22b4a6 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row-align: start;
    align-self: start;
  }

  #w-node-edfb6e6a-3d6c-0507-28b6-ab5f37e07017-5a22b4a6 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row-align: start;
    align-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-f2262934-1219-816e-627f-2c5529ac4fe0-5a22b4a6 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-column-align: auto;
    justify-self: auto;
  }

  #w-node-c9a88ac1-e939-7a28-ee0c-765a9ef3b884-5a22b4a6 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-c9a88ac1-e939-7a28-ee0c-765a9ef3b88b-5a22b4a6 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-edfb6e6a-3d6c-0507-28b6-ab5f37e07012-5a22b4a6 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
}

