/* Divi Hero Slider — engine styles. Scoped to .dhs (hero instances only). */

.dhs {
  --dhs-header: 0px;
  --dhs-transition: 1000ms;
  --dhs-ease: cubic-bezier(.22, .61, .36, 1);
  --dhs-ui: rgba(255, 255, 255, .55);
  --dhs-ui-active: #ffffff;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 80vh;
  min-height: 360px;
  background: #000;
  user-select: none;
  -webkit-user-select: none;
}
.dhs.dhs-height-window { height: calc(100vh - var(--dhs-header)); height: calc(100svh - var(--dhs-header)); }
.dhs.dhs-height-80 { height: 80vh; }
.dhs.dhs-height-60 { height: 60vh; }
.dhs.dhs-height-50 { height: 50vh; }
/* `dhs-height-<n>` with any other number is applied by the engine as <n>vh. */

.dhs .dhs-viewport,
.dhs .dhs-slides { position: absolute; inset: 0; }

/* Slides are stacked; only the active one (and the one leaving) is visible. */
.dhs .dhs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition:
    opacity var(--dhs-transition) ease,
    transform var(--dhs-transition) var(--dhs-ease),
    filter var(--dhs-transition) ease,
    clip-path var(--dhs-transition) cubic-bezier(.22, .61, .36, 1),
    visibility 0s linear var(--dhs-transition);
}
.dhs .dhs-slide.dhs-active {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  transition-delay: 0s;
}
.dhs .dhs-slide.dhs-leaving { z-index: 2; visibility: visible; }

/* The Group fills its slide; its background (image or video) is the slide picture. */
.dhs .dhs-slide > .et_pb_group {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  max-width: none !important;
  height: 100%;
  margin: 0 !important;
  overflow: hidden;
  isolation: isolate;
  background-size: cover;
  background-position: center;
}
/* Divi background video inside a slide group: Divi sizes the player to cover the group;
   this keeps it centred and behind the content. */
.dhs .dhs-slide > .et_pb_group .et-pb-background-video { position: absolute; inset: 0; z-index: -1; display: block; overflow: hidden; }
.dhs .dhs-slide > .et_pb_group .et-pb-background-video .mejs-container { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); margin: 0 !important; }

/* ---- slide transitions ---- */
.dhs.dhs-fx-slide .dhs-slide { transform: translateX(100%); }
.dhs.dhs-fx-slide .dhs-slide.dhs-active { transform: translateX(0); }
.dhs.dhs-fx-slide .dhs-slide.dhs-leaving { transform: translateX(-30%); opacity: 0; }
.dhs.dhs-fx-slide.dhs-reverse .dhs-slide { transform: translateX(-100%); }
.dhs.dhs-fx-slide.dhs-reverse .dhs-slide.dhs-active { transform: translateX(0); }
.dhs.dhs-fx-slide.dhs-reverse .dhs-slide.dhs-leaving { transform: translateX(30%); opacity: 0; }

.dhs.dhs-fx-slideup .dhs-slide { transform: translateY(100%); }
.dhs.dhs-fx-slideup .dhs-slide.dhs-active { transform: translateY(0); }
.dhs.dhs-fx-slideup .dhs-slide.dhs-leaving { transform: translateY(-30%); opacity: 0; }
.dhs.dhs-fx-slideup.dhs-reverse .dhs-slide { transform: translateY(-100%); }
.dhs.dhs-fx-slideup.dhs-reverse .dhs-slide.dhs-active { transform: translateY(0); }
.dhs.dhs-fx-slideup.dhs-reverse .dhs-slide.dhs-leaving { transform: translateY(30%); opacity: 0; }

.dhs.dhs-fx-zoom .dhs-slide { transform: scale(1.08); }
.dhs.dhs-fx-zoom .dhs-slide.dhs-active { transform: scale(1); }
.dhs.dhs-fx-zoom .dhs-slide.dhs-leaving { transform: scale(1); }

