body, html {
	margin: 0;
	padding: 0;
	overscroll-behavior: none;
	overflow: hidden;
	box-sizing: border-box;
	border: 0;
	font-family: 'Inter Tight', sans-serif;
}
body{
  cursor: url(assets/images/fa9e5c2aefe2a397.png),auto;
}

.loading-overlay{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #0d0e11;
  transition: opacity .45s ease, visibility .45s ease;
}

.loading-overlay.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-panel{
  position: relative;
  z-index: 2;
  width: min(86vw, 420px);
  color: #fff;
  text-align: center;
  letter-spacing: .02em;
}

.loading-track{
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}

#loading-fill{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2c3d49, #ff3a09);
  transform: scaleX(.08);
  transform-origin: left center;
  transition: transform .25s ease-out;
}

body.cursor-grab{
  cursor: url(assets/images/bb2d25654c86d753.png),auto;
}

body.cursor-grabbing{
  cursor: url(assets/images/213490af763329e7.png),auto;
}

*{
  user-select: none;
}

a, button:hover{
  cursor: url(assets/images/19f7dacc87ffcb9a.png),auto;
}


.bg{
    /* background-color: black; */
    z-index: 1;
    position: absolute;
    /* backdrop-filter: blur(14px); */
    /* opacity: 0.9; */
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
	pointer-events: none;
}

.button-close{
  width: 50px;
  border: none;
  background: transparent;
  right: 10px;
  position: absolute;
  top: 20px;
  opacity: 0.3;
  pointer-events: all;
  transition: all 0.6s ease-in-out;
}

.button-close:hover{
  opacity: 0.8;
}

.trade{
  /* top: 50%; */
  /* position: absolute; */
  backdrop-filter: blur(10px);
  border-radius: 14px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.05);
  border-width: 2px;
  box-shadow: inset 0 0.8rem 5.3333rem 0 rgb(0 0 0 / 20%);
  transform: perspective(50rem) translate3d(0px, 150%, 200px) rotateX(-80deg) scale(1, 1);
  opacity: 0;
  padding: 5%;
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trade > img{
  width: 50vw;
}

.info{
  display: flex;
  gap: 1em;
  margin-top: 70px;
  align-items: center;
  justify-content: space-evenly;
}

.info > p{
  color: white;
  width: 50%;
  line-height: 1.5em;
  font-size: 1.1em;
}

.info > button{
  font-size: 2em;
  padding: 27px 40px;
  border-radius: 60px;
  border: none;
}

.order-box{
    position: absolute;
    width: 210px;
    transform: translateX(133%) translateY(35%);
	opacity: 0;
}

header{
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 32px;
  padding: 50px 0px;
  align-items: center;
  animation: fadeIn 1s ease-in both;
}

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translate3d(0, -20%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

.fv-email{
  margin-left: 50px;
  display: flex;
  color: white;
  gap: 1em;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
  transition: all 1s ease;
  cursor: url(assets/images/19f7dacc87ffcb9a.png),auto;
}

.fv-email > p {
  position: absolute;
  transition: all 0.6s ease-in-out;
  transform: translateX(50px);
  pointer-events: all;

}

.fv-email > p > a{
  color: inherit;
  text-decoration: none;
}

.fv-email:hover > p span{
  opacity: 1;
  transform: translateX(0);
  position: relative;

}

.fv-email:hover > p{
  transform: translateX(40px);
}

.fv-email p > span{
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: translateX(-20px);
  position: absolute;
  pointer-events: none;

}

.fv-email > a img{
    display: flex;
  width: 32px;
}

/* .main-menu{
  color: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 5em;
  display: flex;
} */

.music{
  margin-right: 20px;
  border: 1px solid transparent;
  background-color: transparent;
  color: white;
  padding: 7px 21px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1em;
  height: 36px;
  justify-content: space-evenly;
  align-content: center;
  cursor: pointer;
  transition: all 0.8s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-40px);
  position: absolute;
  bottom: 30px;
  left: 20px;
}

