@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* ====================
Reset Default CSS Start
==================== */

:root {
  --primary-font: "Plus Jakarta Sans";
  --secondary-font: "Mulish";
  --primary-color: #0099ff;
  --secondary-color: #ffffff;
  --ac-20: #e6f5ff;
  --ac-40: #99d6ff;
  --ac-60: #66c2ff;
  --ac-80: #33adff;
  --ac-120: #007acc;
  --ac-140: #005c99;
  --ac-160: #003d66;
  --ac-180: #000f19;
  --ac-ash: #9ca3af;
  --ac-black: #000000;
  --ac-border: #2b343a;
  --ac-BG: #02070a;
  --text-gradient: linear-gradient(91deg, #fff 0.61%, #695b5b 100%);
  --background: linear-gradient(45deg, #fff, #908c9b);
  --box-shadow: 0px 0px 100px 0px rgba(0, 153, 255, 0.2);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--primary-font);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--primary-font);
  margin-top: 0;
}

h6 {
  font-family: var(--secondary-font);
}

a {
  text-decoration: none !important;
}

p {
  color: var(--ac-ash);
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

button {
  border: none;
  outline: none;
}

input {
  outline: none;
}

body {
  background: var(--ac-black) !important;
}

html,
body {
  overflow: hidden;
}

.container {
  max-width: 1400px !important;
  margin: auto;
  padding: 0 14px !important;
}

/*====================
Reset Default CSS End
====================*/

/* Webkit Scroll bar */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  transition: 0.3s;
  background: var(--primary-color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
/* Webkit Scroll bar */

/* Coming Soon Start */
.coming-soon {
  width: 100%;
  background: var(--ac-BG);
}
.coming-soon .description .image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon .description {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  justify-content: center;
}
.coming-soon .description svg {
  width: 20%;
  aspect-ratio: 16 / 16;
}

.animatedPath2 {
  stroke: rgb(62, 174, 248);
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 5s linear infinite;
  -webkit-animation: draw 5s linear infinite;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.coming-soon .title {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 10px 0;
  text-align: left;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coming-soon .desc {
  display: block;
  text-align: center;
  margin: 0;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

.coming-soon .notify-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--secondary-font);
  padding: 12px 40px;
  border-radius: 30px;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.4s;
}

.coming-soon .notify-btn:hover {
  background: var(--secondary-color);
  color: var(--ac-black);
}

@media screen and (max-width: 768px) {
  .coming-soon .title {
    font-size: 34px;
  }

  .coming-soon .notify-btn {
    padding: 10px 30px;
    font-size: 16px;
  }

  .coming-soon .description svg {
    width: 70%;
    aspect-ratio: 16 / 16;
  }
}

/* Coming Soon Start */
