
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@200,300,400,500,600,700,1&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #050505;
  
}

.coming-soon {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}

.container-back {
  position: fixed;
  left: 50%; 
  top: -10%; 
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.25;
}

.container {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  z-index: 2;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}


a{
  text-decoration: none;
  color: rgb(193, 193, 193)
}

a:hover{
  text-decoration: none;

}

.globe {
  z-index: 3;
  position: absolute;
  left: 0%; 
  top: 30%;
  right: 0; 
  margin-left: auto; 
  margin-right: auto;
  transform: translateY(30px);
}

.shape {
  z-index: 3;
  position: absolute;
  left: 80%; 
  right: 0; 
  top: 45%;
  margin-left: auto; 
  margin-right: auto;
  transform: translateY(30px);
}

.sphere {
  z-index: 3;
  position: absolute;
  left: 74%; 
  right: 0; 
  top: 25%;
  margin-left: auto; 
  margin-right: auto;
  transform: translateY(300px);
}

.blob {
  z-index: 1;
  position: absolute;
  opacity: 0.15;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  left: 50%; 
  top: 50%; 
  transform: translate(-50%, -50%);
}

#svg {
    margin:-80px  -80px;
    position: absolute; 
    left: 45%; 
    top: 250px; 
    width: 390px; 
    height: 440px;
    z-index: 3;
    background-image: url("icon.png");
    background-repeat: no-repeat;
    -webkit-animation: spin 7s linear infinite;
    -moz-animation: spin 7s linear backwards infinite;
    animation: spin 7s linear backwards infinite;
    
}



@-moz-keyframes spin { 
  100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
  100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
  100% { 
      -webkit-transform: rotate(360deg); 
      transform:rotate(360deg); 
  } 
}

.menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  font-family: 'Bespoke Stencil', sans-serif;
  z-index: 10;
}

.menu-bar {
  width: 30%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  height: 100px;
  font-weight: 500;
  z-index: 10;
}


.menu-box-blg {
  color: #ffffff;
  text-transform: uppercase;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  height: 50px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  background: #100720;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  position: relative;
}

.menu-box-blg:hover {
  color: #ffffff;
  transform: scale(0.9);
  background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
  transition: 0.5s;
}

.menu-box-blg::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
  filter: blur(15px);
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}

.menu-box-car {
  color: #ffffff;
  text-transform: uppercase;
  height: 50px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  background: #100720;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  position: relative;
}

.menu-box-car:hover {
  color: #ffffff;
  transform: scale(0.9);
  background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
  transition: 0.5s;
}

.menu-box-car::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
  filter: blur(15px);
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}

.menu-box-sol {
  color: #ffffff;
  text-transform: uppercase;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  height: 50px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  background: #100720;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  position: relative;
}

.menu-box-sol:hover {
  color: #ffffff;
  transform: scale(0.9);
  background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
  transition: 0.5s;
}

.menu-box-sol::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
  filter: blur(15px);
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}

footer {
  position: absolute;
  display: flex;
  left: 50%; 
  top: 90%; 
  transform: translate(-50%, -50%);
  width: 100%;
  justify-content: space-between;
  z-index: 3;
}

.foot-1 {
  display: flex;
}


.foot-2 {
  display: flex;
}


.artemis {
  font-family: 'Bespoke Stencil', sans-serif;
  text-transform: uppercase;
  padding: 20px;
}

.link {
  font-family: 'Bespoke Stencil', sans-serif;
  color: rgb(154, 18, 18);
  font-size: 1.6em;
  padding: 10px;
  font-weight: 400;
  margin-top: 25px;
}

.link :hover {
  color: rgb(255, 255, 255);
}

.trademark {
  font-family: 'Bespoke Stencil', sans-serif;
  color: #fff;
  font-size: 0.8em;
  padding: 10px;
  font-weight: 400;
  margin-top: 35px;
}

.contact-legal {
  font-size: 0.8em;
  padding: 10px;
  font-family: 'Bespoke Stencil', sans-serif;
  margin-top: 35px;
  color: rgb(193, 193, 193);
}