.dhs.dhs-fx-cover .dhs-slide { transform: translateX(100%); opacity: 1; }
.dhs.dhs-fx-cover .dhs-slide.dhs-active { transform: translateX(0); }
.dhs.dhs-fx-cover .dhs-slide.dhs-leaving { transform: translateX(0); opacity: 1; }
.dhs.dhs-fx-cover.dhs-reverse .dhs-slide { transform: translateX(-100%); }
.dhs.dhs-fx-cover.dhs-reverse .dhs-slide.dhs-active { transform: translateX(0); }

.dhs.dhs-fx-blur .dhs-slide { filter: blur(18px); transform: scale(1.05); }
.dhs.dhs-fx-blur .dhs-slide.dhs-active { filter: blur(0); transform: scale(1); }
.dhs.dhs-fx-blur .dhs-slide.dhs-leaving { filter: blur(18px); transform: scale(1); }

.dhs.dhs-fx-wipe .dhs-slide { opacity: 1; clip-path: inset(0 0 0 100%); }
.dhs.dhs-fx-wipe .dhs-slide.dhs-active { clip-path: inset(0 0 0 0); }
.dhs.dhs-fx-wipe .dhs-slide.dhs-leaving { clip-path: inset(0 0 0 0); opacity: 1; }
.dhs.dhs-fx-wipe.dhs-reverse .dhs-slide { clip-path: inset(0 100% 0 0); }
.dhs.dhs-fx-wipe.dhs-reverse .dhs-slide.dhs-active { clip-path: inset(0 0 0 0); }

.dhs.dhs-fx-cube .dhs-slides { perspective: 1600px; }
.dhs.dhs-fx-cube .dhs-slide { opacity: 1; backface-visibility: hidden; transform-origin: 0% 50%; transform: translateX(100%) rotateY(90deg); }
.dhs.dhs-fx-cube .dhs-slide.dhs-active { transform-origin: 0% 50%; transform: translateX(0) rotateY(0); }
.dhs.dhs-fx-cube .dhs-slide.dhs-leaving { transform-origin: 100% 50%; transform: translateX(-100%) rotateY(-90deg); opacity: 1; }
.dhs.dhs-fx-cube.dhs-reverse .dhs-slide { transform-origin: 100% 50%; transform: translateX(-100%) rotateY(-90deg); }
.dhs.dhs-fx-cube.dhs-reverse .dhs-slide.dhs-active { transform-origin: 100% 50%; transform: translateX(0) rotateY(0); }
.dhs.dhs-fx-cube.dhs-reverse .dhs-slide.dhs-leaving { transform-origin: 0% 50%; transform: translateX(100%) rotateY(90deg); }

/* ---- tile transitions (dhs-fx-strips-*, dhs-fx-blinds, dhs-fx-grid-*): the engine cuts the
   outgoing (or incoming) picture into tiles that animate above the slides. ---- */
.dhs .dhs-tiles { position: absolute; inset: 0; z-index: 4; pointer-events: none; overflow: hidden; perspective: 1400px; }
.dhs .dhs-tile { position: absolute; background-repeat: no-repeat; will-change: transform, opacity; backface-visibility: hidden; }
.dhs.dhs-tiling .dhs-slide { transition: none !important; }

/* ---- Ken Burns: the engine copies the group's background into .dhs-bg and animates
   that element with the Web Animations API (numeric keyframes, so Chrome and Firefox
   both run it on the compositor). The group's own background is switched off to avoid
   painting the picture twice. ---- */
.dhs .dhs-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
}
.dhs .dhs-slide > .et_pb_group.dhs-has-bg { background-image: none !important; }

/* ---- pointer parallax (engine sets --dhs-px / --dhs-py on the carousel) ---- */
.dhs.dhs-parallax .dhs-slide > .et_pb_group {
  transform: translate3d(calc(var(--dhs-px, 0) * -12px), calc(var(--dhs-py, 0) * -8px), 0) scale(1.03);
  transition: transform .9s cubic-bezier(.22, .61, .36, 1);
}
.dhs.dhs-parallax .dhs-layer {
  --dhs-parallax-x: calc(var(--dhs-px, 0) * 18px);
  --dhs-parallax-y: calc(var(--dhs-py, 0) * 12px);
}

