body > main > header#slider__ranges {
  background: transparent url("/img/ranges-slider-2-min.jpeg");
}
body > main > header#slider__automotive {
  background: transparent url("/img/automotive-slider-orig-min.jpeg");
  background-size: cover;
  background-position-y: -480px;
}
body > main > header#slider__marine {
  background: transparent url("/img/marine-slider-2-min.jpeg");
  background-position-y: -380px;
  background-size: cover;
}
body > main > header#slider__home {
  background: transparent url("/img/six-sisters.jpg");
  background-size: cover;
}
body > main > header#slider__industrial {
  background: transparent url("/img/industrial-slider-2-min.jpg");
  background-position-y: -140px;
  background-size: cover;
}
@media (min-width: 768px) {
  body > main > header#slider__industrial {
    background-position-y: -260px;
  }
}
@media (min-width: 992px) {
  body > main > header#slider__industrial {
    background-position-y: -300px;
  }
}
@media (min-width: 1200px) {
  body > main > header#slider__industrial {
    background-position-y: -450px;
  }
}

/* Our Ranges */
#main__our-ranges {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
#main__our-ranges > article {
  display: grid;
  align-content: stretch;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
  border-top: 3px solid rgba(0, 0, 0, 0.16);
}
#main__our-ranges > article:hover, #main__our-ranges > article:active {
  background: #fafafa;
  border-top-color: var(--green);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}
#main__our-ranges > article > a {
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  color: #333333;
}
#main__our-ranges > article figure {
  margin: 0;
  position: relative;
}
#main__our-ranges > article figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
  overflow-x: hidden;
}
#main__our-ranges > article figure figcaption {
  position: absolute;
  display: inline-block;
  top: 8px;
  left: 8px;
  bottom: auto;
  width: auto;
  padding: 5px;
  background: var(--blue);
  font-weight: bold;
  font-size: 1.2em;
  color: white;
}
#main__our-ranges > article main,
#main__our-ranges > article footer {
  padding: 0 15px;
}
#main__our-ranges > article footer {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  text-align: right;
  font-weight: bold;
  color: var(--dkblue);
  border-top: 1px solid #bebebe;
}
#main__our-ranges > article footer .no-col {
  fill: rgba(0, 0, 0, 0.3);
}
#main__our-ranges > article footer svg {
  max-width: 20px;
}
#main__our-ranges > article footer .b-col {
  fill: var(--blue);
}
#main__our-ranges > article footer .g-col {
  fill: var(--green);
}
#main__our-ranges > article:hover footer {
  background-color: var(--green);
  color: white;
}
#main__our-ranges > article:hover footer svg path {
  fill: white;
}

@media only screen and (min-width: 768px) {
  section#main__our-ranges {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  section#main__our-ranges {
    grid-template-columns: repeat(4, 1fr);
  }
}
.our-ranges__brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 30px;
}
.our-ranges__brands__wrapper {
  text-align: center;
}
.our-ranges__brands__wrapper .btn {
  margin-top: 30px;
}
.our-ranges__brands__header {
  display: inline-block;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--dkblue);
}
.our-ranges__brands__header__sub {
  margin-top: 0;
  font-size: 13px;
  font-style: italic;
}
.our-ranges__brands a {
  flex: 0 0 200px;
  margin: 8px;
  padding: 5px;
}
.our-ranges__brands a figure {
  overflow: hidden;
  position: relative;
  margin: 0;
  height: 100%;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-ranges__brands a figure img {
  max-width: 190px;
  max-height: 100px;
  border: 0;
  display: inline-block;
  vertical-align: middle;
}
.our-ranges__brands a figure figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  width: 100%;
  font-size: 1em;
  color: white;
  opacity: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  border-bottom: 6px solid var(--blue);
  background-color: var(--green);
  box-shadow: none;
  margin: 0;
  padding: 0;
}
.our-ranges__brands a figure figcaption p {
  font-size: 1.2em;
  position: relative;
  flex: 1 100%;
  margin: 0px;
}
.our-ranges__brands a figure figcaption p strong {
  font-weight: bolder;
}
.our-ranges__brands a figure figcaption p em {
  font-size: 0.8em;
}
.our-ranges__brands a:hover figcaption, .our-ranges__brands a:active figcaption {
  opacity: 1;
}
.our-ranges__brands.secondary {
  gap: 12px;
  margin: 20px auto 0;
  max-width: 950px;
}
@media (min-width: 1200px) {
  .our-ranges__brands.secondary {
    max-width: 1200px;
  }
}
.our-ranges__brands.secondary a {
  flex: 0 0 140px;
  margin: 8px;
  padding: 5px;
}
.our-ranges__brands.secondary a figure {
  min-height: 50px;
}
.our-ranges__brands.secondary a figure img {
  max-width: 130px;
  max-height: 50px;
}
.our-ranges__brands.secondary a figure figcaption p {
  font-size: 0.9em;
  font-weight: 600;
}

#ranges-auto__services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  #ranges-auto__services {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  #ranges-auto__services {
    grid-template-columns: repeat(6, 1fr);
  }
}
#ranges-auto__services article {
  padding: 30px 20px;
  text-align: center;
  color: white;
  background-color: var(--dkblue);
}
#ranges-auto__services article figure img {
  height: 80px;
}
#ranges-auto__services article h5,
#ranges-auto__services article h6,
#ranges-auto__services article p,
#ranges-auto__services article a {
  color: white;
}
#ranges-auto__services article a:hover,
#ranges-auto__services article a:focus {
  text-decoration: underline;
}

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