@import url("https://fonts.googleapis.com/css2?family=Anton&family=Fjalla+One&family=Rajdhani:wght@500&display=swap");
html.lenis {
  height: auto;
}

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

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

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

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

.plogue-page {
  display: none;
}

.plogue-page.current {
  display: block;
}

.ploque-sticky {
  display: flex;
  position: relative;
}

.ploque-sticky .ploque-sticky-wrapper {
  flex-grow: 1;
}

.ploque-sticky .ploque-sticky-container {
  position: sticky;
  top: 0px;
}

.ploque-sticky .ploque-sticky-spacer {
  min-height: 100vh;
}

.page-transition {
  --plogue-transition-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}

.page-transition.trans-out {
  pointer-events: none;
}

.transition-fade {
  transition-property: opacity;
  background-color: var(--plogue-transition-color);
}

.transition-fade.trans-out {
  opacity: 1;
}

.transition-fade.trans-in {
  opacity: 0;
}

.transition-fade.trans-in.start {
  opacity: 1;
}

.transition-fade.trans-out.start {
  opacity: 0;
}

.transition-dissolve > div {
  background-color: var(--plogue-transition-color);
  transition-property: opacity 0.35s;
  float: left;
}

.transition-dissolve.trans-out > div {
  opacity: 1;
}

.transition-dissolve.trans-in > div {
  opacity: 0;
}

.transition-dissolve.trans-out.start > div {
  opacity: 0;
}

.transition-dissolve.trans-in.start > div {
  opacity: 1;
}

.transition-void {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.transition-void > div {
  border-radius: 100%;
  flex-shrink: 0;
  width: 1px;
  height: 1px;
}

.transition-void.trans-out > div {
  background-color: transparent !important;
  transition-property: width, height;
  width: 1px;
  height: 1px;
  box-shadow: 0px 10px 0px var(--plogue-void-radius) var(--plogue-transition-color);
}

.transition-void.trans-out.start > div {
  width: var(--plogue-void-diameter);
  height: var(--plogue-void-diameter);
}

.transition-void.trans-in > div {
  background-color: var(--plogue-transition-color);
  transition-property: width, height;
  width: 1px;
  height: 1px;
}

.transition-void.trans-in.start > div {
  width: var(--plogue-void-diameter);
  height: var(--plogue-void-diameter);
}

.transition-bar > div {
  background-color: var(--plogue-transition-color);
}

.transition-bar.transition-bar-vertical > div {
  height: 0%;
  transition-property: height;
}

.transition-bar.transition-bar-vertical.trans-out > div {
  transition-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
  height: 100%;
}

.transition-bar.transition-bar-vertical.trans-in > div {
  height: 0%;
}

.transition-bar.transition-bar-vertical.trans-in.start > div {
  height: 100%;
}

.transition-bar.transition-bar-vertical.trans-out.start > div {
  height: 0;
}

.transition-bar.transition-bar-horizontal {
  flex-direction: column;
}

.transition-bar.transition-bar-horizontal > div {
  width: 0%;
  transition-property: width;
}

.transition-bar.transition-bar-horizontal.trans-out > div {
  width: 100%;
}

.transition-bar.transition-bar-horizontal.trans-in > div {
  width: 0%;
}

.transition-bar.transition-bar-horizontal.trans-in.start > div {
  width: 100%;
}

.transition-bar.transition-bar-horizontal.trans-out.start > div {
  width: 0;
}


html, body {
  background-color: #000;
  font-family: Rajdhani, Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #b8b8b8;
}

body {
  overflow-x: hidden !important;
  overflow: hidden;
}

html {
  --scale_width: 1;
  --jq-gray-300: #5b5b5b;
  --jq-gray-400: #aeaeae;
  --jq-scrollbar-track: rgba(0,0,0,0);
}

.wrapper {
  width: calc(1200px * var(--scale_width));
  max-width: 100%;
}

#app-brand {
  position: fixed;
  top: 20px;
  left: 30px;
  z-index: 9;
}
#app-brand img {
  height: 30px;
}

#app-menus {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 9;
}
#app-menus a {
  text-decoration: none !important;
  font-size: 18px;
}
#app-menus a:hover {
  color: #fff;
}

#app-bg {
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 0;
  transition: top 0.2s linear;
}

#app-container {
  position: relative;
  z-index: 1;
}

section.fullview {
  height: 100vh;
}
section.fullview-min {
  min-height: 100vh;
}

.tfx {
  overflow: hidden;
  line-height: 1;
  height: 1.1em;
  transition-duration: 0.75s;
  transition-property: all;
  opacity: 0;
}