/* ---- layers: hidden until the slide is active, then enter after their delay ---- */
.dhs .dhs-layer {
  --dhs-delay: 0ms;
  --dhs-dur: 1200ms;
  --dhs-out: 900ms;
  --dhs-travel-x: 40px;
  --dhs-travel-y: 28px;
  --dhs-parallax-x: 0px;
  --dhs-parallax-y: 0px;
  --dhs-shift-x: 0px;
  --dhs-shift-y: 0px;
  --dhs-scale: 1;
  --dhs-rot: 0deg;
  --dhs-blur: 0px;
  --dhs-clip: inset(0 0 0 0);
  opacity: 0;
  transform: translate3d(calc(var(--dhs-shift-x) + var(--dhs-parallax-x)), calc(var(--dhs-shift-y) + var(--dhs-parallax-y)), 0) scale(var(--dhs-scale)) rotate(var(--dhs-rot));
  filter: blur(var(--dhs-blur));
  clip-path: var(--dhs-clip);
  transition: opacity var(--dhs-out) ease, transform var(--dhs-out) ease, filter var(--dhs-out) ease, clip-path var(--dhs-out) ease;
  will-change: opacity, transform;
}
.dhs .dhs-slide.dhs-active .dhs-layer {
  opacity: 1;
  --dhs-shift-x: 0px;
  --dhs-shift-y: 0px;
  --dhs-scale: 1;
  --dhs-rot: 0deg;
  --dhs-blur: 0px;
  --dhs-clip: inset(0 0 0 0);
  transition:
    opacity var(--dhs-dur) ease var(--dhs-delay),
    transform var(--dhs-dur) var(--dhs-ease) var(--dhs-delay),
    filter var(--dhs-dur) ease var(--dhs-delay),
    clip-path var(--dhs-dur) var(--dhs-ease) var(--dhs-delay);
}
/* Text inside a slide follows the module's own colour and size, whatever the theme says about paragraphs. */
.dhs .dhs-slide .et_pb_text_inner p,
.dhs .dhs-slide .et_pb_text_inner li { color: inherit; font-size: inherit; line-height: inherit; }
/* entrance offsets (state before the slide is active) */
.dhs .dhs-slide:not(.dhs-active) .dhs-layer.dhs-in-up     { --dhs-shift-y: var(--dhs-travel-y); }
.dhs .dhs-slide:not(.dhs-active) .dhs-layer.dhs-in-down   { --dhs-shift-y: calc(var(--dhs-travel-y) * -1); }
.dhs .dhs-slide:not(.dhs-active) .dhs-layer.dhs-in-left   { --dhs-shift-x: var(--dhs-travel-x); }
.dhs .dhs-slide:not(.dhs-active) .dhs-layer.dhs-in-right  { --dhs-shift-x: calc(var(--dhs-travel-x) * -1); }
.dhs .dhs-slide:not(.dhs-active) .dhs-layer.dhs-in-zoom   { --dhs-scale: .92; }
.dhs .dhs-slide:not(.dhs-active) .dhs-layer.dhs-in-zoomout{ --dhs-scale: 1.12; }
.dhs .dhs-slide:not(.dhs-active) .dhs-layer.dhs-in-rotate { --dhs-rot: -8deg; --dhs-shift-y: var(--dhs-travel-y); }
.dhs .dhs-slide:not(.dhs-active) .dhs-layer.dhs-in-blur   { --dhs-blur: 14px; }
.dhs .dhs-slide:not(.dhs-active) .dhs-layer.dhs-in-reveal { --dhs-clip: inset(0 0 100% 0); --dhs-shift-y: calc(var(--dhs-travel-y) * -1); }
.dhs .dhs-slide:not(.dhs-active) .dhs-layer.dhs-in-wipe   { --dhs-clip: inset(0 100% 0 0); }
.dhs .dhs-slide .dhs-layer.dhs-in-reveal, .dhs .dhs-slide .dhs-layer.dhs-in-wipe { opacity: 1; }
.dhs .dhs-slide:not(.dhs-active) .dhs-layer.dhs-in-reveal, .dhs .dhs-slide:not(.dhs-active) .dhs-layer.dhs-in-wipe { opacity: 1; }
/* exit offsets override while the slide is leaving */
.dhs .dhs-slide.dhs-leaving .dhs-layer.dhs-out-down   { --dhs-shift-y: var(--dhs-travel-y); }
.dhs .dhs-slide.dhs-leaving .dhs-layer.dhs-out-up     { --dhs-shift-y: calc(var(--dhs-travel-y) * -1); }
.dhs .dhs-slide.dhs-leaving .dhs-layer.dhs-out-left   { --dhs-shift-x: calc(var(--dhs-travel-x) * -1); }
.dhs .dhs-slide.dhs-leaving .dhs-layer.dhs-out-right  { --dhs-shift-x: var(--dhs-travel-x); }
.dhs .dhs-slide.dhs-leaving .dhs-layer.dhs-out-zoom   { --dhs-scale: 1.06; }
.dhs .dhs-slide.dhs-leaving .dhs-layer.dhs-out-rotate { --dhs-rot: 6deg; }
.dhs .dhs-slide.dhs-leaving .dhs-layer.dhs-out-blur   { --dhs-blur: 14px; }

