/**
 * This CSS was automatically generated from a source file.
 * Editing this file directly isn't recommended. Modifying the styles of this module can be done
 * with an external stylesheet attached to the page or module.
 */

.wheel-hero {
  --animation-tick: 0.05s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 153px;
}
@media not screen and (min-width: 64rem) {
  .wheel-hero {
    flex-direction: column;
    gap: 40px;
  }
}
.wheel-hero__animation-label {
  margin-top: 32px;
  padding-top: 6px;
  max-width: 248px;
  border-top: 1px solid;
}
.wheel-hero__canvas {
  --rotation: 0deg;
  position: relative;
}
@media (min-width: 64rem) {
  .wheel-hero__canvas {
    width: 50%;
    max-width: 587px;
    flex-shrink: 0;
  }
  .wheel-hero__canvas.animate-on-scroll.is-visible {
    transition-delay: calc(var(--animation-duration) * 0.8);
  }
}
.wheel-hero__canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10000px;
  border: 2px solid #D9D9D9;
  border-right-color: transparent;
  border-left-color: transparent;
  transform: rotate(calc(-1 * var(--rotation) - 45deg));
  transition: var(--animation-tick) linear transform;
}
.wheel-hero__canvas .company-logo {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 0;
  width: 15%;
  height: auto;
  transition: 0.2s ease-out;
}
.wheel-hero__wheel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  padding: 40px;
  transform: rotate(var(--rotation));
  transition: var(--animation-tick) linear transform;
  position: relative;
  z-index: 100;
}
.wheel-hero__wheel:hover .wheel-hero__slice:is(:not(:hover):not(:focus-visible):not(.active)), .wheel-hero__wheel.hover .wheel-hero__slice:is(:not(:hover):not(:focus-visible):not(.active)), .wheel-hero__wheel:focus-visible .wheel-hero__slice:is(:not(:hover):not(:focus-visible):not(.active)), .wheel-hero__wheel.focus-visible .wheel-hero__slice:is(:not(:hover):not(:focus-visible):not(.active)) {
  opacity: 0.25;
}
@supports not (selector(:has(:focus-visible))) {
  .wheel-hero__wheel:focus-within .wheel-hero__slice:is(:not(:hover):not(:focus-visible):not(.active)) {
    opacity: 0.25;
  }
}
@supports (selector(:has(:focus-visible))) {
  .wheel-hero__wheel:has(:focus-visible) .wheel-hero__slice:is(:not(:hover):not(:focus-visible):not(.active)) {
    opacity: 0.25;
  }
}
.wheel-hero__slice {
  --slice-rotation: calc(90deg * var(--index));
  width: 100%;
  height: 100%;
  transform: rotate(var(--slice-rotation));
  display: block;
  transition: 0.2s ease-out;
  position: relative;
  font-size: 1.25em;
  text-decoration: none;
}
.wheel-hero__slice:hover + .wheel-hero__slice-content, .wheel-hero__slice.hover + .wheel-hero__slice-content, .wheel-hero__slice:focus-visible + .wheel-hero__slice-content, .wheel-hero__slice.focus-visible + .wheel-hero__slice-content, .wheel-hero__slice.active + .wheel-hero__slice-content {
  opacity: 1;
  visibility: visible;
}
.wheel-hero__slice svg {
  width: 100%;
  height: 100%;
  display: block;
}
.wheel-hero__slice[data-index="1"] {
  transform: rotate(calc(-1 * var(--slice-rotation)));
  grid-column: 1;
  grid-row: 2;
}
.wheel-hero__slice[data-index="2"] {
  grid-column: 2;
  grid-row: 2;
}
.wheel-hero__slice[data-index="3"] {
  transform: rotate(calc(-1 * var(--slice-rotation)));
  grid-column: 2;
  grid-row: 1;
}
.wheel-hero__slice:focus-visible {
  outline: none;
  z-index: 100;
}
.wheel-hero__slice:focus-visible .wheel-hero__circle {
  stroke: var(--focus-color);
  stroke-width: 2px;
}
.wheel-hero__circle {
  fill: var(--slice-color);
  fill-rule: evenodd;
}
.wheel-hero__slice-label {
  text-anchor: middle;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: bold;
  fill: var(--body-text-color);
}
.wheel-hero__slice-content {
  --fraction: 1 / 2.25;
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc((100% - 40px) * var(--fraction));
  aspect-ratio: 1/1;
  border-radius: 1000px;
  background-color: var(--slice-color);
  text-align: center;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.5s, var(--animation-tick) linear transform;
  visibility: hidden;
  pointer-events: none;
  line-height: 2;
  font-size: clamp(0.5rem, 1.25vw, 0.875rem);
  transform: rotate(calc(-1 * var(--rotation)));
}
@media (min-width: 48rem) {
  .wheel-hero__slice-content {
    --fraction: 1 / 2;
  }
}
.wheel-hero__slice-content * {
  margin: 0;
}