.tfx-appear .tfx {
  padding-top: 1.1em;
}
.tfx-appear.tfx-start .tfx, .tfx-appear.tfx-hover:hover .tfx {
  padding-top: 0;
  opacity: 1;
}

.tfx-flip {
  display: inline-block;
  perspective: 1000px;
  perspective-origin: 50% 300%;
}
.tfx-flip .tfx {
  transform: rotateX(60deg);
  opacity: 0;
}

.tfx-sequent .tfx:nth-child(2) {
  transition-delay: 0.05s;
}
.tfx-sequent .tfx:nth-child(3) {
  transition-delay: 0.1s;
}
.tfx-sequent .tfx:nth-child(4) {
  transition-delay: 0.15s;
}
.tfx-sequent .tfx:nth-child(5) {
  transition-delay: 0.2s;
}
.tfx-sequent .tfx:nth-child(6) {
  transition-delay: 0.25s;
}
.tfx-sequent .tfx:nth-child(7) {
  transition-delay: 0.3s;
}
.tfx-sequent .tfx:nth-child(8) {
  transition-delay: 0.35s;
}
.tfx-sequent .tfx:nth-child(9) {
  transition-delay: 0.4s;
}
.tfx-sequent .tfx:nth-child(10) {
  transition-delay: 0.45s;
}

.tfx-sequent-up .tfx:nth-last-child(2) {
  transition-delay: 0.05s;
}
.tfx-sequent-up .tfx:nth-last-child(3) {
  transition-delay: 0.1s;
}
.tfx-sequent-up .tfx:nth-last-child(4) {
  transition-delay: 0.15s;
}
.tfx-sequent-up .tfx:nth-last-child(5) {
  transition-delay: 0.2s;
}
.tfx-sequent-up .tfx:nth-last-child(6) {
  transition-delay: 0.25s;
}
.tfx-sequent-up .tfx:nth-last-child(7) {
  transition-delay: 0.3s;
}
.tfx-sequent-up .tfx:nth-last-child(8) {
  transition-delay: 0.35s;
}
.tfx-sequent-up .tfx:nth-last-child(9) {
  transition-delay: 0.4s;
}
.tfx-sequent-up .tfx:nth-last-child(10) {
  transition-delay: 0.45s;
}

.hilighter {
  position: relative;
  color: #555 !important;
  display: inline-block;
}
.hilighter > div {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
  width: 0%;
  color: #c1c1c1;
  white-space: nowrap;
}

section {
  position: relative;
}
section .section-number {
  color: #444;
  font-size: max(16px, 22px * var(--scale_width));
  font-family: "Fjalla One";
  position: relative;
  padding-left: 60px;
}
section .section-number:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: 50px;
  display: block;
  border-top: solid 1px;
  border-color: currentColor;
}

#cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.36s;
  mix-blend-mode: difference;
}

.cursor_a #cursor {
  transform: translate(-50%, -50%) scale(8);
}

h1, h2, h3 {
  line-height: 1.25;
}

.f-main {
  font-family: "Anton";
  font-weight: normal !important;
  color: #e0e0e0;
}

.f-sec {
  font-family: "Fjalla One";
  color: #e0e0e0;
}

.f-title {
  line-height: 1.1;
  padding-bottom: 10px;
  display: inline-block;
}

.text-brand1 {
  color: #8d79ff;
}

.gradient-text2 {
  color: #8d79ff;
}

.gradient-text {
  background: linear-gradient(90deg, rgb(50, 127, 228) 0%, #cc57f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.btn {
  position: relative;
  display: inline-flex;
  min-width: 100px;
  min-height: 60px;
  border-radius: 40px;
  outline: 0;
  border: 0;
  padding: 0 70px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 20px;
}

.btn-gradient {
  background: linear-gradient(90deg, rgb(63, 97, 136) 0%, rgb(202, 68, 255) 100%);
}

.btn-outline {
  margin-top: 40px;
  overflow: hidden;
  background: #444;
  text-decoration: none !important;
}
.btn-outline > span {
  position: relative;
  z-index: 1;
}
.btn-outline:after {
  border-radius: 40px;
  content: "";
  display: block;
  position: absolute;
  inset: 2px;
  z-index: 1;
  background: #000;
}
.btn-outline:before {
  content: "";
  display: block;
  position: absolute;
  height: 80px;
  background-color: #fff;
  opacity: 0;
  transition: all 1.3s;
  left: 0%;
  width: 100%;
}
.btn-outline > span {
  position: relative;
  z-index: 3;
}
.btn-outline:hover:before {
  animation: btn-outline-anim 0.6s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes btn-outline-anim {
  0% {
    left: -100%;
    opacity: 1;
  }
  40% {
    left: 100%;
    opacity: 1;
  }
  41% {
    left: 0%;
    opacity: 0;
    width: 30%;
  }
  100% {
    left: 0%;
    width: 100%;
    opacity: 0.75;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg); /* Starting rotation */
  }
  100% {
    transform: rotate(360deg); /* Ending rotation (one full turn) */
  }
}
.spinner {
  display: none;
}
.spinner > span {
  display: block;
  width: 1.6em;
  height: 1.6em;
  border: solid 3px #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0.7;
}

.spinning {
  position: relative;
  pointer-events: none;
}
.spinning > span {
  visibility: hidden;
}
.spinning .spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.spinning .spinner > span {
  animation: spin 1s linear infinite;
}

#section-hero {
  position: relative;
}
#section-hero .title {
  font-size: max(70px, 120px * var(--scale_width));
  transform: translateY(100px);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