/* ---- custom keyframes: `dhs-anim-<name>` plays the author's own @keyframes; the engine
   sets the animation inline when the slide becomes active. `dhs-drift` is built in. ---- */
.dhs .dhs-layer.dhs-custom, .dhs .dhs-slide.dhs-active .dhs-layer.dhs-custom { opacity: 0; transform: none; filter: none; transition: none; }
@keyframes dhsDrift {
  0%   { opacity: 0; transform: translateY(56px); }
  18%  { opacity: 1; transform: translateY(34px); }
  82%  { opacity: 1; transform: translateY(-34px); }
  100% { opacity: 0; transform: translateY(-56px); }
}

/* ---- navigation ---- */
.dhs .dhs-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .28);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity .35s ease, background .2s ease;
}
.dhs .dhs-arrow:hover, .dhs .dhs-arrow:focus-visible { background: rgba(0, 0, 0, .5); }
.dhs:hover .dhs-arrow, .dhs:focus-within .dhs-arrow, .dhs.dhs-arrows-always .dhs-arrow { opacity: 1; }
.dhs .dhs-arrow:focus-visible { outline: 2px solid #fff; outline-offset: 2px; opacity: 1; }
.dhs .dhs-arrow-prev { left: 18px; }
.dhs .dhs-arrow-next { right: 18px; }
.dhs .dhs-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.dhs .dhs-dots {
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0; padding: 0;
  list-style: none;
}
.dhs .dhs-dot {
  width: 10px; height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--dhs-ui);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}
.dhs .dhs-dot[aria-current="true"] { background: var(--dhs-ui-active); transform: scale(1.25); }
.dhs .dhs-dot:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.dhs .dhs-progress {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 10;
  height: 3px;
  width: 100%;
  background: var(--dhs-ui-active);
  transform-origin: left center;
  transform: scaleX(0);
}
.dhs.dhs-playing .dhs-progress { animation: dhsProgress var(--dhs-speed, 7000ms) linear; }
.dhs.dhs-paused .dhs-progress { animation-play-state: paused; }
@keyframes dhsProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.dhs .dhs-thumbs {
  position: absolute;
  right: 18px; bottom: 18px;
  z-index: 10;
  display: flex;
  gap: 6px;
  margin: 0; padding: 0;
  list-style: none;
}
.dhs .dhs-thumb {
  width: 56px; height: 38px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: .7;
  transition: opacity .25s ease, border-color .25s ease;
}
.dhs .dhs-thumb[aria-current="true"], .dhs .dhs-thumb:hover { opacity: 1; border-color: #fff; }
.dhs.dhs-thumbs .dhs-dots, .dhs.dhs-thumbs-strip .dhs-dots { display: none; }
.dhs.dhs-thumbs-strip .dhs-thumbs { left: 0; right: 0; bottom: 0; justify-content: center; gap: 8px; padding: 14px 16px; background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .65)); }
.dhs.dhs-thumbs-strip .dhs-thumb { width: 104px; height: 66px; border-radius: 4px; opacity: .55; transform: translateY(0); transition: opacity .25s ease, border-color .25s ease, transform .25s ease; }
.dhs.dhs-thumbs-strip .dhs-thumb[aria-current="true"] { opacity: 1; transform: translateY(-4px); }