.music:hover{
  border: 1px solid rgba(255, 255, 255, 0.781);
}

.music.visible{
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}


.fv-linkedin{
  color: white;
  display: flex;
  align-items: center;
  align-content: center;
  width: auto;
  margin-right: 50px;
  gap: 12px;
}

.fv-linkedin > .linkedin-icon{
  width:40px;
  margin-right: 0px;
}

.linkedin-handle{
  color: white;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: .2px;
  opacity: .82;
  transform: translateX(-10px);
  transition: opacity .3s ease, transform .3s ease;
}

.fv-linkedin:hover .linkedin-handle{
  opacity: 1;
  transform: translateX(0);
}



.button-start{
  display: inline-flex;
  height: 73px;
  width: 250px;
  border-radius: 50px;
  color: black;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  margin-right: 50px;
  align-content: center;
  z-index: 1;
  transition: all 0.8s ease;
  position: relative;
  pointer-events: all;
  font-size: 1em;
  gap: 0.5em;
  text-transform: uppercase;
}

.buttonbgwhite{
	background-color: aliceblue;
	border-radius: 50px;
    position: absolute;
    height: 73px;
    width: 250px;
	z-index: -1;
}

.buttonbg{
  height: 73px;
  width: 250px;
    position: absolute;
    top: -1px;
    right: 0px;
    border-radius: 25px;
    filter: blur(6px);
    z-index: -2;
    background-image: linear-gradient(90deg, #2c3d49 , #ff3a09);
        transition: all 1.8s ease;
	transform: scale(1)
}

.button-start:hover .buttonbg{
	filter: blur(15px);
	transform: scale(1.2);
}

.button-explore {
    /* position: absolute; */
    font-size: 17px;
    /* bottom: 5%; */
    left: 50%;
    /* transform: translateX(-50%); */
    padding: 11px 10px;
    font-weight: 100;
    border-image-slice: 1;
    border-width: 1px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-image-source: linear-gradient(to left, #2c3d49 , #ff3a09);
    cursor: pointer;
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.25s ease;
    background-color: transparent;
    color: white;
    margin-top: 50px;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
    will-change: opacity, transform;
  }

  .button-explore.visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .button-explore:hover {
	  box-shadow: 0 8px 18px rgba(44, 61, 73, 0.35);
    transform: translateY(-2px);
  }

  .about-section{
    position: absolute;
    z-index: 5;
    top: 50%;
    right: 5%;
    width: 630px;
    /* height: 200px; */
    color: #ffffffcf;
    font-size: 1.3em;
    transform: translate(-10%, -50%);
    visibility: hidden;
    opacity: 0;
    transition: all 1.8s ease;
    text-align: right;
    pointer-events: none;
  }

  .about-section h1, .fv-services-section h1 {
    line-height: 1.2em
}

  .about-section > p {
	font-weight: 100;
    line-height:1.5em;
    letter-spacing:0.5px


  }

  .about-section.active{
    visibility: visible;
    opacity: 1;
  }

  .fv-services-section{
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 200px; */
    color: #ffffffcf;
    font-size: 1.3em;
    /* transform: translate(-50%, -70%); */
    visibility: hidden;
    opacity: 0;
    transition: all 1.8s ease;
    text-align: center;
    height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: none;
  }

  .fv-services-section > p{
	  font-weight: 100;    
  }

  .fv-services-section.active{
    visibility: visible;
    opacity: 1;
  }

  .fv-service-list{
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:  2em 5em;
    width: 60%;
	  font-weight: 100;
        line-height:1.5em;
    letter-spacing:0.5px;
margin-bottom: 3em;
  }

  .fv-service-list h2{
    letter-spacing:0.5px;
  }

  .icon-list{
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1em;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .icon-list li > a{
    pointer-events: all;
  }

  .icon-list li > a:hover > img{
    transform: scale(1.2);
  }

  .icon-list li > a > img{
    width: 30px;
    transition: all 0.2s ease;
  }

  .fv-service-list {
    font-size: 0.8em;
  }

  .fv-service-list li > p {
    font-size: 1.2em;
    /* opacity: 0.4; */
    font-weight: 100;
  }

  .button-custom{
	  border: 1px solid white;
    background: none;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    margin-top: 20px;
    transition: all .6s ease-in-out;
    cursor: pointer;
    pointer-events: all;
    text-transform: uppercase;
  }

  .button-custom:hover{
    background-color: white;
    color: black;
  }

  .button-play:hover{
    background: white;
    color: black;
  }

  .explore-bg{
    pointer-events: all;
  }

  .end-section{
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 200px; */
    color: #ffffffcf;
    font-size: 1.3em;
    /* transform: translate(-50%, -70%); */
    visibility: hidden;
    opacity: 0;
    transition: all 1.8s ease;
    text-align: center;
    height: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 18px;
    pointer-events: none;
  }

  .end-section.active{
    visibility: visible;
    opacity: 1;
  }

  .end-section p{
    position: absolute;
    right: 30px;
    bottom: 20px;
    font-size: 0.8em;
    pointer-events: all;
  }

  .end-section a {
    color: #ffffffcf;
  font-weight: 400;
  cursor: pointer;
  transition: all 1s ease;
  cursor: url(assets/images/19f7dacc87ffcb9a.png),auto;
    pointer-events: all;
    text-decoration: none
  }

  .colors-list{
    list-style: none;
    display: flex;
    gap: 0.8em;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .colors{
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 1px solid white;
    opacity: 0.7;
    pointer-events: all;
    transition: all 0.2s ease;
  }

  .colors:hover{
    opacity: 1;
    transform: scale(1.1);
    cursor: url(assets/images/19f7dacc87ffcb9a.png),auto;
  }

  .color-1{
    background: #ff3a09;
  }

  .color-neutral{
    background: #5b6770;
  }

  .color-2{
    background: #19c5e4;
  }

  .color-3{
    background: #601564;
  }

  .color-4{
    background: #663399;
  }

  .color-5{
    background: #273dca;
  }

  .color-6{
    background: #06edc0;
  }

  .button-exit{
    margin-bottom: 3%;
    height: 36px;
    padding: 0 30px;
  }
  
/* MOBILE ADJUSTMENTS */

@media (max-width: 600px) {
  header{
        padding: 30px 0px;
  }

  .fv-email {
    margin-left: 30px;
  }

  .fv-email p {
    display:none;
  }
  
  .fv-linkedin {
    color: white;
    display: flex;
    align-items: center;
    align-content: center;
    width: auto;
    margin-right: 30px;
  }

  .linkedin-handle {
    display: none;
  }

  .about-section p:nth-child(2) {
    display: none;
    }

  .trade{
    width: 80%;
  }

  .trade > img {
    width: 70vw;
    margin-top: 10px;
  }

  .info{
    flex-direction: column;
  }

  .info > p {
    width: 80%;
    font-size: 1em;
    margin-top: 0%;
    text-align: center;
  }

  .button-start {
    margin-right: 0;
  }

  .about-section {
    top: 50%;
    left: 50%;
    width: 70%;
    font-size: 1em;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .fv-service-list {
    gap: 1em;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .fv-service-list li{
    padding: 0 20px;
  }

  .fv-service-list li > p {
    display: none;
  }

  .fv-service-list li > h2 {
    font-size: 1em;
  }

  .icon-list li{
    padding: 0 5px;
  }

  .button-exit {
    margin-bottom: 7%;
    height: 36px;
    padding: 0 30px;
    align-self: flex-end;
    margin-right: 50px;
  }

  .button-close{
    width: 40px;
    right: 0px;
    top: 5px;
  }

  .end-section > p{
    right: 0px;
    top: 50%;
    font-size: 0.8em;
    transform: rotate(-90deg) translate(0%, 96px);
    bottom: unset;
  }
}
 