#section-hero .lead {
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(100px);
  opacity: 0;
  width: max(320px, 800px * var(--scale_width));
  max-width: 100%;
  font-size: max(18px, 23px * var(--scale_width));
  margin: auto;
  transition-delay: 0.1s;
}
#section-hero.ready .title {
  transform: translateY(0);
  opacity: 1;
}
#section-hero.ready .lead {
  transform: translateY(0);
  opacity: 1;
}

#scdown {
  position: absolute;
  width: 70px;
  text-align: center;
  opacity: 0.4;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s;
}
#scdown img {
  width: 40px;
}

#section-case {
  padding-top: 200px;
  margin-bottom: 200px;
}

.case-thumb {
  position: relative;
}
.case-thumb .thumb-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.case-thumb .thumb-wrapper .thumb {
  width: 100%;
  transform: translateY(-40%) scale(1.1);
}

.case-desc {
  margin-top: 20px !important;
  margin-bottom: 20px;
}

.case-link {
  display: block;
  text-decoration: none !important;
}

#section-expert {
  background: no-repeat linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background-size: 100% 60vh;
}

#experties {
  height: 100vh;
}
#experties h2 {
  font-size: max(60px, 80px * var(--scale_width));
}

.experties-item {
  padding-bottom: 50px;
}
.experties-item .title {
  font-size: max(20px, 30px * var(--scale_width));
}
.experties-item .desc {
  font-size: max(18px, 22px * var(--scale_width));
  color: #999;
}

.reveal {
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.75s;
}
.reveal.is-reveal {
  transform: translateY(0);
  opacity: 1;
}

.is-reveal.slide-start .tfx {
  padding-top: 0;
  opacity: 1;
}

@media (max-width: 767.9px) {
  #experties {
    height: auto !important;
    margin-bottom: 30px;
  }
}
#section-services {
  pointer-events: none;
}
#section-services .header h2 {
  font-size: max(20px, 30px * var(--scale_width));
  margin: 0;
}
#section-services .item .title {
  font-size: max(40px, 60px * var(--scale_width));
}
#section-services .item .desc {
  font-size: max(16px, 22px * var(--scale_width));
}
#section-services .header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  padding: 30px 0;
  padding-top: 100px;
}
#section-services .header h2 {
  font-size: max(20px, 30px * var(--scale_width));
}
#section-services .content {
  position: relative;
  overflow: hidden;
}
#section-services .content #services_bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, #074697 0%, #8b10b1 100%);
  height: max(560px, 640px * var(--scale_width));
  pointer-events: none;
}
#section-services .item {
  z-index: 1;
  overflow: hidden;
  height: max(140px, 160px * var(--scale_width));
  border-top: solid 1px #333;
  transition: all 0.35s;
  transition-delay: 0.15s;
  position: relative;
}
#section-services .item .hilighter > div {
  color: #fafafa;
}
#section-services .item:last-child {
  border-bottom: solid 1px #333;
}
#section-services .item .num {
  position: absolute;
  z-index: 1;
  inset: 0;
}
#section-services .item .num .wrapper {
  text-align: right;
  padding-top: 50px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.4);
  font-size: max(18px, 30px * var(--scale_width));
}
#section-services .item:hover .item-content {
  transform: translateY(-50%);
}
#section-services .item .item-content {
  transition: all 0.75s cubic-bezier(0.33, 1, 0.68, 1);
}
#section-services .item .item-content > div {
  display: flex;
  align-items: center;
  height: max(140px, 160px * var(--scale_width));
}
#section-services .item .item-content .a {
  background-color: #000;
}
#section-services .item .item-content .a .title {
  pointer-events: visible;
  height: max(140px, 160px * var(--scale_width));
}
#section-services .item .item-content .b {
  color: #fff;
  pointer-events: visible;
}
#section-services .item .item-content .b .desc {
  width: 60%;
  max-width: 100%;
  font-weight: 500;
}
#section-services .item .a .title {
  transform: translateX(60%);
  opacity: 0;
}
#section-services .item.is-reveal .a .f-sec {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 767.9px) {
  #section-services .item .b .desc {
    width: 100% !important;
  }
  #section-services .item .num {
    display: none;
  }
}
#section-works {
  display: flex;
  height: 100vh;
  align-items: center;
  --work-item-width: 3.5;
}
#section-works .section-number {
  color: rgba(255, 255, 255, 0.4);
}

