/* container coming soon */
.container-coming-soon {
  padding-top: 5rem;

  background: rgb(18, 29, 51) url("../../assetsBlockchain/paypage/pay-bg.svg")
    no-repeat right bottom;
  background-size: clamp(64rem, 115vw, 100rem);
  color: #fff;
  height: 100%;

  max-height: 750px;
}

.coming-soon {
  display: flex;
  justify-content: space-between;
  box-sizing: content-box;

  max-width: 62.5rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}
/* coming soon content */
.coming-soon-content {
  padding: 5rem 0px;
}

.coming-soon-content span {
  display: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.25rem;
}

.coming-soon-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 30px;
  margin-bottom: 0.75rem;
}

.coming-soon-content p {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.coming-soon-content button {
  padding: 0.75rem 1.375rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: 0.125rem solid transparent;
  cursor: pointer;
  color: rgb(18, 29, 51);
  background: rgb(255, 255, 255);
}
/* coming soon img */
.coming-soon-img > img {
  max-width: 448px;
  position: relative;
  top: 2rem;
}
/* responsive mobile */
@media (max-width: 426px) {
  .container-coming-soon {
    max-height: 930px;
  }
  .coming-soon {
    flex-direction: column;
    text-align: center;

    padding: 0 16px;
  }
  .coming-soon-content {
    padding: 40px 0;
  }

  .coming-soon-content h2 {
    width: 90%;
    margin: 24px auto 12px;
  }

  .coming-soon-content > span {
    display: none;
  }

  .coming-soon-img > img {
    top: 0;
    max-width: 20rem;
  }

  .coming-soon-content button {
    font-size: 0.875rem;
    padding: 0.625rem 0.875rem;
  }
}
