/* Breakpoints */
/* Desktop */
/* body font-size in design - no px */
/* screen-size in design - no px */
/* Tablet */
/* Mobile Landscape */
/* Mobile Portrait */
/* CSS Custom Properties for runtime scaling (needed for clamp/calc) */
:root {
  --size-unit: 16;
  --size-container-ideal: 1600;
  --size-container-min: 992px;
  --size-container-max: 1920px;
  --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
  --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));
  --spacing-block: 7.75em;
  --spacing-huge: 5em;
  --spacing-large: 2.5em;
  --spacing-big: 2em;
  --spacing-medium: 1.5em;
  --spacing-normal: 1em;
  --spacing-small: 0.75em;
  --spacing-tiny: 0.5em;
  --frame-color: #151517;
  --inset-size: 20px;
  --hole-radius: 10px;
  --header-offset: 160px;
  --header-size: 100px;
}
@media screen and (max-width: 991px) {
  :root {
    --size-unit: 16;
    --size-container-ideal: 834;
    --size-container-min: 768px;
    --size-container-max: 991px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --size-unit: 16;
    --size-container-ideal: 550;
    --size-container-min: 480px;
    --size-container-max: 767px;
    --spacing-block: 7.5em;
    --spacing-huge: 4em;
    --spacing-large: 2.5em;
    --spacing-big: 2em;
    --spacing-medium: 1.5em;
    --spacing-normal: 1em;
    --spacing-small: 0.75em;
    --spacing-tiny: 0.5em;
    --inset-size: 8px;
  }
}
@media screen and (max-width: 479px) {
  :root {
    --size-unit: 16;
    --size-container-ideal: 390;
    --size-container-min: 320px;
    --size-container-max: 479px;
    --inset-size: 8px;
  }
}
.customCursor {
  display: flex;
  padding: 0.5em 1.5em;
  justify-content: space-between;
  align-items: center;
  gap: 1.25em;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  overflow: clip;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  -webkit-transition: opacity 0.3s 0s cubic-bezier(0.519, -0.014, 0.316, 1.019);
  -moz-transition: opacity 0.3s 0s cubic-bezier(0.519, -0.014, 0.316, 1.019);
  -o-transition: opacity 0.3s 0s cubic-bezier(0.519, -0.014, 0.316, 1.019);
  transition: opacity 0.3s 0s cubic-bezier(0.519, -0.014, 0.316, 1.019);
  will-change: opacity;
  z-index: 9999;
}
.customCursor.active {
  opacity: 1;
  will-change: transform, opacity;
}