/* slide counter, e.g. "2 / 5" */
.dhs .dhs-counter {
  position: absolute;
  left: 22px; bottom: 16px;
  z-index: 10;
  color: var(--dhs-ui-active);
  font: 500 13px/1 system-ui, sans-serif;
  letter-spacing: .12em;
  pointer-events: none;
}

/* screen-reader announcement */
.dhs .dhs-live { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media (max-width: 767px) {
  .dhs .dhs-arrow { width: 40px; height: 40px; margin-top: -20px; }
  .dhs .dhs-arrow-prev { left: 8px; }
  .dhs .dhs-arrow-next { right: 8px; }
  .dhs .dhs-thumbs { display: none; }
  .dhs.dhs-thumbs .dhs-dots, .dhs.dhs-thumbs-strip .dhs-dots { display: flex; }
}

/* ---- shaped, flashed and folded slide transitions ---- */
.dhs.dhs-fx-circle .dhs-slide { opacity: 1; clip-path: circle(0% at 50% 50%); }
.dhs.dhs-fx-circle .dhs-slide.dhs-active { clip-path: circle(80% at 50% 50%); }
.dhs.dhs-fx-circle .dhs-slide.dhs-leaving { clip-path: circle(80% at 50% 50%); opacity: 1; }
.dhs.dhs-fx-diamond .dhs-slide { opacity: 1; clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%); }
.dhs.dhs-fx-diamond .dhs-slide.dhs-active { clip-path: polygon(50% -60%, 160% 50%, 50% 160%, -60% 50%); }
.dhs.dhs-fx-diamond .dhs-slide.dhs-leaving { clip-path: polygon(50% -60%, 160% 50%, 50% 160%, -60% 50%); opacity: 1; }
.dhs.dhs-fx-diagonal .dhs-slide { opacity: 1; clip-path: polygon(100% 0, 100% 0, 100% 0); }
.dhs.dhs-fx-diagonal .dhs-slide.dhs-active { clip-path: polygon(-120% 0, 100% 0, 100% 220%); }
.dhs.dhs-fx-diagonal .dhs-slide.dhs-leaving { clip-path: polygon(-120% 0, 100% 0, 100% 220%); opacity: 1; }
.dhs.dhs-fx-flash .dhs-slide { filter: brightness(4); }
.dhs.dhs-fx-flash .dhs-slide.dhs-active { filter: brightness(1); }
.dhs.dhs-fx-flash .dhs-slide.dhs-leaving { filter: brightness(4); }
.dhs.dhs-fx-flip .dhs-slides { perspective: 1800px; }
.dhs.dhs-fx-flip .dhs-slide { opacity: 1; backface-visibility: hidden; transform: rotateY(90deg); }
.dhs.dhs-fx-flip .dhs-slide.dhs-active { transform: rotateY(0deg); }
.dhs.dhs-fx-flip .dhs-slide.dhs-leaving { transform: rotateY(-90deg); opacity: 1; }
.dhs.dhs-fx-flip.dhs-reverse .dhs-slide { transform: rotateY(-90deg); }
.dhs.dhs-fx-flip.dhs-reverse .dhs-slide.dhs-active { transform: rotateY(0deg); }
.dhs.dhs-fx-flip.dhs-reverse .dhs-slide.dhs-leaving { transform: rotateY(90deg); }
.dhs.dhs-fx-fold .dhs-slides { perspective: 1800px; }
.dhs.dhs-fx-fold .dhs-slide { opacity: 1; backface-visibility: hidden; transform-origin: 50% 0%; transform: rotateX(-90deg); }
.dhs.dhs-fx-fold .dhs-slide.dhs-active { transform: rotateX(0deg); }
.dhs.dhs-fx-fold .dhs-slide.dhs-leaving { transform-origin: 50% 100%; transform: rotateX(90deg); opacity: 1; }

