@import url(https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap);


*
{
  /*defining variables*/
  --bggrad1: linear-gradient(to right top, #051937, #0f172d, #131524, #14131b, #121212);
  --bggrad2: linear-gradient(to right top, #300537, #250d31, #1c1128, #16121e, #121212);

  font-family: 'Poppins', sans-serif;
}

html
{
  scroll-behavior: smooth;
}

body
{
  background-color: rgb(5, 18, 20);
  /*background-color: rgb(30, 38, 41);*/
  margin: 0;
  padding: 0;
}


.noiselayer::after
{
  content:"";
  position: fixed;
  width: 200vw;
  height: 200vh;
  left: -50%;
  top: -50%;
  z-index: 9999;
  background-image: url(assets/noise/WebBlueNoise.gif);
  background-size: 16vh;
  opacity: 0.2; /* if blend-mode = overlay, opacity = 0.2; if blend-mode = multiply, opacity = 0.25; */
  mix-blend-mode: overlay; 
  pointer-events: none;
  overflow: hidden;
}

.defaultsection
{
  position: relative;
  height: 100vh;
}
.coming-soon-container 
{
  display: flex; /* Makes the container flexible for alignment */
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
  height: 100vh; /* Sets the container height to 100% of the viewport */
}

/*gradient text*/
.gradtext
{
  background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.description
{
  font-size: 18px;
  color: aliceblue;
  background-image: linear-gradient(to bottom, #deebff, #d4f3ff, #d4faf8, #e1feec, #f7ffe3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

::selection {
  color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.082);
}
::-moz-selection { /* Code for Firefox */
  color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.082);
}

#PreLoader
{
  background: black;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  pointer-events: none;
  
}

/*gradient progress-bar*/
.progressbar
{
  position: relative;
  width: 300px;
  height: 10px;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.progressbar::before
{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #004d7a, #008793, #00bf72, #a8eb12, #00bf72, #008793, #004d7a);
  animation: progressbaranim 4s linear infinite;
  background-size: 500%;
  border-radius: 100px;
}
.progressbar::after
{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #004d7a, #008793, #00bf72, #a8eb12, #00bf72, #008793, #004d7a);
  animation: progressbaranim 4s linear infinite;
  background-size: 500%;
  border-radius: 100px;
  filter: blur(16px);
}
@keyframes progressbaranim
{
  0%
  {
    background-position: 0 0;
  }
  0%
  {
    background-position: 500% 0;
  }
}
.progress-bar-text
{
  color: #ffffff70;
  text-align: center;
  top: -10px;
  font-weight: 100;
}


.box
{
  position: relative;
  border-radius: 20px;
  transform-style: preserve-3d;
}

.box .card 
{
  position: relative;
  background-color: rgba(61, 61, 61, 0.25);
  width: 300px;
  min-height: 400px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 25px 45px 0 rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;

  color: rgba(247, 247, 247, 0.75);
  /*padding-left: 40px;*/
  transition: 0.25s;
}

/*.box:hover .card
{
  box-shadow: 0 0  5px #d3f5ff52,
  0 0  10px #d3f5ff52,
  0 0  20px #d3f5ff52,
  inset 0 0  5px #d3f5ffb9,
  0 0  10px #d3f5ffb9,
  0 0  20px #d3f5ffb9;
  box-shadow: calc(currentColor*0.1);
  
}*/


/*.elements
{
  position: absolute;
  top: 50px;
  left: 100px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateZ(80px);
  backdrop-filter: blur(10px), brightness(200%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 25px 45px 0 rgba(0, 0, 0, 0.2);
}


.elements.imgBx
{
  top: 0px;
  left: 90px;
  right: 0px;
  width: 120px;
  height: 120px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateZ(80px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 25px 45px 0 rgba(0, 0, 0, 0.2);
}*/

.elements.imgBx img
{
  position: absolute;
  /*width: 100%;*/
  width: calc(100% - 4px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.082);
  box-shadow: 0 25px 45px 0 rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: .5s;
}

.box:hover .elements.imgBx img
{
  opacity: 1;
}


.elements.name
{
  /*top: 235px;*/
  top: 135px;
  left: initial;
  right: 0;
  width: 100%;
  padding: 10px;
  text-align: center;
  transform: translateZ(100px);
  background: transparent;
  backdrop-filter: blur(0px);
  border: none;
  box-shadow: none;
  /*color: rgb(182, 233, 224);*/
  opacity: 0;
  transition: 0.25s;
  transition-delay: 0.125s;
  font-weight: 200;
  color: rgb(38, 49, 47);
  
}

.box:hover .elements.name
{
  /*top: 135px;*/
  opacity: 1;
  color: white;
  text-shadow: 0 0  10px #03bcf4,
  0 0  20px #03bcf4,
  0 0  40px #03bcf4,
  0 0  80px #03bcf4,
  0 0  160px #03bcf4;
}
