@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  overflow: hidden;
}
body {
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #000;
  background-image: url("../img/bg-shape.png");
  background-size: cover;
  font-family: "Poppins", sans-serif;
  overflow: hidden !important;
  height: 100dvh;
  cursor: none;
}
body::-webkit-scrollbar {
  display: none;
}

body::-webkit-scrollbar-track {
  display: none;
}

body::-webkit-scrollbar-thumb {
  display: none;
}
::selection {
  background-color: #121212;
  color: #fff;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.loading-screen {
  position: fixed;
  top: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transform: scaleX(0);
}
.load-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 900;
  pointer-events: none;
}
.circle-transition {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50%;
  transform-origin: 50% 50%;
  transform: scale(0);
  z-index: 999;
  pointer-events: none;
}
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  left: -5px;
  top: -5px;
  transform: translate(-50%, -50%);
  transform-origin: center;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.grow {
  width: 100px;
  height: 100px;
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s;
}
header {
  position: absolute;
  display: block;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
header .nav {
  padding: 0 20px;
}
header .nav .nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  margin: 25px 0;
  gap: 100px;
}
.nav .nav-list .list-item {
  margin-right: -10px;
}
.nav .nav-list a {
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: block;
}
.nav .nav-list .list-item a:hover {
  transform: scale(1.2);
}
.nav .nav-list .link-item-logo.no-point:hover {
  transform: scale(1);
}
.link-item-logo.no-point {
  pointer-events: none;
}
.list-item {
  width: 150px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.header-logo {
  position: relative;
  width: 65px;
  height: 61px;
  margin: auto;
  transition: opacity 0.3s ease;
}
.header-logo.bigLogo {
  top: -500px;
  transform: scale(2.7);
}
.header-logo.logo {
  top: 0 !important;
  transition: all 0.3s ease;
}
.link-item {
  transition: all 0.8s ease;
  opacity: 1;
  visibility: visible;
}
.link-item.fade-left {
  transform: translateX(-150px);
  opacity: 0;
  visibility: hidden;
}
.link-item.fade-right {
  transform: translateX(150px);
  opacity: 0;
  visibility: hidden;
}
.mj-gif {
  mix-blend-mode: luminosity;
  width: 100%;
  height: auto;
  max-width: 408px;
  transform: rotate(10deg);
  margin-bottom: -200px;
}
.container {
  max-width: 1150px;
  padding: 20px;
  margin: auto;
}
#hero {
  height: 100dvh;
  display: flex;
  position: relative;
  overflow: hidden !important;
}
#hero .container {
  flex-grow: 1;
}
/* -------------------------------------- */
#hero .wrapper h1 {
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 60px;
  font-weight: 400;
  text-align: center;
  line-height: 1.3;
  margin: 0;
}
.wrapper {
  max-width: 490px;
  margin: auto;
  position: relative;
}
.contact-me {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: right;
  display: block;
  position: relative;
  z-index: 9;
}
.blue-mask {
  position: absolute;
  right: -90px;
  top: 50%;
  transform: translateY(-50%);
  width: 445px;
  height: 155px;
  background: #6147ff;
  mix-blend-mode: color;
}
.coming-soon-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 400px;
  height: 100%;
  max-height: 100%;
  position: relative;
}
/* ------------------------------------------- */
.scroll-down-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  opacity: 1;
  visibility: visible;
  transition: all 1s ease;
}
.scroll-down-wrapper.hidden {
  display: none;
}
.scroll-down-wrapper p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
  transition: all 0.3s ease;
}
.scroll-down-wrapper p.hidden {
  opacity: 0;
  visibility: hidden;
}
.scroll-down-wrapper .arrow-down {
  animation: scroll 1s infinite alternate;
}
@keyframes scroll {
  to {
    transform: translateY(10px);
  }
}
.scroll-down-wrapper .arrow-down.fade-left {
  align-self: flex-start;
  margin-left: 70px;
  margin-top: -170px;
}
.scroll-down-wrapper .arrow-down.hidden {
  opacity: 0;
  visibility: hidden;
}
.logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 100px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  position: relative;
  z-index: 9;
  isolation: isolate;
}

.logo-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.logo-wrapper .logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 140px;
}
.logo-wrapper .logo-row a {
  width: 100px;
}
.logo-wrapper .logo-row a img {
  margin: auto;
}
.logo-wrapper .logo-row .spin-logo img {
  transform: rotate(0deg);
  transition: transform 0.5s ease;
  transform-origin: center;
  animation: rotateBack 0.5s forwards;
  animation-play-state: paused;
}

.logo-wrapper .logo-row .spin-logo:hover img {
  animation: rotateAnimation 1s forwards;
}
.logo-wrapper .logo-row .spin-logo img:not(:hover) {
  animation: rotateBack 0.5s forwards;
}
@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rotateBack {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.img-wrapper {
  margin: -100px -100px 0 0;
}
.col-left {
  flex-basis: 25%;
  max-width: 25%;
}
.col-middle {
  flex-basis: 50%;
  max-width: 50%;
}
.col-right {
  flex-basis: 25%;
  max-width: 25%;
}
.coming-soon-slider {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 200px;
  width: 6796px;
  animation: slider 15s linear infinite;
}
@keyframes slider {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(-50%) translateY(-50%);
  }
}
.cols-wrapper {
  display: flex;
  align-items: center;
}