/* ---- overlays used by the special effects (water, heat, morph, pixelate, torn, brush) ---- */
.dhs .dhs-fxlayer { position: absolute; inset: 0; z-index: 4; pointer-events: none; background-repeat: no-repeat; will-change: transform, opacity, filter; }
.dhs canvas.dhs-pixel { image-rendering: pixelated; image-rendering: crisp-edges; }

/* ---- idle loops on layers: the layer keeps its entrance, its content keeps moving ---- */
.dhs .dhs-slide.dhs-active :is(.dhs-loop-float, .dhs-loop-pulse, .dhs-loop-sway, .dhs-loop-bob, .dhs-loop-glow, .dhs-loop-spin) > * {
  animation-duration: var(--dhs-life, 4000ms);
  animation-delay: var(--dhs-delay, 0ms);
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  animation-fill-mode: both;
}
.dhs .dhs-slide.dhs-active .dhs-loop-float > * { animation-name: dhsLoopFloat; }
.dhs .dhs-slide.dhs-active .dhs-loop-pulse > * { animation-name: dhsLoopPulse; }
.dhs .dhs-slide.dhs-active .dhs-loop-sway > * { animation-name: dhsLoopSway; }
.dhs .dhs-slide.dhs-active .dhs-loop-bob > * { animation-name: dhsLoopBob; }
.dhs .dhs-slide.dhs-active .dhs-loop-glow > * { animation-name: dhsLoopGlow; }
.dhs .dhs-slide.dhs-active .dhs-loop-spin > * { animation-name: dhsLoopSpin; animation-direction: normal; animation-timing-function: linear; }
@keyframes dhsLoopFloat { from { transform: translateY(0); } to { transform: translateY(-10px); } }
@keyframes dhsLoopPulse { from { transform: scale(1); } to { transform: scale(1.045); } }
@keyframes dhsLoopSway { from { transform: rotate(-1.6deg); } to { transform: rotate(1.6deg); } }
@keyframes dhsLoopBob { from { transform: translateY(-6px) rotate(-1deg); } to { transform: translateY(6px) rotate(1deg); } }
@keyframes dhsLoopGlow { from { opacity: .72; filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0)); } to { opacity: 1; filter: drop-shadow(0 0 14px rgba(255, 255, 255, .55)); } }
@keyframes dhsLoopSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ---- a module that drives the slider (dhs-goto-*) ---- */
.dhs .dhs-action { cursor: pointer; }
.dhs .dhs-action:focus-visible { outline: 2px solid var(--dhs-ui-active); outline-offset: 3px; }

/* ---- reduced motion: the film waits for the visitor ---- */
.dhs .dhs-videoplay {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 6;
  width: 64px; height: 64px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(0, 0, 0, .45); color: #fff; cursor: pointer; display: grid; place-items: center;
}
.dhs .dhs-videoplay svg { width: 24px; height: 24px; fill: currentColor; margin-left: 3px; }
.dhs .dhs-videoplay:hover { background: rgba(0, 0, 0, .65); }

