html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: auto;
}

html {
  line-height: 1;
}

body {
  overflow: hidden !important;
  box-sizing: border-box;
}

input {
  box-sizing: border-box;
}

@font-face {
  font-family: "Fractul";
  src: url("./fonts/Fractul-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body,
a,
button {
  font-family: "Fractul", sans-serif;
}

:root {
  /* font sizes */
  --font-size-sm: 14px;
  --font-size-42xl: 61px;
  --font-size-18xl: 37px;
  --font-size-30xl: 49px;

  /* Colors */
  --color-gray-100: rgba(255, 255, 255, 0.2);
  --color-palegreen: #a5ffa3;
  --color-black: #000;
  --color-white: #fff;

  /* Gaps */
  --gap-7xs: 6px;
  --gap-3xs: 10px;

  /* Paddings */
  --padding-xl: 20px;
  --padding-sm: 14px;
  --padding-lgi: 19px;
  --padding-mini: 15px;

  /* Border radiuses */
  --br-23xl: 42px;
  --br-3xs: 10px;
  --br-5xl: 24px;
  --br-11xs: 2px;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

.stars,
.twinkling,
.clouds {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.stars {
  z-index: 0;
  background: #000 url("./images/stars.png") repeat top center;
}

.twinkling {
  z-index: 1;
  background: transparent url("./images/twinkling.png") repeat top center;
  animation: move-twink-back 200s linear infinite;
}

.clouds {
  z-index: 2;
  background: transparent url("./images/clouds.png") repeat top center;
  animation: move-clouds-back 200s linear infinite;
}

@keyframes move-twink-back {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -10000px 5000px;
  }
}

@keyframes move-clouds-back {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 10000px 0;
  }
}

.liquidity-section {
  background-color: rgba(5, 1, 13, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  background-blend-mode: luminosity;
  position: relative;
  min-height: 1024px;
  width: 100%;
  align-items: center;
  padding: 30px 0 80px;
  z-index: 10;
}

@media (max-width: 991px) {
  .content-wrapper {
    max-width: 100%;
    padding: 20px 0;
  }
}

.background-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.main-content {
  position: relative;
  display: flex;
  margin-bottom: 230px;
  width: 90%;
  flex-direction: column;
}

@media (max-width: 991px) {
  .main-content {
    max-width: 90%;
    margin-bottom: 40px;
  }
}

.header-container {
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-container {
    flex-wrap: wrap;
  }
}

.logo-container {
  display: flex;
  /* padding-right: 80px; */
  gap: 6px;
  flex: 1;
}

@media (max-width: 991px) {
  .logo-container {
    flex-wrap: wrap;
  }
}

.logo-icon {
  aspect-ratio: 0.93;
  object-fit: auto;
  object-position: center;
  width: 35px;
  border-radius: 10px;
}

.logo-text {
  font-weight: 800;
  font-size: 25px;
  line-height: 27px;
  margin: auto 0;
  color: rgba(255, 255, 255, 1);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin: auto 0;
}

.social-icon {
  aspect-ratio: 1;
  object-fit: auto;
  object-position: center;
  width: 30px;
}

.decorative-icon-1 {
  aspect-ratio: 1;
  object-fit: auto;
  object-position: center;
  width: 20px;
  background-blend-mode: luminosity;
  align-self: center;
  margin-top: 32px;
}

.decorative-container {
  display: flex;
  /* width: 497px; */
  max-width: 100%;
  align-items: flex-start;
  gap: 10px;
  justify-content: space-between;
  margin: auto;
  padding: 10px 0;
}

@media (max-width: 991px) {
  .decorative-container {
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 10px;
  
  }
}

.decorative-icon {
  aspect-ratio: 0.93;
  object-fit: auto;
  object-position: center;
  width: 75px;
  border-radius: 10px;
  align-self: start;
}

.main-title {
  text-align: center;
  color: rgba(255, 255, 255, 1);
  /* margin-top: 20px; */
  margin-bottom: 10px;
  font: 500 3.813rem Fractul, sans-serif;
  /* max-width: 1112px; */
}
.main-title > span{
  color: rgba(165, 255, 163, 1);
}

@media (max-width: 991px) {
  .main-title {
    /* max-width: 100%; */
    font-size: 2.2rem;
    /* margin-top: 50%; */
  }
}

.cta-button {
  border-radius: 42px;
  background-color: rgba(165, 255, 163, 1);
  align-self: center;
  display: flex;
  margin-top: 10px;
  gap: 6px;
  font-size: 18px;
  color: rgba(0, 0, 0, 1);
  font-weight: 700;
  justify-content: center;
  padding: 22px 28px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (max-width: 991px) {
  .cta-button {
    max-width: 400px;
    width: 100%;
  }
}

.cta-button:hover {
  background-color: rgb(207, 247, 206);
}

.cta-icon {
  aspect-ratio: 1;
  object-fit: auto;
  object-position: center;
  width: 24px;
}

.cta-text {
  font-family: Fractul, sans-serif;
  margin: auto 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes twinkle {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.star {
  position: absolute;
  width: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  height: 30px;
  filter: grayscale();
  background-image: url("./images/star.svg");
}

.star-1 {
  top: 10%;
  left: 20%;
  animation: twinkle 2s infinite;
}

.star-2 {
  top: 15%;
  left: 50%;
  animation: twinkle 2s infinite;
}

.star-3 {
  top: 25%;
  left: 80%;
  animation: twinkle 2s infinite;
}

.star-4 {
  top: 40%;
  left: 10%;
  animation: twinkle 2s infinite;
}

.star-5 {
  top: 60%;
  left: 30%;
  animation: twinkle 2s infinite;
}

.star-6 {
  top: 75%;
  left: 70%;
  animation: twinkle 2s infinite;
}

.star-7 {
  top: 85%;
  left: 40%;
  animation: twinkle 2s infinite;
}

.footer-section {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 10;
}

.footer-image {
  width: 100%;
}

.center {
  position: fixed;
  inset: 0px;
  width: 95%;
  height: 5rem;
  max-width: 100vw;
  max-height: calc(100% - 200px);
  top: 60px;
  display: flex;
  margin: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
a{
  text-decoration: none;
}
.desc-title{
  font-size: 1.7rem;
  margin: 3px 0;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  font: 300  Fractul, sans-serif;
}