:root {
  --page-padding: 1.5rem;
  --color-text: #fff;
  --color-bg: #1f1f1f;
  --color-link: #fff9;
  --color-link-hover: #fff;
  --color-bg-1: #2f251e;
  --color-bg-2: #43392f;
  --padding: 2rem;
  --gap: 0px;
  font-size: 10px;
}

@media screen and (width <= 800px) {
  :root {
    --gap: 0px;
  }
}

video {
  transform: translate3d(0, 0, 0)translate3d(0, 0, 0);
}

body {
  overscroll-behavior-y: none;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto;
  width: 100%;
  margin: 0;
  overflow-x: hidden;
}

body, html, html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(.5, .5, 1);
  }
}

@media screen and (pointer: coarse) {
  @supports ((-webkit-backdrop-filter: blur(1px))) and (overscroll-behavior-y: none) {
    html {
      overscroll-behavior-y: none;
      min-height: 100.3%;
    }
  }

  @supports ((-webkit-backdrop-filter: blur(1px))) and (not (overscroll-behavior-y: none)) {
    html {
      height: 100%;
      overflow: hidden;
    }

    body {
      -webkit-overflow-scrolling: touch;
      max-height: 100%;
      margin: 0;
      overflow: auto;
    }
  }
}

#svgeffects {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 1000 !important;
}

a {
  color: var(--color-link);
  cursor: pointer;
  outline: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-link-hover);
  outline: none;
}

a:focus {
  background: #d3d3d3;
  outline: none;
}

a:focus:not(:focus-visible) {
  background: none;
}

a:focus-visible {
  background: none;
  outline: 2px solid red;
}

@font-face {
  font-family: Dirtyline36Daysoftype2022;
  src: url("Dirtyline.4de18c9e.woff2") format("woff2");
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: Satoshi-Variable;
  src: url("Satoshi-Variable.09dbc62f.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  text-rendering: optimizeLegibility;
}

.satoshi {
  font-family: Satoshi-Variable;
  font-style: normal;
}

.dirty {
  font-family: Dirtyline36Daysoftype2022;
  font-style: normal;
}

*, :after, :before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header {
  border-radius: 20px;
  height: 100vh;
  overflow: hidden;
}

header .img--wrap {
  border-radius: 20px;
  overflow: hidden;
}

#bgColor {
  filter: brightness(.3) contrast(1.1);
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 0;
  overflow: hidden;
}

@media screen and (width <= 800px) {
  #bgColor {
    visibility: visible;
  }
}

.content--card {
  width: 50vw;
}

.content--half.full {
  width: 100%;
}

.content--half {
  text-align: center;
  flex-direction: column;
  display: flex;
}

.content--half:nth-child(2n) {
  margin-left: auto;
}

.content {
  padding: var(--page-padding);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.content > div {
  flex: 1;
}

.content--sticky {
  --offset: 0px;
  width: 100vw;
  top: 0;
  top: var(--offset);
  height: calc(100vh - var(--offset));
  flex-direction: column;
  align-items: center;
  display: flex;
  position: sticky;
}

.content--sticky > .content__wrapper {
  flex-grow: 1;
  align-self: stretch;
}

.content__wrapper {
  mix-blend-mode: exclusion;
  z-index: 100;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 4vw;
  display: flex;
  position: relative;
}

@media screen and (width <= 800px) {
  .content__wrapper {
    --top: calc(var(--padding) * 2 * 1);
    --bottom: calc(var(--padding) * 2 * 1);
    --left: calc(var(--padding) * 2 * 1);
    --right: calc(var(--padding) * 1 * 1);
    padding: 25px 20px 20px;
    padding: var(--top) var(--right) var(--bottom) var(--left);
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    column-gap: 30px;
    width: 100%;
    height: 80%;
    display: flex;
    flex-grow: 0 !important;
    align-self: flex-start !important;
  }
}

.content__wrapper .content__desc {
  z-index: 10000;
  text-align: left;
}

@media screen and (width >= 800px) and (width <= 1600px) {
  .content__wrapper .content__desc {
    --defaultSize: calc(calc(100vw / 100)  + .0001rem);
    --betterSize: calc(calc(100vw / 100)  + .3rem);
    font-size: var(--betterSize);
  }
}

@media screen and (width >= 1600px) {
  .content__wrapper .content__desc {
    font-size: calc(16px + .1rem);
  }
}

@media screen and (width <= 800px) {
  .content__wrapper .content__desc {
    text-align: left;
    align-self: flex-start;
    padding: 2rem 0 0;
    font-size: 1.2rem;
  }
}

.wrap {
  padding-left: calc(var(--gap) / 4);
  padding-right: calc(var(--gap) / 4);
}

.content--half {
  width: 50%;
}

#container, #spline {
  margin: 0;
  padding: 0;
  height: 100svh !important;
}