/* ---- scroll parallax ---- */
.dhs.dhs-parallax-scroll .dhs-slide > .et_pb_group { transform: translate3d(0, calc(var(--dhs-sy, 0) * -50px), 0) scale(1.14); transition: transform .1s linear; }
.dhs.dhs-parallax-scroll.dhs-parallax .dhs-slide > .et_pb_group { transform: translate3d(calc(var(--dhs-px, 0) * -12px), calc(var(--dhs-sy, 0) * -50px + var(--dhs-py, 0) * -8px), 0) scale(1.14); }

/* ---- pause button (WCAG 2.2.2) ---- */
.dhs .dhs-playbtn {
  position: absolute; right: 18px; bottom: 18px; z-index: 11;
  width: 38px; height: 38px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(0, 0, 0, .35); color: #fff; cursor: pointer;
  display: grid; place-items: center; opacity: .75; transition: opacity .25s ease, background .2s ease;
}
.dhs .dhs-playbtn:hover, .dhs .dhs-playbtn:focus-visible { opacity: 1; background: rgba(0, 0, 0, .55); }
.dhs .dhs-playbtn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.dhs .dhs-playbtn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dhs .dhs-playbtn .dhs-i-play { display: none; fill: currentColor; stroke: none; }
.dhs.dhs-userpaused .dhs-playbtn .dhs-i-pause { display: none; }
.dhs.dhs-userpaused .dhs-playbtn .dhs-i-play { display: block; }
.dhs.dhs-thumbs .dhs-playbtn, .dhs.dhs-thumbs-strip .dhs-playbtn { right: auto; left: 18px; }

/* ---- text bullets (tabs) ---- */
.dhs .dhs-tablist {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 10;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
  margin: 0; padding: 0; list-style: none;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .55));
}
.dhs .dhs-tab {
  border: 0; background: none; color: rgba(255, 255, 255, .7); cursor: pointer;
  padding: 14px 20px; font: 600 13px/1 inherit; letter-spacing: .06em; text-transform: uppercase;
  border-bottom: 3px solid transparent; transition: color .25s ease, border-color .25s ease;
}
.dhs .dhs-tab:hover { color: #fff; }
.dhs .dhs-tab[aria-current="true"] { color: #fff; border-bottom-color: var(--dhs-accent); }
.dhs.dhs-tabs .dhs-dots { display: none; }
@media (max-width: 767px) { .dhs .dhs-tab { padding: 10px 12px; font-size: 11px; } }

/* ---- reduced motion: no zoom, no parallax, short crossfades, layers appear in place ---- */
/* `.dhs-force-motion` is set by `dhs-motion-always` or the ?dhs-motion=1 development switch. */
@media (prefers-reduced-motion: reduce) {
  .dhs:not(.dhs-force-motion):not(.dhs-carousel):not(.dhs-ticker) .dhs-slide { transition-duration: .4s !important; transform: none !important; filter: none !important; clip-path: none !important; }
  .dhs.dhs-carousel:not(.dhs-force-motion) .dhs-slide { transition-duration: .4s !important; }
  .dhs.dhs-parallax:not(.dhs-force-motion) .dhs-slide > .et_pb_group { transform: none !important; }
  .dhs:not(.dhs-force-motion) .dhs-layer,
  .dhs:not(.dhs-force-motion) .dhs-piece { --dhs-shift-x: 0px !important; --dhs-shift-y: 0px !important; --dhs-scale: 1 !important; --dhs-rot: 0deg !important; --dhs-blur: 0px !important; --dhs-parallax-x: 0px !important; --dhs-parallax-y: 0px !important; transition-duration: .4s !important; }
  .dhs:not(.dhs-force-motion) .dhs-progress { animation: none !important; }
  .dhs:not(.dhs-force-motion) .dhs-slide :is(.dhs-loop-float, .dhs-loop-pulse, .dhs-loop-sway, .dhs-loop-bob, .dhs-loop-glow, .dhs-loop-spin) > * { animation: none !important; }
  .dhs:not(.dhs-force-motion) .dhs-piece, .dhs:not(.dhs-force-motion) .et_pb_text_inner :is(h1, h2, h3) { animation: none !important; }
}