.works-scroll-indicator {
  width: 30vw;
  height: 3px;
  background-color: #333;
  position: absolute;
  bottom: 40px;
  left: 35vw;
  transition: opacity 0.35s;
}
.works-scroll-indicator > div {
  background-color: #666;
  height: 3px;
  width: 0%;
}

.works-container {
  overflow: hidden;
  padding: 0 16px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.works-container::-webkit-scrollbar {
  display: none;
}
.works-container .work-desc {
  width: calc(100vw / var(--work-item-width));
  border-radius: 6px;
}
.works-container .work-desc .title {
  font-size: max(20px, 30px * var(--scale_width));
}
.works-container .work-desc .content {
  width: calc(100vw / var(--work-item-width));
  height: calc(100vw / var(--work-item-width));
  background-color: #412b8f;
}
.works-container .work-item {
  width: calc(100vw / var(--work-item-width));
  border-radius: 6px;
}
.works-container .work-item .work-thumb {
  overflow: hidden;
  height: calc(100vw / var(--work-item-width));
  display: block;
}
.works-container .work-item .thumb {
  width: calc(100vw / var(--work-item-width));
  position: relative;
  width: 100%;
  display: block;
  border-radius: 6px;
  transition: 0.8s;
}
.works-container .work-item .desc {
  height: 1.25em;
  overflow: hidden;
}
.works-container .work-item .desc > div {
  transition: transform 0.5s;
  transform: translateY(-50%);
}
.works-container .work-item:hover .desc > div {
  transform: translateY(0%);
}
.works-container .work-item:hover .thumb {
  transform: scale(1.1);
}

@media (max-width: 767.9px) {
  #section-works {
    --work-item-width: 1.2;
  }
  .works-scroll-indicator {
    display: none;
  }
  .work-item-wrapper {
    left: 0;
    transform: none !important;
  }
  .works-container {
    overflow-x: auto !important;
    overflow-y: hidden;
    padding: 0 16px;
  }
  .work-desc .title {
    font-size: 30px !important;
  }
}
#section-contact {
  position: relative;
}
#section-contact h2 {
  font-size: max(60px, 80px * var(--scale_width));
}
#section-contact .footer {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
}

#contact {
  backdrop-filter: blur(10px);
  --jq-input-border-focus: #d2d2d2;
  --jq-input-border: #444;
  min-height: 100vh;
}
#contact .input {
  border-color: #444 !important;
}

#contact_form {
  opacity: 0;
  transform: translateY(300px);
  transition: all 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.4s;
}
#contact_form .title {
  font-size: max(80px, 100px * var(--scale_width));
}
#contact_form .desc {
  font-size: max(18px, 20px * var(--scale_width));
}

.start #contact_form {
  opacity: 1;
  transform: translateY(0);
}

#toas_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
#toas_wrapper > div {
  background: #684ff7;
  border: solid 2px #fff;
  border-radius: 80px;
  padding: 20px 60px;
  color: #fff;
  transform: translateY(-130px);
  transition: transform 0.35s;
  font-weight: bold;
}
#toas_wrapper.show > div {
  transform: translateY(40px);
}

.footer {
  border-top: solid 1px #272727;
  z-index: 1;
  position: relative;
}
.footer > div {
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer a {
  color: #999;
}
.footer .social {
  text-align: right;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: solid 1px #444;
  transition: 0.35s;
}
.social a:hover {
  border-color: #fff;
}

@media (max-width: 767.9px) {
  section.m-auto-height {
    height: auto;
  }
  #section-services {
    margin-bottom: 100px;
  }
}

/*# sourceMappingURL=app.css.map */
