/* Hero orbit slider: crossfade on the big circle, active state on the service badges */
.hero-photo img {
  transition: opacity .2s ease-out;
}
.hero-photo.is-swapping img {
  opacity: 0;
}
.hero-service {
  cursor: pointer;
}
.hero-service .service-orbit,
.hero-service > span:last-child {
  transition: transform .22s, background .22s, color .22s, box-shadow .22s;
}
.hero-service.is-active .service-orbit {
  background: var(--orbit);
  transform: rotate(-7deg) scale(1.1);
  box-shadow: 0 0 0 .32cqw #050b0b, 0 0 0 .6cqw var(--orbit), 0 .5cqw .8cqw #000c;
}
.hero-service.is-active .service-orbit .icon,
.hero-service--1.is-active .service-orbit .icon,
.hero-service--4.is-active .service-orbit .icon {
  color: #090f10;
}
.hero-service.is-active > span:last-child {
  color: var(--orbit);
  transform: translateX(.25cqw);
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo img,
  .hero-service .service-orbit,
  .hero-service > span:last-child {
    transition: none;
  }
}
