@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Unbounded:wght@200..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.row {
  width: 100%;
  display: flex;
}

body {
  background-color: #1e125e;
  height: 100vh;
}

input,
textarea,
select {
  font-size: 16px !important;
}

.home {
  height: 100vh;
  padding: 52px 0;
  overflow: hidden;
  position: relative;
}
.home::before {
  display: inline-block;
  position: absolute;
  top: -247px;
  left: -247px;
  content: "";
  width: 494px;
  height: 494px;
  background: #ffffff;
  opacity: 20%;
  border-radius: 100%;
  filter: blur(150px);
  transform: rotate(108deg);
}
.home::after {
  display: inline-block;
  position: absolute;
  bottom: -247px;
  right: -247px;
  content: "";
  width: 494px;
  height: 494px;
  background: #38c2f1;
  opacity: 60%;
  border-radius: 100%;
  filter: blur(150px);
  transform: rotate(-175deg);
}
.home .container {
  height: 100%;
}
.home .container .row {
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.home .container .row .logo {
  width: 149px;
  height: 40px;
}
.home .container .row .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home .container .row .info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.home .container .row .info .hashTag {
  position: relative;
  z-index: 99;
  font-weight: 400;
  background: radial-gradient(50% 560.54% at 50% 50%, #ffad80 0%, #f26b21 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.home .container .row .info .title h2 {
  color: #dbd56e;
  background: -webkit-linear-gradient(25deg, #eee, #38c2f1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3rem;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid;
  animation: type 1.5s steps(90) 1.5s 1 normal both, cursor 1s step-end infinite;
  position: relative;
}
.home .container .row .info .desc {
  position: relative;
  z-index: 99;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}
.home .container .row .info .socialList {
  position: relative;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.home .container .row .info .socialList .socialItem a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: transparent;
}
.home .container .row .info .socialList .socialItem a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transition: transform 0.5s ease;
  z-index: -1;
}
.home .container .row .info .socialList .socialItem a:hover::before {
  transform: translateX(200%);
}
.home .container .row .contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.home .container .row .contacts a {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #ffffff;
  text-align: center;
  transition: transform 0.5s ease;
}
.home .container .row .contacts a:hover {
  transform: scale(1.1);
}

@media (max-width: 850px) {
  .home .container .row .logo {
    position: relative;
    z-index: 9;
  }
  .home .container .row .info .title h2 {
    font-size: 2rem;
  }
  .home .container .row .contacts {
    position: relative;
    z-index: 9;
  }
}
@media (max-width: 560px) {
  .home .container .row .info .title h2 {
    font-size: 1rem;
  }
}
@media (max-width: 370px) {
  .home .container .row .info .title h2 {
    font-size: 16px;
  }
  .home .container .row .info .hashTag {
    font-size: 12px;
  }
  .home .container .row .info .desc {
    font-size: 14px;
  }
}
@keyframes type {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes cursor {
  50% {
    border-color: transparent;
  }
}/*# sourceMappingURL=index.css.map */