body {
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.text-center {
  text-align: center;
}
/* animation code */
.word {
  font-size: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}
.container {
  display: flex;
  gap: 10px;
}
#we {
  animation-delay: 0s;
}
#are {
  animation-delay: 1s;
}
#coming {
  animation-delay: 2s;
}

#soon {
  animation-delay: 3s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* End animation code */
.MainBodyBox h1 {
  color: #fff;
  font-size: 48px;
  line-height: normal;
  margin-bottom: 30px;
}
.countdown ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.countdown li {
  display: inline-block;
  font-size: 1.5em;
  list-style-type: none;
  padding: 1em;
  text-transform: uppercase;
  margin: 15px;
  text-align: center;
  max-width: 165px;
  width: 100%;
  box-shadow: 0 0 4px #ccc;
  border-radius: 4px;
  background-color: #ffffff22;
  color: #fff;
}
.countdown li span {
  display: block;
  font-size: 4.5rem;
  font-weight: 700;
}
.MainBodyBox {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 80px 20px 100px;
  justify-content: space-between;
  background-position: center;
  background: linear-gradient(
    0deg,
    rgba(11, 117, 216, 1) 0%,
    rgba(247, 73, 144, 1) 100%
  );
}
.bodyBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  z-index: 1;
  width: 100%;
}
.MainBodyBox::before {
  content: "";
  background-image: url(../images/ai.png);
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: auto;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-position: bottom;
}
/* .bodyBox::before {
  content: "";
  background-image: url(../images/ai.png);
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: auto;
  bottom: 80px;
  z-index: -1;
  width: 30%;
  height: 40%;
  background-size: contain;
  background-position: bottom;
}
.bodyBox::after {
  content: "";
  background-image: url(../images/ai.png);
  position: absolute;
  right: 0;
  background-repeat: no-repeat;
  background-size: auto;
  bottom: 80px;
  z-index: -1;
  width: 30%;
  height: 40%;
  background-size: contain;
  background-position: bottom;
} */
.brand {
  max-width: 280px;
  width: 100%;
  margin-bottom: 40px;
  display: block;
  position: relative;
  margin: 0 auto 0 0;
}
.brand:focus,
.brand:focus-visible {
  box-shadow: unset;
  outline: none;
}
.brand img {
  width: 100%;
}
.countdown {
  width: 100%;
  text-align: center;
}
.subrictionBox {
  max-width: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-top: 20px;
}
.subrictionBox input::placeholder {
  color: #ccc;
}
.subrictionBox input {
  width: 100%;
  padding: 10px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
  line-height: normal;
}
.subrictionBox input:focus,
.subrictionBox input:focus-visible {
  box-shadow: unset;
  outline: none;
}
.subrictionBox button {
  background-color: #f14a92;
  border: 1px solid #f14a92;
  padding: 8px 15px;
  font-size: 16px;
  line-height: normal;
  color: #fff;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.footer {
  width: 100%;
  text-align: center;
  position: relative;
}
.footer p {
  font-size: 16px;
  color: #fff;
}
.footer ul {
  display: flex;
  gap: 15px;
  list-style-type: none;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.footer ul li a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid #fff;
  text-decoration: none;
  transition: 0.3s;
}
.footer ul li a i {
  width: 100%;
  font-size: 26px;
  color: #ffff;
  transition: 0.3s;
}
.footer ul li a:hover {
  border-color: #fff;
  background: #fff;
}
.footer ul li a:hover i {
  color: #0073d0;
}
.footer-links {
  border-top: 1px solid #737e87;
  padding: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 1400px;
  margin: 20px auto 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  /* flex-wrap: wrap; */
}
.footer-links p {
  display: flex;
  gap: 8px;
  max-width: 259px;
  width: 100%;
}
.footer-links p a {
  color: #fff;
  text-decoration: none;
}
.footer-links p a i {
  margin-right: 8px;
}
@media only screen and (max-width: 991px) {
  .MainBodyBox h1 {
    font-size: 40px;
  }
  .countdown li {
    font-size: 16px;
    padding: 10px;
    max-width: 105px;
    margin: 0;
  }
  .countdown li span {
    font-size: 50px;
  }
  .footer ul li a {
    width: 35px;
    height: 35px;
  }
  .footer ul li a i {
    font-size: 18px;
  }
  .bodyBox::before,
  .bodyBox::after {
    width: 20%;
  }
}
@media only screen and (max-width: 767px) {
  .MainBodyBox {
    padding: 65px 20px 130px;
  }
  .MainBodyBox h1 {
    font-size: 34px;
    text-align: center;
  }
  .countdown li span {
    font-size: 30px;
  }
  .countdown li {
    font-size: 12px;
    padding: 10px 5px;
    max-width: 70px;
    margin: 1px;
  }
  .footer ul {
    margin-bottom: 15px;
  }
  .countdown ul {
    gap: 15px;
  }
  .footer-links {
    flex-direction: column;
  }
  .footer-links p {
    font-size: 14px;
    max-width: 100%;
    justify-content: center;
  }
}
@media only screen and (max-width: 575px) {
  .bodyBox::before,
  .bodyBox::after {
    content: unset;
  }
  .MainBodyBox {
    padding: 65px 20px 150px;
  }
  .subrictionBox input,
  .subrictionBox button {
    font-size: 14px;
  }
  .MainBodyBox::before {
    content: unset;
  }
  .brand {
    max-width: 200px;
  }
}
