@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700;800;900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Saira:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0069ff;
  --black: #040404;
  --white: #fff;
  --bg: #d6efff;
  --bg2: #edf9ff;
  --border: #d1d1d1;
  --border2: #e7e7e7;
  --text2: #3d3d3d;
  --text3: #6d6d6d;
  --gradient: linear-gradient(94deg, #0069ff 0%, #233886 99.66%);
  --primary-font: "Kanit";
  --secondary-font: "Saira";
}

h1,
h2,
h3,
h4 {
  font-family: var(--primary-font);
}

p,
h5,
h6 {
  font-family: var(--secondary-font);
}
/* ..................... */

/* Coming Soon Start */
.coming-soon {
  width: 100%;
}
.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: 40px 0;
  justify-content: center;
}
.coming-soon .description svg {
  width: 30%;
  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-family: var(--primary-font);
  font-weight: 400;
  color: var(--black);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
}

.coming-soon .desc {
  font-size: 16px;
  color: var(--text3);
  text-align: center;
  margin-bottom: 16px;
  font-family: var(--secondary-font);
}

.coming-soon .notify-btn {
  display: inline-block;
  background: var(--primary-color);
  padding: 10px 30px;
  border-radius: 40px;
  text-decoration: none;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  transition: 0.4s;
}

.coming-soon .notify-btn:hover {
  background: var(--black);
}