/* ---------------------------------------------------------------------------- */

#hero-overlap {
  position: absolute;
  width: 100%;
  height: 100dvh;
  display: flex;
  top: 0;
  left: 0;
  overflow: hidden !important;
  transition: all 1.2s ease;
}
#hero-overlap.slide-down {
  transform: translateY(200%);
}
.stfn-wide-wrapper {
  position: absolute;
  bottom: -120px;
  left: 50%;
  width: 105%;
  height: 400px;
  transform: translateX(-50%) rotate(-4deg);
  overflow: hidden;
}
.stfn-wide-wrapper img {
  width: 100%;
  transform: translateY(250%);
  transition: all 0.4s ease;
}
#hero-overlap.fade-up .stfn-wide-wrapper img {
  transform: translateY(0);
  transition-delay: 1.8s;
}
#hero-overlap .container {
  flex-grow: 1;
}
#hero-overlap h1 {
  overflow: hidden;
  width: max-content;
}
#hero-overlap h1 span {
  display: block;
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  margin: 0;
  transform: translateY(110%);
  transform-origin: bottom;
  transition: all 0.6s;
}

#hero-overlap h1.fade-up span {
  transform: translateY(0);
  transition-delay: 1.9s;
}
#hero-overlap .welcome-text {
  overflow: hidden;
  line-height: 1;
  margin: 0;
  display: block;
}
#hero-overlap .welcome-text span {
  display: block;
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-wrap: nowrap;
  margin-top: 0;
  transform: translateY(100%);
  transform-origin: bottom;
  transition: all 0.6s ease;
}
#hero-overlap .welcome-text.fade-up span {
  transform: translateY(0);
  transition-delay: 2s;
}
#hero-overlap .scroll-text {
  color: #fff;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  max-width: 218px;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease;
  transition-delay: 2.1s;
}
#hero-overlap .scroll-text.fade-in {
  opacity: 0;
  visibility: hidden;
}
#hero-overlap .col-left {
  max-width: 33.33%;
  flex-basis: 33.33%;
  position: relative;
  z-index: 3;
}
#hero-overlap .col-middle {
  max-width: 33.33%;
  flex-basis: 33.33%;
  position: relative;
}
#hero-overlap .col-right {
  max-width: 33.33%;
  flex-basis: 33.33%;
}
#hero-overlap .image-wrapper {
  margin: -70px;
  position: relative;
}
#hero-overlap .image-wrapper .blue-bg-text {
  position: absolute;
  right: -110px;
  top: 75px;
}
#hero-overlap .image-wrapper .blue-bg-text p {
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  transform: rotate(85.5deg);
  transition: all 0.6s ease;
  transition-delay: 1.5s;
  opacity: 0;
}
#hero-overlap .image-wrapper .blue-bg-text p.fade-in {
  opacity: 1;
}
#hero-overlap .image-wrapper .blue-bg-text .blue-bg-mask {
  position: absolute;
  right: 120px;
  top: -140px;
  transform: rotate(-95deg) scaleX(0);
  width: 271px;
  height: 77px;
  background: #6147ff;
  mix-blend-mode: color;
  transition: all 0.6s ease;
  transform-origin: right;
  transition-delay: 1s;
}
#hero-overlap .image-wrapper .blue-bg-text .blue-bg-mask.fade-down {
  transform: rotate(-95deg) scaleX(1);
}
#hero-overlap .stfn-photo {
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.3s;
  opacity: 1;
  visibility: visible;
}
#hero-overlap .stfn-photo.fade-down {
  transform: translateY(-300px);
  opacity: 0;
  visibility: hidden;
}
/* ---------------------------------------------------------------------------- */
#footer {
  height: 10dvh;
  margin-bottom: 20px;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.footer-wrapper {
  transition: all 0.8s ease;
  opacity: 1;
  visibility: visible;
}
.footer-wrapper.fade-up {
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
}
#footer p {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  max-width: 160px;
  margin: auto;
  margin-top: 10px;
}
.footer-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.footer-social-icons a {
  width: 16px;
}
.footer-social-icons a svg path {
  transition: all 0.3s ease;
}
.footer-social-icons a:hover svg path {
  fill: #fff;
}
.line-wrapper {
  width: calc(100% - 15rem);
  left: 7.5rem;
  top: 0;
  position: absolute;
  pointer-events: none;
  height: 100%;
  background-position: top center;
  background-repeat: repeat-y;
  margin: 0;
  padding-left: 0;
  isolation: isolate;
  transition: all 0.3s ease;
}
.line-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}
.line-wrapper .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100vh;
  background-color: #343435;
  z-index: -4;
}
.line-2 {
  left: calc(14.285% * 1) !important;
}
.line-3 {
  left: calc(14.285% * 2) !important;
}
.line-4 {
  left: calc(14.285% * 3) !important;
}
.line-5 {
  left: calc(14.285% * 4) !important;
}
.line-6 {
  left: calc(14.285% * 5) !important;
}
.line-7 {
  left: calc(14.285% * 6) !important;
}
.line-8 {
  left: calc(14.285% * 7) !important;
}

