body {
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.v-center {
  align-items: center;
  justify-content: space-between;
}

/* Header Start */
.header {
  display: block;
  width: 100%;
  position: relative;
  z-index: 99;
  padding: 1rem;
  background: #000;
}

.logo {
  width: 200px;
}

.headerItem__left {
  flex: 0 0 17%;
}
.headerItem__center {
  flex: 0 0 66%;
}
.headerItem__right {
  flex: 0 0 17%;
}

.powered {
  width: 170px;
}

/* Menu */
.nav__menu > .menu_main > .menu__item {
  display: inline-block;
  line-height: 50px;
  margin-left: 25px;
}

/* Sectiion Banner Start */
.section__banner {
  /* background-image: url("../assets/img/back.jpeg"); */
  background-color: #000;
  /* background-position: cover;
  background-position: center;
  object-fit: cover; */
  height: 100vh;
  width: 100%;
  display: block;
  z-index: -1;
}

.section__banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  z-index: 1;
}

.comingSoon {
  position: relative;
  z-index: 2;
  color: #fff;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
  min-height: 100vh;
  gap: 15px;
  padding-bottom: 80px;
  /* border: 1px solid #fff; */
}

.comingSoon__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  /* margin-bottom: 1.5rem; */
}

.subtitle__comingSoon {
  font-size: 1.5rem;
  font-weight: 200;
  margin-bottom: 2rem;
}

.subtitle__comingSoon span {
  font-weight: 800;
  color: #eb5e2e;
}

.text {
  color: #dcc;
  padding: 5px 0;
  margin-bottom: 1.5rem;
}

.text span {
  font-size: 1.3rem;
  color: #eb5e2e;
  font-weight: 800;
}

.text__link {
  font-weight: 700;
  color: #2980b9;
  transition: color 150ms linear;
}

.text__link:hover {
  color: #eb5e2e;
}

.comingSoon__content {
  flex: 1 1 400px;
}

.comingSoon__img {
  flex: 1 1 400px;
}

.comingSoon__img img {
  width: 100%;
  height: 100%;
}

.count-down {
  display: flex;
  gap: 15px;
  padding: 10px 0;
}

.count-down .box {
  padding: 5px;
  background-color: #fff;
  border: 1px solid #333;
  text-align: center;
  flex: 1 1 20px;
}

.count-down .box h3 {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  color: #333;
}
.count-down .box span {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #2980b9;
}

.comingSoon__content .btn {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 8px 50px;
  background-color: #eb5e2e;
  transition: background-color 150ms linear;
}

.comingSoon__content .btn:hover {
  background-color: #2980b9;
}

.footer {
  position: absolute;
  bottom: 100px;
  margin-bottom: 200px;
}

/* ================= Media Query 1024 =================== */
@media (max-width: 1024px) {
  .comingSoon {
    padding: 20px 5%;
  }
}

/* ================= Media Query =================== */
@media (max-width: 500px) {
  .comingSoon {
    padding: 30px;
  }

  .comingSoon__content {
    text-align: center;
  }

  .comingSoon__title {
    font-size: 1.5rem;
  }

  ..subtitle__comingSoon {
    font-size: 1rem;
  }

  .text {
    font-size: 14px;
  }

  .count-down {
    gap: 5px;
  }

  .count-down .box h3 {
    font-size: 1.8rem;
  }

  .count-down .box span {
    font-size: 0.9rem;
  }
}