@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 19px;
}

ul {
  list-style: none;
  padding-left: 0;
}

.container {
  max-width: 1440px;
  padding: 0 40px;
  width: 100%;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}

button, a {
  transition: all 0.5s ease-in-out;
  font-family: "Poppins", sans-serif;
}

input {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 15px;
  outline: none;
}
input:focus, input:active {
  outline: none;
}

.digit-input.invalid {
  border-color: #dc3545;
  background-color: #fff8f8;
  animation: shake 0.3s ease-in-out;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
header {
  width: 100%;
}

.tooltip-line {
  width: 100%;
  height: 46px;
  padding: 13px 20px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  transform: translateY(-58px);
}
.tooltip-line img {
  margin-right: 12px;
}
.tooltip-line.is-active {
  transform: translateY(0);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 17px;
}

.logo {
  position: relative;
  z-index: 4;
  transition: all 1s ease-in-out;
  opacity: 0;
  transform: translateX(-50px);
}
.logo.is-active {
  opacity: 1;
  transform: translateX(0);
}

.button-section {
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  margin-top: 23px;
  transform: translateY(50px);
  transition: all 1s ease-in-out;
}
.button-section.is-active {
  opacity: 1;
  transform: translateX(0);
}

.button-group {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 6;
  transition: all 1s ease-in-out;
  opacity: 0;
  transform: translateX(50px);
}
.button-group.is-active {
  opacity: 1;
  transform: translateX(0);
}

.join-button {
  background-color: #fff;
  font-size: 18px;
  line-height: 19px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 130px;
  color: #C74FFF;
}
.join-button:hover {
  background-color: #af03ff;
  color: #fff;
}

.investor-button {
  background-color: transparent;
  font-size: 18px;
  line-height: 19px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 130px;
  margin-left: 27px;
  color: #fff;
  border: 2px solid #fff;
}
.investor-button:hover {
  background-color: #fff;
  color: #C74FFF;
}

@media screen and (max-width: 768px) {
  .header {
    justify-content: center;
  }
  .logo {
    height: 36px;
  }
  .join-button {
    font-size: 14px;
    line-height: 15px;
    font-weight: 600;
    padding: 11px 18px;
  }
  .investor-button {
    font-size: 14px;
    line-height: 15px;
    font-weight: 600;
    padding: 9px 16px;
    margin-left: 15px;
  }
  .button-group {
    display: none;
  }
  .button-section {
    display: flex;
  }
}
body {
  background-image: url("../../images/bg-1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url("../../images/bg-1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.wrapper__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.main-section {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

.position-class {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.title-group {
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
  z-index: 3;
}

.main-title {
  font-size: 2.8rem;
  line-height: 3rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  margin-bottom: 15px;
}

.main-subtitle {
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  margin: auto;
}

.main-title, .main-subtitle {
  transition: opacity 0.5s ease-in-out;
}
.main-title.is-active, .main-subtitle.is-active {
  opacity: 1;
  visibility: visible;
}

.animated-background {
  width: 100%;
  height: 100%;
  background-image: url("../../images/bg-2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  transition: all 3s ease-in-out;
  opacity: 0;
  transform: scale(2);
}
.animated-background.is-active {
  opacity: 1;
  transform: scale(1);
}

.ellipse-1 {
  width: 700px;
  height: 700px;
  position: absolute;
  left: -220px;
  top: -190px;
  z-index: 3;
  pointer-events: none;
  background: #8F2ACF;
  opacity: 0.4;
  filter: blur(275px);
}

.ellipse-2 {
  width: 300px;
  height: 300px;
  position: absolute;
  z-index: 3;
  right: -160px;
  top: calc(50% - 150px);
  pointer-events: none;
  background: #CF2A98;
  opacity: 0.6;
  filter: blur(275px);
}

.video-style {
  display: block;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 48px;
  z-index: 3;
}

.json-animation {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

@media screen and (max-width: 992px) {
  .main-title {
    font-size: 32px;
    line-height: 45px;
  }
  .main-subtitle {
    font-size: 17px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .tooltip-line {
    height: 56px;
    text-align: center;
  }
  .tooltip-line img {
    display: none;
  }
  .position-class {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .main-title, .main-subtitle {
    position: static;
    margin: unset;
    padding-left: 20px;
    padding-right: 20px;
  }
  .video-style {
    position: static;
    height: auto;
  }
  .title-group {
    position: static;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in;
  }
  .title-group.is-active {
    height: 202px;
  }
}
@media screen and (min-width: 1366px) and (max-height: 1024px) {
  .title-group {
    top: 17%;
  }
  .video-style {
    height: 85%;
    top: 19%;
  }
}
@media screen and (min-width: 1366px) and (max-height: 975px) {
  .title-group {
    top: 8%;
  }
  .video-style {
    height: 85%;
    top: 15%;
  }
}
.pop-up {
  width: 100%;
  height: 0;
  padding: 20px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  margin: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.pop-up.is-active {
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.pop-up__container {
  max-width: 505px;
  width: 100%;
  max-height: 500px;
  height: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 45px 0;
  position: relative;
  z-index: 5;
}
.pop-up__container.smaller {
  max-height: 375px;
}

.close-pop-up {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 2;
  padding: 10px;
}
.close-pop-up img {
  pointer-events: none;
}

.logo-pop-up {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.pop-up-title {
  font-size: 23px;
  font-weight: 700;
  line-height: 38px;
  color: #250729;
  text-align: center;
  margin-top: 20px;
}

.dotted {
  display: block;
  max-width: 100%;
  margin: 20px auto 30px auto;
}

.input-box {
  position: relative;
  z-index: 2;
}

.complete {
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.pop-up-form input {
  width: 100%;
  height: 50px;
  display: block;
  border: none;
  background-color: #F8F8F8;
  padding: 15px 20px;
  border-radius: 100px;
  margin-bottom: 18px;
  border: 1px solid transparent;
}
.pop-up-form input:focus, .pop-up-form input:active, .pop-up-form input.success {
  border-color: #C74FFF;
  box-shadow: 0px 0px 10px rgba(152, 41, 204, 0.2);
}
.pop-up-form input.error {
  border-color: #ff0000;
  box-shadow: 0px 0px 10px rgba(255, 0, 0, 0.2);
}
.pop-up-form button {
  width: 100%;
  height: 50px;
  display: block;
  padding: 15px 25px;
  font-size: 15px;
  line-height: 16px;
  color: #fff;
  background-color: #B9B6BA;
  border-radius: 100px;
}
.pop-up-form button.active {
  background-color: #C74FFF;
}

.small-tooltip {
  font-size: 12px;
  line-height: 13px;
  color: #250729;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}

.form-valid button.is-active {
  background-color: #C74FFF;
}
.form-valid button.more-active {
  background-color: #af03ff;
}
.form-valid .input-box .complete {
  opacity: 1;
}

.step {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 0;
  transition: opacity 0.5s ease-in-out;
  overflow: hidden;
  color: #250729;
  opacity: 0;
  visibility: hidden;
}
.step.is-active {
  height: 100%;
  opacity: 1;
  visibility: visible;
}

.step-1 {
  padding-left: 65px;
  padding-right: 65px;
}

.step-2 {
  padding-left: 40px;
  padding-right: 40px;
}

.user-name {
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
}

.user-message {
  font-size: 25px;
  line-height: 38px;
  font-weight: 600;
  text-align: center;
}

.ref-desc {
  font-size: 12px;
  text-align: center;
  margin-bottom: 10px;
}

.share-url {
  padding: 15px 25px;
  overflow: hidden;
  background-color: #F8F8F8;
  position: relative;
  z-index: 1;
  border-radius: 100px;
  font-size: 13px;
  line-height: 14px;
}
.share-url::after {
  width: 42px;
  height: 100%;
  content: "";
  display: block;
  background-color: #F8F8F8;
  border-radius: 100px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.share-url__nice, .share-url__copy {
  display: block;
  position: absolute;
  right: 7px;
  top: 0;
  bottom: 0;
  z-index: 6;
  margin: auto;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.share-url__nice img, .share-url__copy img {
  width: 36px;
  height: 36px;
  pointer-events: none;
}
.share-url__nice {
  z-index: 8;
}
.share-url__nice.is-active {
  opacity: 1;
  visibility: visible;
}
.share-url__copy.is-active {
  opacity: 1;
  visibility: visible;
}

.small-desc {
  max-width: 285px;
  width: 100%;
  margin: 14px auto 0 auto;
  font-size: 13px;
  line-height: 14px;
  text-align: center;
}

.input-group {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}
.input-group input {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-left: 10px;
  padding: 2px;
  text-align: center;
  border: 1px solid #333;
}
.input-group input:first-child {
  margin-left: 0;
}

.error-float-message {
  width: 100%;
  color: #ff0000;
  font-size: 14px;
  line-height: 15px;
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 1;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s linear;
}
.error-float-message.is-active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 575px) {
  .step-1, .step-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 350px) {
  .input-group input {
    width: 35px;
    height: 35px;
  }
}
footer {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 20px 23px 20px;
  opacity: 0.6;
}/*# sourceMappingURL=style.css.map */