html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.has-scroll-smooth body {
  overflow: hidden;
}
/* .has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
} */
[data-scroll-direction="horizontal"] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}
[data-scroll-direction="horizontal"] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}
.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}
.c-scrollbar:hover {
  transform: scaleX(1.45);
}
.c-scrollbar:hover,
.has-scroll-dragging .c-scrollbar,
.has-scroll-scrolling .c-scrollbar {
  opacity: 1;
}
[data-scroll-direction="horizontal"] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}
[data-scroll-direction="horizontal"] .c-scrollbar:hover {
  transform: scaleY(1.3);
}
.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}
.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
[data-scroll-direction="horizontal"] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}
* {
  outline: none;
  box-sizing: border-box;
}
body {
  color: #bababa;
  margin: 0;
  padding: 0;
  font-family: "Michroma", sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  transition: background-color 0.5s ease;
}
body.dark {
  background-color: #171727;
}
a {
  color: #fff;
  text-decoration: none;
}
.loading_screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 10;
  transition: all 1s cubic-bezier(0.75, -0.01, 0.14, 1);
  clip-path: inset(0% 0% 0% 0%);
}
.loading_screen.hide {
  pointer-events: none;
  clip-path: inset(0% 0% 100% 0%);
}
.loading_screen .loading_circle {
  position: fixed;
  width: 70vh;
  height: 70vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid #45495d;
}
.evoulve_circle {
  position: relative;
  width: 70vh;
  height: 70vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 50%;
}
.overlay,
.show {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 50%;
}
.light {
  border-radius: 50%;
  box-shadow: inset -200px 20px 80px #ffdb00;
  mix-blend-mode: overlay;
  opacity: 1;
}
.color {
  background: #000;
  mix-blend-mode: color;
  opacity: 0.4;
}
.reflect {
  border-radius: 50%;
  box-shadow: inset -20px 20px 60px #fff;
  mix-blend-mode: overlay;
  opacity: 0;
}
.saturate {
  background: #001670;
  mix-blend-mode: lighten;
  opacity: 1;
}
.grey {
  background: #c1cdff;
  mix-blend-mode: color;
  transition: opacity 0.6s ease;
  opacity: 0;
}
section.black {
  background-color: #000;
}
section .wrapper {
  width: 80%;
  margin: 0 auto;
}
section .wrapper.intro {
  padding: 30vh 0;
  position: relative;
  z-index: 2;
}
section h1 {
  font-weight: 630;
  width: 40vw;
  top: -20vh;
  font-size: 12vw;
  word-wrap: break-word;
  text-transform: uppercase;
  position: relative;
  line-height: 1;
  margin: 0;
  padding: 0;
}
section h1.bottom {
  top: 0;
}
section h1 span {
  position: relative;
  display: inline-block;
}
section p {
  text-transform: uppercase;
  width: 100%;
  font-size: 3vw;
  letter-spacing: 3px;
  margin-bottom: 0;
  padding-bottom: 0;
}
hr {
  padding-bottom: 10vh;
  margin-bottom: 10vh;
  border: none;
  border-bottom: 2px solid #bababa;
}
section .expertise {
  display: flex;
  justify-content: space-between;
}
section p.small {
  text-transform: none;
  width: 90%;
  max-width: 300px;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: "Roboto Mono", monospace;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
section ul {
  padding: 0;
  width: 90%;
  max-width: 630px;
  margin-top: 150px;
}
section ul li {
  padding: 10px 0;
  list-style: none;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: "Roboto Mono", monospace;
  border-bottom: 1px solid #bababa;
  display: flex;
  justify-content: space-between;
}
section ul li span {
  opacity: 0.5;
}
section .about {
  position: absolute;
  right: 5vw;
  bottom: 20vh;
  max-width: 250px;
  width: 80%;
}
section .about p.small {
  font-size: 11px;
  text-transform: uppercase;
  padding: 25px 0;
  border-top: 1px solid #bababa;
}
section .about p.small .arrow svg {
  position: relative;
  top: 5px;
  left: 20px;
  height: 25px;
  width: 25px;
}
section .about p.small .arrow.flipped svg {
  transform: scaleY(-1);
}
.arrow svg * {
  fill: none;
  stroke: #bababa;
  stroke-miterlimit: 10;
  stroke-width: 3px;
}
.evoulve_wires {
  position: fixed;
  width: 70vh;
  height: 70vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.evoulve_wires .evoulve_wires-inner {
  width: 100%;
  height: 100%;
  background-color: #000;
}
.evoulve_wires .evoulve_wires-overlay {
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}
.evoulve_wires img {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
html:not(.has-scroll-smooth) section {
  clip: rect(0, auto, auto, 0);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
}
@media screen and (max-width: 500px) {
  .evoulve_circle,
  .evoulve_wires,
  .loading_screen .loading_circle {
    width: 70vw;
    height: 70vw;
  }
  section {
    padding: 10vh 0;
  }
  section p {
    width: 100%;
    font-size: 4vw;
    line-height: 1.8;
    letter-spacing: 1px;
    padding-bottom: 10vw;
    margin-bottom: 10vw;
  }
  section h1 {
    width: 60vw;
    font-size: 20vw;
    top: 0;
  }
  section h1.bottom {
    top: 0;
  }
  section .wrapper.intro {
    padding: 0;
  }
  hr {
    padding-bottom: 0;
    margin-bottom: 50px;
    margin-top: 0;
    padding-top: 0;
  }
  section .about {
    left: 10vw;
    bottom: 15vh;
  }
  section ul {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  section .expertise {
    display: block;
  }
}