@media screen and (width >= 801px) {
  body {
    --page-padding: 0rem 0rem;
    margin: 0;
    padding: 0;
  }

  .content__img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

[blurred] {
  filter: blur(10px);
}

.content__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.content__img.small {
  object-fit: contain;
  transform: scale(.5);
}

[data-content="sudop"] {
  background-color: #35467b;
}

[rounded] {
  border-radius: 20px;
  overflow: hidden;
  transform: translate3d(0, 0, 0)translate3d(0, 0, 0);
}

.img--wrap {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: all .35s;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.img--wrap .content__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0)translate3d(0, 0, 0);
}

@media screen and (width <= 800px) {
  .wrap {
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .content--half {
    transform-origin: top;
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: auto;
    display: flex;
    top: 10px;
  }
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
  display: flex;
}

.flex-row-reverse {
  flex-direction: row-reverse;
  display: flex;
}

.flex-column {
  flex-direction: column;
  display: flex;
}

.flex-row-center {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-row-start {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flex-row-end {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.flex-row-space {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.flex-column-end {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.flex-column-start {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flex-column-space {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.flex-column-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-column-evenly {
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  display: flex;
}

.flex- .flex-center {
  align-items: center;
}

.flex-start {
  align-items: flex-start;
}

.flex-end {
  align-items: end;
}

.inline {
  display: inline-block;
}

p {
  text-transform: uppercase;
  font-family: Satoshi-Variable;
  font-style: normal;
}

.content__title {
  color: #fff;
  z-index: 10;
  pointer-events: none;
  transform-origin: 0;
  text-align: left;
  letter-spacing: 0;
  width: 100%;
  max-width: 40%;
  font-family: Dirtyline36Daysoftype2022;
  font-style: normal;
  line-height: .9;
}

@media screen and (width >= 800px) and (width <= 1600px) {
  .content__title {
    --defaultSize: calc(calc(100vw / 20)  + .0001rem);
    --betterSize: calc(calc(100vw / 20)  + .3rem);
    font-size: var(--betterSize);
  }
}

@media screen and (width >= 1600px) {
  .content__title {
    font-size: calc(80px + .1rem);
  }
}

@media screen and (width <= 800px) {
  .content__title {
    letter-spacing: -.5px;
    font-size: 4rem;
  }
}

h1 {
  color: #b1c2dc;
  padding: 20px;
  font-family: Dirtyline36Daysoftype2022;
  font-style: normal;
  font-weight: normal;
  line-height: .8;
}

@media screen and (width <= 800px) {
  h1 {
    font-size: 50px;
  }
}

h1 span {
  color: #0000;
  text-transform: none;
  background: linear-gradient(90deg, #b1c2dc 50%, #252525 0) 100% 0 / 200% 100% text;
}

.head {
  text-align: left;
  flex-direction: column;
  justify-content: flex-end;
  align-self: flex-start;
  align-items: center;
  max-width: 70%;
  font-family: Dirtyline36Daysoftype2022;
  font-style: normal;
  display: flex;
}

@media screen and (width >= 800px) and (width <= 1600px) {
  .head {
    --defaultSize: calc(calc(100vw / 9)  + .0001rem);
    --betterSize: calc(calc(100vw / 9)  + .3rem);
    font-size: var(--betterSize);
  }
}

@media screen and (width >= 1600px) {
  .head {
    font-size: calc(177.778px + .1rem);
  }
}

@media screen and (width <= 800px) {
  .head {
    font-size: 8rem;
  }
}

section {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  min-height: 50vh;
  display: flex;
}

p {
  text-transform: none;
  --top: calc(var(--padding) * 5 * 1);
  --bottom: calc(var(--padding) * 5 * 1);
  --left: calc(var(--padding) * 2 * 1);
  --right: calc(var(--padding) * 2 * 1);
  padding: var(--top) var(--right) var(--bottom) var(--left);
}

@media screen and (width >= 800px) and (width <= 1600px) {
  p {
    --defaultSize: calc(calc(100vw / 70)  + .0001rem);
    --betterSize: calc(calc(100vw / 70)  + .3rem);
    font-size: var(--betterSize);
  }
}

@media screen and (width >= 1600px) {
  p {
    font-size: calc(22.8571px + .1rem);
  }
}

@media screen and (width <= 800px) {
  p {
    font-size: 2rem;
  }
}

.preload {
  z-index: 100000;
  background-color: #000;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 100lvh;
  display: flex;
  position: fixed;
  top: 0;
  overflow: hidden;
}

.preload.ready {
  position: absolute;
}

.preload [loadAnim] {
  color: #0000;
  text-align: left;
  text-transform: none;
  background: linear-gradient(90deg, #984a05 50%, #000 0) -100% 0 / 200% 100% text;
  line-height: 1;
  display: inline-block;
}

.preload .nextText {
  color: #984a05;
  opacity: 0;
  transform-origin: 0;
}

.preload .head {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.preload .head > span {
  float: left;
  text-wrap: nowrap;
  mix-blend-mode: exclusion;
  width: max-content;
  line-height: 1;
  display: inline-block;
}

.preload .content__title {
  --top: calc(var(--padding) * 1 * 1);
  --bottom: calc(var(--padding) * 1 * 1);
  --left: calc(var(--padding) * 1 * 1);
  --right: calc(var(--padding) * 1 * 1);
  width: 100%;
  max-width: 100%;
  padding: var(--top) var(--right) var(--bottom) var(--left);
}

@media screen and (width >= 800px) and (width <= 1600px) {
  .preload .content__title {
    --defaultSize: calc(calc(100vw / 15)  + .0001rem);
    --betterSize: calc(calc(100vw / 15)  + .3rem);
    font-size: var(--betterSize);
  }
}

@media screen and (width >= 1600px) {
  .preload .content__title {
    font-size: calc(106.667px + .1rem);
  }
}

@media screen and (width <= 800px) {
  .preload .content__title {
    font-size: 3rem;
  }
}

.preload .inner {
  --top: calc(var(--padding) * 2 * 1);
  --bottom: calc(var(--padding) * 4 * 1);
  --left: calc(var(--padding) * 2 * 1);
  --right: calc(var(--padding) * 2 * 1);
  width: 100%;
  height: 100%;
  padding: var(--top) var(--right) var(--bottom) var(--left);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media screen and (width <= 800px) {
  .preload .inner {
    --top: calc(var(--padding) * 1 * 1);
    --bottom: calc(var(--padding) * 7 * 1);
    --left: calc(var(--padding) * 0 * 1);
    --right: calc(var(--padding) * 0 * 1);
    padding: var(--top) var(--right) var(--bottom) var(--left);
  }
}

.preload .row {
  --top: calc(var(--padding) * 0 * 1);
  --bottom: calc(var(--padding) * 0 * 1);
  --left: calc(var(--padding) * 1 * 1);
  --right: calc(var(--padding) * 1 * 1);
  width: 100%;
  padding: var(--top) var(--right) var(--bottom) var(--left);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.preload .progress {
  --top: calc(var(--padding) * 0 * 1);
  --bottom: calc(var(--padding) * 0 * 1);
  --left: calc(var(--padding) * 0 * 1);
  --right: calc(var(--padding) * 0 * 1);
  width: 100%;
  padding: var(--top) var(--right) var(--bottom) var(--left);
  align-items: flex-start;
}

.preload .progress .progress--line {
  background-color: #b1c2dc;
  width: 0;
  height: 1px;
  margin-top: 0;
  display: block;
}

.preload .procenta {
  mix-blend-mode: exclusion;
  flex-direction: row;
  justify-content: flex-end;
  align-self: flex-start;
  align-items: center;
  width: auto;
  display: flex;
}

.preload .no {
  color: #e29d9d;
  mix-blend-mode: exclusion;
  flex-direction: row;
  justify-content: flex-start;
  align-self: flex-end;
  align-items: center;
  width: max-content;
  font-family: Satoshi-Variable;
  font-style: normal;
  font-weight: 300;
  display: inline-block;
}

@media screen and (width >= 800px) and (width <= 1600px) {
  .preload .no {
    --defaultSize: calc(calc(100vw / 100)  + .0001rem);
    --betterSize: calc(calc(100vw / 100)  + .3rem);
    font-size: var(--betterSize);
  }
}

@media screen and (width >= 1600px) {
  .preload .no {
    font-size: calc(16px + .1rem);
  }
}

@media screen and (width <= 800px) {
  .preload .no {
    font-size: 1.3rem;
  }
}

.preload .no > * {
  flex: 0;
}

.preload .no i {
  font-style: normal;
  display: inline-block;
}

body {
  padding: 0;
}
/*# sourceMappingURL=main.e7bd0554.css.map */