@media (max-width: 1700px) {
  .line-2 {
    left: calc(20% * 1) !important;
  }
  .line-3 {
    left: calc(20% * 2) !important;
  }
  .line-4 {
    left: calc(20% * 3) !important;
  }
  .line-5 {
    left: calc(20% * 4) !important;
  }
  .line-6 {
    left: calc(20% * 5) !important;
  }
  .line-7 {
    display: none;
  }
  .line-8 {
    display: none;
  }
}
@media (max-width: 1440px) {
  .img-wrapper {
    margin: -50px 0 0 0;
  }
}

@media (max-width: 1350px) {
  .img-wrapper {
    margin: -50px -50px 0 0;
  }
}
@media (max-width: 1250px) {
  .line-2 {
    left: calc(33% * 1) !important;
  }
  .line-3 {
    left: calc(33% * 2) !important;
  }
  .line-4 {
    left: calc(33% * 3) !important;
  }
  .line-5 {
    display: none;
  }
  .line-6 {
    display: none;
  }
  .line-7 {
    display: none;
  }
  .line-8 {
    display: none;
  }
}
@media (max-width: 1150px) {
  .stfn-wide-wrapper {
    height: 300px;
  }
  .line-2 {
    left: calc(33% * 1) !important;
  }
  .line-3 {
    left: calc(33% * 2) !important;
  }
  .line-4 {
    left: calc(33% * 3) !important;
  }
  .line-5 {
    display: none;
  }
  .line-6 {
    display: none;
  }
  .line-7 {
    display: none;
  }
  .line-8 {
    display: none;
  }
}
@media (max-width: 1024px) {
  .stfn-wide-wrapper {
    height: 300px;
    bottom: -120px;
  }
  .cursor {
    display: none;
  }
  .img-wrapper {
    margin: -50px 0 0 0;
  }
  .coming-soon-content {
    padding-top: 300px;
  }
  .blue-mask {
    right: 0;
    width: 300px;
  }
  #hero-overlap h1 span {
    font-size: 48px;
  }
}
@media (max-width: 950px) {
  .line-1 {
    display: none;
  }
  .line-2 {
    left: calc(30% * 1) !important;
  }
  .line-3 {
    left: calc(35% * 2) !important;
  }
  .line-4 {
    display: none;
  }
  .line-5 {
    display: none;
  }
  .line-6 {
    display: none;
  }
}
@media (max-width: 800px) {
  .stfn-wide-wrapper {
    height: 250px;
    bottom: -140px;
  }
}
@media (max-width: 767px) {
  .stfn-wide-wrapper {
    height: 250px;
    bottom: -170px;
  }
  header .nav .nav-list {
    gap: 15px;
  }
  .nav .nav-list a {
    font-size: 20px;
  }
  .logo-wrapper .logo-row {
    gap: 40px;
  }
  .logo-wrapper .logo-row a {
    width: 80px;
  }
  .coming-soon-content {
    flex-direction: column;
  }
  .custom-col {
    max-width: 100% !important;
    flex-basis: 100% !important;
  }
  #hero .wrapper h1 {
    text-align: left;
  }
  .line-2 {
    left: calc(33% * 1) !important;
  }
  .line-3 {
    left: calc(33% * 2) !important;
  }
  .line-5 {
    display: none;
  }
  .line-6 {
    display: none;
  }
  .coming-soon-content {
    padding-top: 200px;
  }
  .img-wrapper {
    margin: 0;
  }
  .mj-gif {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .contact-me {
    text-align: left;
  }
  .coming-soon-slider {
    display: none;
  }
  .cols-wrapper {
    flex-direction: column;
  }
  #hero-overlap .image-wrapper {
    margin: 0 20px 20px;
  }
  .scroll-down-wrapper .arrow-down.fade-left {
    align-self: center;
    margin: auto !important;
    mix-blend-mode: difference;
    z-index: 2;
  }
  #hero-overlap::before {
    width: 110%;
    bottom: -240px;
  }
  #hero-overlap .image-wrapper .blue-bg-text {
    right: -90px;
  }
  #hero-overlap .image-wrapper .blue-bg-text p {
    font-size: 16px;
  }
  #hero-overlap .image-wrapper .blue-bg-text .blue-bg-mask {
    width: 240px;
    right: 100px;
  }
}
@media (max-width: 530px) {
  .line-1 {
    display: block;
    left: 1rem !important;
  }
  .line-2 {
    right: 1rem !important;
    left: auto !important;
  }
  .line-3 {
    display: none;
  }
  .line-4 {
    display: none;
  }
  .blue-mask {
    left: -20px;
    width: 355px;
    height: 185px;
  }
}
