.align-items-center {
  height: 100vh;
}

.coming-content {
  text-align: center;
}

.coming-title {
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 45px;
}

.coming-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.coming-timer span {
  font-size: 40px;
  padding: 0px 30px;
  position: relative;
}

.coming-timer span::before {
  position: absolute;
  content: ":";
  top: 25%;
  right: 0px;
  font-size: 25px;
  transform: translateY(-50%);
  color: var(--text);
}

.coming-timer span:last-child::before {
  display: none;
}

.coming-timer span small {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
}

.coming-subtitle {
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 40px;
  text-transform: uppercase;
}

.coming-form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.coming-form input {
  width: 400px;
  height: 50px;
  padding: 0px 25px;
  border-radius: 50px;
  background: var(--gray);
  border: none;
  outline: none;
}

.coming-form button {
  margin-left: 15px;
  border: none;
  outline: none;
  background: none;
}

.coming-form button i {
  width: 50px;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  color: var(--primary);
  background: var(--gray);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.coming-form button i:hover {
  color: var(--white);
  background: var(--primary);
}

.coming-social a {
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  border-radius: 50%;
  margin: 0px 4px;
  text-align: center;
  color: var(--primary);
  background: var(--white);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.coming-social a:hover {
  color: var(--white);
  background: var(--primary);
}

@media (max-width: 575px) {
  .coming-title {
    font-size: 35px;
    margin-bottom: 35px;
  }
  .coming-timer span {
    font-size: 25px;
    padding: 0px 15px;
  }
  .coming-timer span small {
    font-size: 15px;
  }
  .coming-form input {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .coming-part {
    padding: 50px 0px;
  }
  .align-items-center {
    height: auto;
  }
  .coming-social {
    margin-bottom: 40px;
  }
}
