/* 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;
  background: var(--ac-20);
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
  justify-content: center;
}
.coming-soon .description svg {
  width: 20%;
  aspect-ratio: 16 / 16;
}

.animatedPath2 {
  stroke: rgb(162, 19, 245);
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 10s linear infinite;
  -webkit-animation: draw 10s 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;
  color: var(--secondary-color);
}

.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(--ac-BG);
  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);
}

@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 */
