/*scrollers*/
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  ::-webkit-scrollbar {
    width: 4px;
  }

  /* Scrollbar track */
  ::-webkit-scrollbar-track {
    background: #212b394d; /* track */
    position: relative;
  }

  /* Scrollbar thumb */
  ::-webkit-scrollbar-thumb {
    background-color: white; /* thumb background*/

    border: 0px solid rgba(100, 100, 100, 0.3); /* semi-transparent border */
    border-radius: 0px; /* rounded edges */
    box-sizing: border-box;
  }

  ::-webkit-scrollbar-corner {
    background-color: transparent;
  }
}
/*video*/
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/*Base*/
ul {
  list-style: none;
  padding-left: 0;
  padding: 3px 0px 3px 0 !important;
}

li {
  position: relative;
  color: #ffffff;
  margin-bottom: 4px;
  padding-left: 12px;
  margin-left: 12px;
  line-height: 1;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 50%;
}
/* Texts */
.henus-base {
  font-family: "Henus", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, Arial;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  leading-trim: cap-height;
  font-variant-numeric: stacked-fractions slashed-zero;
  font-feature-settings: "frac" 1, "zero" 1;

  -webkit-font-smoothing: antialiased;
}

.base-link {
  color: white;
}

.base-text {
  color: white;
}

/*Header*/
.font-henus-big {
  font-family: "Henus";
  font-weight: 400;
  font-style: normal;
  font-size: 32px;

  line-height: 42px;
  letter-spacing: 0.5px;
  text-align: center;

  font-variant-numeric: stacked-fractions slashed-zero;
  font-feature-settings: "frac" 1, "zero" 1;

  -webkit-font-smoothing: antialiased;
}

.font-henus-small {
  font-family: "Henus", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, Arial, sans-serif;
  font-weight: 400;
  font-style: normal; /* "Regular" в CSS → normal */
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0;
  color: #d2d2d2;
  opacity: 0.6;
  transform: rotate(0deg); /* angle: 0deg */
}

.font-henus-base-16 {
  font-family: "Henus", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, Arial, sans-serif;
  font-weight: 400;
  font-style: normal; /* "Regular" в CSS → normal */
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #f6f3e7;
}

.font-henus-base-13 {
  font-family: "Henus", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, Arial, sans-serif;
  font-weight: 400 !important; /*  400 */
  font-style: normal;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0;
  color: #ffffff;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.blur-overlay {
  position: absolute;
  bottom: 118px;
  height: 137px;
  left: 0;
  right: 0;
  filter: blur(84px);
  mask: linear-gradient(#f6f3e700, #f6f3e790 25%, #f6f3e7f0 45%, #f6f3e7 75%, #f6f3e7);
  backdrop-filter: blur(84px);
}
