.hero-carousel {
  position: relative !important;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: none !important;
  color: #fff;
}
.page-hero.hero-carousel::before { content: none; }
.hero-carousel .hero-slides {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 500%;
  height: 100%;
  display: flex;
  transform: translateX(0);
  transition: transform 780ms ease;
  z-index: -2;
}
.hero-carousel .hero-slides.no-transition { transition: none; }
.hero-carousel .hero-slide {
  flex: 0 0 20%;
  height: 100%;
  position: relative;
  background-position: center;
  background-size: cover;
}
.hero-carousel .hero-slide::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.30);
}
.hero-carousel .hero-text {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}
.page-hero.hero-carousel .hero-text { text-align: center; }
.page-hero.hero-carousel .crumb a { color: #fff; }
.hero-phone {
  display: block;
  margin: 18px auto 0;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 760px) {
  .hero-carousel .hero-slide::after { background: rgba(0, 0, 0, 0.30); }
}