.contact-legal :hover {
  color: #ffffff;
}

/* === removing default button style ===*/
.button {
  margin: 0;
  height: auto;
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}

/* button styling */
.button {
  --border-right: 6px;
  --text-stroke-color: rgba(255, 255, 255, 0.734);
  --animation-color: #ffffff;
  --fs-size: 2em;
  letter-spacing: 3px;
  text-decoration: none;
  font-size: 3em;
  font-weight: 500;
  font-family: 'Bespoke Stencil', sans-serif;
  position: relative;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-stroke-color);
}
/* this is the text, when you hover on button */
.hover-text {
  position: absolute;
  box-sizing: border-box;
  content: attr(data-text);
  color: var(--animation-color);
  width: 0%;
  inset: 0;
  border-right: var(--border-right) solid var(--animation-color);
  overflow: hidden;
  transition: 0.5s;
  -webkit-text-stroke: 1px var(--animation-color);
}
/* hover */
.button:hover .hover-text {
  width: 100%;
  filter: drop-shadow(0 0 23px var(--animation-color))
}



@media (max-width: 480px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  nav {
    position: fixed;
    z-index: 10;
    margin-left: 0%;
    width: 100%;
    padding: 20px;
  }

  body {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #050505;
    overflow-x: hidden;
    overflow-y: hidden;
  }
  
  
  .container-back {
    display: none;
    position: fixed;
    left: 50%; 
    top: -10%; 
    transform: translate(-50%, -30%);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.25;
  }
  
  .container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    z-index: 2;
  }
  
  @keyframes move {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 40px 40px;
    }
  }
  
  
  a{
    color: rgb(193, 193, 193);
    text-decoration: none;
  }
  
  a:hover{
    color: white;
    text-decoration: none;
  
  }
  
  .globe {
    display: none;
    z-index: 3;
    position: absolute;
    left: 65%; 
    right: 0; 
    margin-left: auto; 
    margin-right: auto;
    transform: translateY(230px);
  }
  
  .shape {
    display: none;
    z-index: 3;
    position: absolute;
    left: 70%; 
    right: 0; 
    margin-left: auto; 
    margin-right: auto;
    transform: translateY(30px);
  }
  
  .sphere {
    display: none;
    z-index: 3;
    position: absolute;
    left: 70%; 
    right: 0; 
    margin-left: auto; 
    margin-right: auto;
    transform: translateY(680px);
  }
  
  .blob {
    z-index: 1;
    position: absolute;
    opacity: 0.15;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%);
    overflow-x: hidden;
    overflow-y: hidden;
    width: 30%;
    height: 30%;
  }
  
  #svg {
      position: absolute; 
      left: 30%; 
      top: 35%; 
      margin:-60px 0 0 -60px;
      z-index: 3;
      height: 280px;
      width: 290px;
      
  }
  
  #Path_4 {
      animation: draw 10s linear forwards infinite;
      stroke-dasharray: 110; 
  }
  
  #Path_5 {
    animation: draw 2.5s ease-in-out forwards infinite;
    stroke-dasharray: 40; 
  }
  
  #Path_6 {
    animation: draw 3s ease-in backwards infinite;
    animation-delay: 0.2s;
    stroke-dasharray: 50; 
  }
  
  #Path_7 {
    animation: draw 2.8s ease-out forwards infinite;
    animation-delay: 0.1s;
    stroke-dasharray: 50; 
  }
  
  #Path_8 {
    animation: draw 2.9s ease-in backwards infinite;
    stroke-dasharray: 50; 
  }
  
  #Path_9 {
    animation: draw 3.5s ease-in-out forwards infinite;
    stroke-dasharray: 50; 
  }
  
  #Path_10 {
    animation: draw 2.6s ease-in forwards infinite;
    animation-delay: 0.4s;
    stroke-dasharray: 50; 
  }
  
  #Path_11 {
    animation: draw 4s ease-in-out forwards infinite;
    animation-delay: 0.1s;
    stroke-dasharray: 50;
  }
  
  @keyframes draw {
      0%{
          stroke-dashoffset: 400;
          
      }
      100%{
          stroke-dashoffset: 0;
      }
  }
  
  .menu {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    font-family: 'Bespoke Stencil', sans-serif;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding: 0;
    align-items: center;
    justify-content: center;
  }
  
  .menu-bar {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100px;
    font-weight: 500;
    z-index: 10;
  }
  
  
  .menu-box-blg {
    color: #ffffff;
    text-transform: uppercase;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    height: 60px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    background: #100720;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    position: relative;
  }
  
  .menu-box-blg:hover {
    color: #ffffff;
    transform: scale(0.9);
    background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
    transition: 0.5s;
  }
  
  .menu-box-blg::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
    filter: blur(15px);
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .menu-box-car {
    color: #ffffff;
    text-transform: uppercase;
    height: 60px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    background: #100720;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    position: relative;
  }
  
  .menu-box-car:hover {
    color: #ffffff;
    transform: scale(0.9);
    background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
    transition: 0.5s;
  }
  
  .menu-box-car::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
    filter: blur(15px);
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .menu-box-sol {
    color: #ffffff;
    text-transform: uppercase;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    height: 60px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    background: #100720;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    position: relative;
  }
  
  .menu-box-sol:hover {
    color: #ffffff;
    transform: scale(0.9);
    background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
    transition: 0.5s;
  }
  
  .menu-box-sol::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
    filter: blur(15px);
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  footer {
    position: absolute;
    display: flex;
    left: 50%; 
    top: 90%; 
    transform: translate(-50%, -65%);
    width: 100%;
    height: 100%;
    justify-content: space-between;
    z-index: 3;
  }
  
  .foot-1 {
    position: absolute;
    display: flex;
    transform: translateY(400px);
    width: 100%;
  }
  
  
  .foot-2 {
    position: absolute;
    display: flex;
    transform: translateY(450px);
    width: max-content;
  }
  
  
  .artemis {
    font-family: 'Bespoke Stencil', sans-serif;
    text-transform: uppercase;
    color: #fff;
    padding: 20px;
  }
  
  .link {
    font-family: 'Bespoke Stencil', sans-serif;
    color: rgb(193, 193, 193);
    font-size: 1em;
    padding: 10px;
    font-weight: 400;
    margin-top: 25px;
  }
  
  .link :hover {
    color: rgb(255, 255, 255);
  }
  
  .trademark {
    font-family: 'Bespoke Stencil', sans-serif;
    color: rgb(255, 255, 255);
    font-size: 0.6em;
    padding: 10px;
    padding-top: 12.5px;
    font-weight: 500;
    margin-top: 35px;
    width: max-content;
    padding-left: 10px;
  }
  
  .contact-legal {
    color: rgb(193, 193, 193);
    font-size: 0.8em;
    padding: 10px;
    font-family: 'Bespoke Stencil', sans-serif;
    margin-top: 35px;
  }
  
  .contact-legal :hover {
    color: rgb(255, 255, 255);
  }
  
  /* === removing default button style ===*/
  .button {
    margin: 0;
    height: auto;
    background: transparent;
    padding: 0;
    border: none;
    cursor: pointer;
  }
  
  /* button styling */
  .button {
    --border-right: 6px;
    --text-stroke-color: rgba(255, 255, 255, 0.734);
    --animation-color: #ffffff;
    --fs-size: 1em;
    letter-spacing: 3px;
    text-decoration: none;
    font-size: 2.5em;
    font-weight: 500;
    font-family: 'Bespoke Stencil', sans-serif;
    position: relative;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-stroke-color);
  }
  /* this is the text, when you hover on button */
  .hover-text {
    position: absolute;
    box-sizing: border-box;
    content: attr(data-text);
    color: var(--animation-color);
    width: 0%;
    inset: 0;
    border-right: var(--border-right) solid var(--animation-color);
    overflow: hidden;
    transition: 0.5s;
    -webkit-text-stroke: 1px var(--animation-color);
  }
  /* hover */
  .button:hover .hover-text {
    width: 100%;
    filter: drop-shadow(0 0 23px var(--animation-color))
  }
  
  

}