* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body,
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}
canvas,
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  overflow-wrap: break-word;
}
a {
  text-decoration: none;
  color: inherit;
}
ol,
ul {
  list-style: none;
}
:root {
  --primary: #ff8e1d;
  --secondary: #9945ff;
  --green: #54a665;
  --text: #929dae;
}
.button {
  position: relative;
  background: #000;
  display: inline-flex;
  height: 45px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid;
  border-color: initial;
  border-radius: 50px;
  font-size: 19.195px;
  line-height: 45px;
  font-style: normal;
  font-weight: 400;
  padding: 0 42px 0 30px;
  transition: all 0.15s ease;
}
.button.enterNow {
  opacity: 0;
  margin-top: 30px;
}
.button.social {
  padding: 0;
  border-color: #fff;
  height: 45px;
  width: 45px;
}
.button.social svg {
  width: 100%;
  height: auto;
}
.button.social svg path {
  transition: all 0.15s ease;
  fill: #fff;
}
.button.social:hover {
  background: #fff;
}
.button.social:hover svg path {
  transition: all 0.15s ease;
  fill: #000;
}
.button .tt svg,
.button .ttf svg {
  position: absolute;
  top: 50%;
  transform: translate(100%, -50%);
  width: 15px;
  height: auto;
  right: 0;
}
.button:hover {
  color: #000;
}
.button:hover.primary {
  border-color: var(--primary);
  background: var(--primary);
}
.button:hover.primary path {
  fill: #000;
}
.button:hover.secondary {
  border-color: var(--secondary);
  background: var(--secondary);
}
.button:hover.secondary path {
  fill: #000;
}
@media (max-width: 520px) {
  .button {
    font-size: 18px;
    height: 40px;
    padding: 0 32px 0 20px;
  }
  .button.social {
    height: 40px;
    width: 40px;
  }
  .button .tt svg,
  .button .ttf svg {
    position: absolute;
    top: 50%;
    transform: translate(100%, -50%);
    width: 15px;
    height: auto;
    right: 0;
  }
}
:root {
  --color-bg1: #000;
  --color-bg2: #000;
  --color1: 69, 182, 141;
  --color2: 76, 126, 233;
  --color3: 76, 126, 233;
  --color-interactive: 76, 126, 233;
  --circle-size: 50%;
  --blending: hard-light;
}
@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  to {
    transform: translateX(-50%) translateY(-10%);
  }
}
.gradient-bg {
  width: 100vw;
  height: 100%;
  position: absolute;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
  opacity: 0;
}
.gradient-bg svg {
  display: none;
}
.gradient-bg .gradients-container {
  filter: url(#goo) blur(40px);
  width: 100%;
  height: 100%;
}
@keyframes floatLeft {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(-10vw, 5vh);
  }
  to {
    transform: translate(0);
  }
}
@keyframes floatRight {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(10vw, -5vh);
  }
  to {
    transform: translate(0);
  }
}
.gradient-bg .interactive {
  position: absolute;
  background: radial-gradient(
      circle at center,
      rgba(var(--color-interactive), 0.8) 0,
      rgba(var(--color-interactive), 0) 50%
    )
    no-repeat;
  mix-blend-mode: var(--blending);
  width: 40vw;
  height: 40vw;
  opacity: 0.55;
}
.gradients-container > div {
  opacity: 0.55;
}
@media (max-width: 640px) {
  :root {
    --circle-size: 50vh;
  }
}
.marquee__wrapper {
  width: 100vw;
  margin: 60px 0 45px -60px;
  overflow: hidden;
}
.marquee__mobile-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 640px) {
  .marquee__mobile-container {
    flex-direction: row;
  }
  .marquee__mobile-container .marquee__container:nth-child(2) {
    display: none;
  }
}
.marquee__container {
  display: flex;
  gap: 15px;
}
.marquee__item {
  min-width: 65px;
  height: 65px;
  transition: background-color 0.3s ease;
}
.marquee__item.border {
  border: 1px solid #fff;
  border-radius: 100%;
}
.marquee__item img {
  border-radius: 100%;
}
.legal-container {
  max-width: calc(980px + 6rem);
  margin: 0 auto 3rem;
  color: var(--text);
  padding: 0 0.8rem;
}
.legal-container p {
  margin-bottom: 10px;
}
.legal-container h1 {
  text-align: center;
  font-size: vw(42.656);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #fff;
}
.legal-container h3 {
  line-height: 150%;
  margin-top: 0.75rem;
}
.legal-container h5 {
  font-size: max(15px, 1.33721vw);
}
.vignettes-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}
.vignettes-container .trade-vignette,
.vignettes-container .vault-vignette {
  position: absolute;
  opacity: 0;
}
.vignettes-container .vignette-content {
  padding: 15px;
  background: #000;
  border-radius: 16px;
  color: #fff;
  transform-origin: center center;
}
.vignettes-container .trade-vignette {
  left: 8vw;
  top: 6.5vh;
  transform: rotate(-12deg);
  animation: fadeInTopTrade 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.vignettes-container .trade-vignette .vignette-content {
  border: 2px solid var(--primary);
}
.vignettes-container .trade-vignette .trade-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  font-size: 10.664px;
  font-weight: 400;
  line-height: 9.965px;
  letter-spacing: 0.533px;
  gap: 90px;
}
.vignettes-container .trade-vignette .trade-header div {
  display: flex;
  gap: 10px;
}
.vignettes-container .trade-vignette .trade-header .status {
  color: var(--primary);
}
.vignettes-container .trade-vignette .trade-position {
  font-size: 25.593px;
  font-weight: 700;
  line-height: 49.012px;
  letter-spacing: 1.28px;
  text-transform: capitalize;
  color: var(--primary);
}
.vignettes-container .trade-vignette .trade-pair {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 25.593px;
  font-weight: 700;
  letter-spacing: 1.28px;
  text-transform: capitalize;
  line-height: 30px;
}
.vignettes-container .trade-vignette .trade-pair .token-icon {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vignettes-container .trade-vignette .trade-pnl {
  font-size: 36.257px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.813px;
}
.vignettes-container .trade-vignette .trade-pnl.positive {
  color: var(--primary);
}
.vignettes-container .trade-vignette .trade-pnl.negative {
  color: #f55;
}
.vignettes-container .vault-vignette {
  top: 18vh;
  right: 0;
  transform: rotate(16deg);
  animation: fadeInTopVault 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}
.vignettes-container .vault-vignette .vignette-content {
  border: 2px solid var(--secondary);
}
.vignettes-container .vault-vignette .vault-header {
  display: flex;
  align-items: center;
  font-size: 25.593px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.28px;
  text-transform: capitalize;
  gap: 10px;
}
.vignettes-container .vault-vignette .vault-header .token-icon {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  object-fit: cover;
}
.vignettes-container .vault-vignette .apr-label {
  color: var(--text);
  font-size: 10.664px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.533px;
}
.vignettes-container .vault-vignette .apr-value {
  font-size: 36.257px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.813px;
  color: var(--secondary);
}
.vignettes-container .vault-vignette .chain-icons {
  margin-top: 10px;
  display: flex;
  gap: 5px;
}
.vignettes-container .vault-vignette .chain-icons span {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.vignettes-container .vault-vignette .chain-icons span img.plus {
  height: 9px;
  margin: 8px 0;
}
.vignettes-container .vault-vignette .chain-icons span img.reward {
  height: 22px;
}
@keyframes fadeInTopTrade {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotate(-12deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-12deg);
  }
}
@keyframes fadeInTopVault {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotate(16deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(16deg);
  }
}
@media (max-width: 1024px) {
  .vignettes-container {
    display: none;
  }
}
.hidden {
  display: none;
}
body,
html {
  width: 100%;
  overflow-x: hidden;
}
body {
  background-color: #000;
  color: #fff;
}
header {
  position: relative;
  text-align: center;
  margin: 30px auto;
}
header h1 {
  display: inline-block;
}
.primary {
  color: var(--primary);
}
.primary .svgFill {
  fill: var(--primary);
}
.primary .svgStroke {
  stroke: var(--primary);
}
.secondary {
  color: var(--secondary);
}
.secondary .svgFill {
  fill: var(--secondary);
}
.secondary .svgStroke {
  stroke: var(--secondary);
}
a {
  transition: all 0.15s ease;
}
h2,
h4 {
  text-align: center;
  font-size: 2.7698701299vw;
  line-height: 5.65vh;
  overflow: hidden;
  color: #fff;
  white-space: nowrap;
}
h2,
h2.large,
h4,
h4.large {
  font-style: normal;
  font-weight: 700;
}
h2.large,
h4.large {
  font-size: 4.1548051948vw;
  line-height: 100%;
}
.tt {
  display: inline-block;
  transform: translateY(100%);
  line-height: 1;
}
h3 {
  color: #fff;
  font-size: 1.6618831169vw;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  overflow: hidden;
}
.sub,
footer,
p {
  font-size: max(14px, 0.9694805195vw);
}
.fixSub,
.sub {
  display: block;
  margin-bottom: 0.7792207792vw;
  color: var(--text);
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.fixSub.large,
.sub.large {
  color: #fff;
  font-size: 1.6618831169vw;
  line-height: 120%;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.fixSub.large .tt,
.sub.large .tt {
  line-height: 50px;
}
.fixSub.large svg,
.sub.large svg {
  height: 50px;
  width: auto;
}
.fixSub.ls,
.sub.ls {
  letter-spacing: 0.1938961039vw;
}
.connectWithUs,
section {
  position: relative;
}
.connectWithUs.hero,
section.hero {
  height: 100vh;
}
.connectWithUs.hero h1,
section.hero h1 {
  position: absolute;
  top: 30px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.connectWithUs.hero .c,
section.hero .c {
  position: absolute;
  top: calc(50% - 56.5px);
  transform: translateY(-50%);
  width: calc(100% - 120px);
  text-align: center;
  transition: all 0.3s ease;
}
.connectWithUs.hero .c__container,
section.hero .c__container {
  left: 50%;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: 3fr 3fr;
  grid-column-gap: 80px;
  margin: 40px auto 0;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translate(0);
}
.connectWithUs .container,
.connectWithUs .container__grid,
section .container,
section .container__grid {
  position: relative;
  height: 100%;
  padding: 45px 60px;
  z-index: 1;
}
.connectWithUs .container__grid,
section .container__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hr {
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    65deg,
    var(--primary) 17.72%,
    var(--secondary) 86.36%
  );
}
.hr,
.infoBoard {
  position: absolute;
}
.infoBoard {
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  height: 113px;
  border: 2px solid #fff;
  border-radius: 90px;
  color: #fff;
  font-size: 34.125px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  z-index: 1;
}
.infoBoard__container {
  display: flex;
  align-items: center;
  height: 113px;
}
.infoBoard__container div {
  padding: 0 35px;
  position: relative;
  text-align: center;
}
.infoBoard__container div:after {
  content: "";
  height: 73px;
  width: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.infoBoard__container div:last-child:after {
  content: none;
}
.infoBoard__container div span.s {
  display: block;
  color: var(--text);
  text-align: center;
  font-size: 15.783px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.infoBoard__container div span.green {
  color: var(--green);
}
span.gradient {
  background: var(
    --t,
    linear-gradient(59deg, var(--primary) 50.98%, var(--secondary) 83.54%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.backedBy {
  display: flex;
  gap: 160px;
  height: 40px;
  justify-content: center;
}
.backedBy img {
  height: 40px;
  width: auto;
}
.audits,
.defiLiquidity {
  display: flex;
  gap: 40px;
  height: 50px;
  justify-content: end;
}
.audits img,
.defiLiquidity img {
  height: 50px;
  width: auto;
}
.defiLiquidity {
  justify-content: center;
}
.contact__container {
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 450px));
  grid-gap: clamp(0px, 3vw, 80px);
  gap: clamp(0px, 3vw, 80px);
  margin: 80px auto;
}
.contact__container .box {
  position: relative;
  background: #000;
  border-radius: 20px;
  border: 2px solid #fff;
  padding: 30px 25px;
}
.contact__container .box img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.contact__container .box img.cash1 {
  width: 35%;
  right: -0.75vw;
}
.contact__container .box img.cash2 {
  width: 42%;
}
.contact__container .box img.cash3 {
  width: 42%;
  right: -1vw;
}
footer {
  position: relative;
  color: var(--text);
}
footer .footer__container {
  position: relative;
  padding: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
footer .footer__container a {
  display: block;
}
footer .footer__container a:hover {
  color: #fff;
}
footer .footer__container .title-small {
  position: absolute;
  color: #fff;
  font-size: 14.93px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
  top: 0;
  transform: translateY(-100%);
  white-space: nowrap;
}
footer .footer__container .footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .footer__container .footer__content .block {
  position: relative;
}
footer .footer__container .footer__content .block ul {
  display: flex;
  gap: 30px;
}
footer .footer__container .footer__content .block:first-child {
  flex: 0 0 auto;
}
footer .footer__container .footer__content .block:not(:first-child) {
  margin-left: 120px;
}
footer .footer__container .footer__content .block:nth-child(n + 2) {
  flex: 0 0 auto;
}
footer .footer__container .footer__content .rb {
  display: flex;
  margin-left: auto;
  flex: 0 0 auto;
  gap: 120px;
}
@media (max-width: 768px) {
  footer .footer__container .footer__content {
    flex-direction: column;
    gap: 40px;
  }
  footer .footer__container .footer__content .block {
    width: 100%;
  }
  footer .footer__container .footer__content .block ul {
    flex-direction: column;
    gap: 0;
  }
  footer .footer__container .footer__content .block:not(:first-child) {
    margin-left: 0;
  }
  footer .footer__container .footer__content .rb {
    flex-direction: column;
    margin-left: 0;
    gap: 40px;
    width: 100%;
  }
}
footer .socials {
  display: flex;
  gap: 15px;
}
.uc {
  text-transform: uppercase;
}
.txt-left {
  text-align: left;
}
.mt {
  margin-top: 20px;
}
.mt-30 {
  margin-top: min(30px, 1.5584415584vw);
}
.mt-40 {
  margin-top: min(40px, 2.0779220779vw);
}
.mt-45 {
  margin-top: min(45px, 2.3376623377vw);
}
.mt-60 {
  margin-top: min(60px, 3.1168831169vw);
}
.mb {
  margin-bottom: 20px;
}
.mb-20 {
  margin-bottom: min(20px, 1.038961039vw);
}
.pb-20 {
  padding-bottom: min(20px, 1.038961039vw);
}
.mb-25 {
  margin-bottom: min(25px, 1.2987012987vw);
}
.mb-40 {
  margin-bottom: min(40px, 2.0779220779vw);
}
.mb-50 {
  margin-bottom: min(50px, 2.5974025974vw);
}
.mobile {
  display: none !important;
}
ol ol {
  margin-left: 2em;
}
.legal-container a,
.underline {
  text-decoration: underline;
}
ol ol > li {
  font-size: 1.1em;
  font-weight: 400;
  margin-top: 0.75em;
}
ol ol.alpha > li,
ol.alpha {
  list-style-type: lower-alpha;
  margin: 0.5em 0 0.5em 1.5em;
  font-size: max(14px, 0.969481vw);
}
ol ol.alpha > li::marker,
ol.alpha::marker {
  color: #fff;
}
ol ol ol {
  margin-left: 2em;
}
h5 {
  color: #fff;
  font-size: 1.3372077922vw;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  overflow: hidden;
}
.pulse-green-animate {
  animation: pulse-green 2s infinite;
  display: inline-block !important;
  padding: 0 !important;
  margin-right: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(148, 255, 11, var(--tw-bg-opacity, 1));
  border-radius: 9999px;
  width: 0.5rem;
  height: 0.5rem;
  top: -0.05rem;
}
@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 var(--green);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(51, 217, 178, 0);
  }
  to {
    transform: scale(0.95);
    box-shadow: 0 0 rgba(51, 217, 178, 0);
  }
}
@media (max-width: 1350px) {
  .sub .large .svg {
    height: 40px;
    margin-top: 5px;
  }
  .infoBoard,
  .infoBoard__container {
    height: 90px;
  }
  .infoBoard div,
  .infoBoard__container div {
    font-size: 20px;
    padding: 0 20px;
  }
  .infoBoard div:after,
  .infoBoard__container div:after {
    height: 60px;
  }
  .infoBoard div span.s,
  .infoBoard__container div span.s {
    font-size: 14px;
  }
  section .container__grid {
    grid-template-columns: 1fr;
  }
  section .container__grid .audits {
    margin-top: 20px;
    justify-content: start;
  }
}
@media (max-width: 980px) {
  .audits,
  .audits img {
    height: 30px;
  }
  .backedBy {
    height: 20;
    gap: 60px;
  }
  .backedBy img {
    height: 20px;
  }
  .contact__container {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 25px;
    margin: 25px 0;
    width: 100%;
  }
  .contact__container .box {
    margin-bottom: 25px;
  }
  .contact__container .box:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1280px) {
  .contact__container .box img.cash1 {
    width: 44%;
    right: -5%;
  }
  .contact__container .box img.cash2 {
    width: 50%;
    right: -4%;
  }
  .contact__container .box img.cash3 {
    width: 49%;
    right: -7%;
  }
}
@media (max-width: 1250px) {
  .contact__container .box img.cash1,
  .contact__container .box img.cash2,
  .contact__container .box img.cash3 {
    display: none;
  }
}
@media (max-width: 940px) {
  .infoBoard__container div.millions {
    display: none;
  }
  .contact__container .box img.cash1 {
    display: block;
    max-height: 116%;
    width: auto;
    right: 0;
  }
  .contact__container .box img.cash2 {
    display: block;
    max-height: 150%;
    width: auto;
    right: 0;
  }
  .contact__container .box img.cash3 {
    display: block;
    max-height: 120%;
    width: auto;
    right: 0;
  }
}
@media (max-width: 640px) {
  .noMobile {
    display: none !important;
  }
  .mobile {
    display: inherit !important;
  }
  h2 {
    font-size: 18px;
    line-height: 100%;
  }
  h2.large {
    font-size: 28px;
  }
  h3 {
    font-size: 16px;
    line-height: 120%;
  }
  .mb-25 {
    margin-bottom: 15px;
  }
  .sub {
    position: relative;
    font-size: 11px;
    line-height: 100%;
    letter-spacing: 1.1px;
  }
  .sub.large {
    font-size: 14px;
  }
  .sub.ls {
    letter-spacing: 0.1938961039vw;
  }
  section.hero {
    height: 80vh;
  }
  section.hero .c {
    width: calc(100% - 2rem);
    top: calc(50% - 30px);
  }
  section.hero .c__container {
    grid-template-columns: 1fr;
    transform: none;
    margin: 0 auto;
    opacity: 1;
  }
  .subHeroMobile {
    margin-top: 5px;
  }
  .subHeroMobile .sub.large {
    margin: 0;
    height: 40px;
    line-height: 40px;
    gap: 10px;
  }
  .subHeroMobile .sub.large .tt {
    line-height: 40px;
  }
  .subHeroMobile .sub.large svg {
    height: 24px;
    margin: 8px 0;
  }
  .subHeroMobile span .icon {
    opacity: 0;
  }
  .connectWithUs .container,
  section .container {
    padding: 30px 1rem;
  }
  .connectWithUs .container__grid,
  section .container__grid {
    padding: 30px 1rem;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .connectWithUs .container__grid .txt-left,
  section .container__grid .txt-left {
    text-align: center;
  }
  .infoBoard {
    bottom: 40px;
    height: 60px;
  }
  .infoBoard .millions {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translate(-50%, -100%);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    height: 30px;
  }
  .infoBoard .infoBoard__container {
    position: relative;
    height: 56px;
    font-size: 20px;
  }
  .infoBoard .infoBoard__container:before {
    content: "";
    right: unset;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 40px;
    position: absolute;
    background: #fff;
  }
  .infoBoard .infoBoard__container div {
    padding: 0 10px;
  }
  .infoBoard .infoBoard__container div span.s {
    font-size: 11px;
  }
  .infoBoard .infoBoard_slide {
    padding: 0 !important;
  }
  .infoBoard_slides {
    position: relative;
    width: 100%;
    height: 56px;
  }
  .infoBoard_slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    gap: 15px;
    width: 100%;
    height: 56px;
    align-items: center;
  }
  .infoBoard_slide:after {
    content: none !important;
  }
  .infoBoard_slide:first-child {
    position: relative;
  }
  .infoBoard_slide > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    padding-right: 15px;
  }
  .infoBoard_slide > div:after {
    content: none;
  }
  .infoBoard_slide > div:nth-child(2) {
    padding-right: 0;
  }
  .infoBoard_slide > div:nth-child(2):after {
    content: none;
  }
  .infoBoard_slide > div span.s {
    font-size: 12px;
    margin-bottom: 2px;
  }
  .infoBoard_slide > div span:last-child {
    font-size: 16px;
    font-weight: 500;
  }
  .backedBy {
    gap: 30px;
  }
  .backedBy,
  .backedBy img {
    height: 15px;
  }
  .marquee__wrapper {
    margin: 30px 0 0 -1rem;
  }
  .marquee__container {
    gap: 10px;
  }
  .marquee__item {
    min-width: 32px;
    height: 32px;
  }
  section .container__grid .audits {
    display: flex;
    gap: 15px;
    height: 20px;
    justify-content: center;
    margin-top: 0;
  }
  section .container__grid .audits img {
    height: 20px;
  }
  .defiLiquidity {
    grid-template-columns: 1fr 1fr;
    display: grid;
    height: auto;
    grid-gap: 15px;
    gap: 15px;
    max-width: 285px;
    margin: 50px auto 0;
  }
  .defiLiquidity > :last-child:nth-child(3) {
    grid-column: 1/-1;
    justify-self: center;
    max-width: 50%;
  }
  .defiLiquidity img {
    margin: 0 auto;
    height: 30px;
  }
  .defiLiquidity.chains > :last-child:nth-child(5) {
    grid-column: 1/-1;
    justify-self: center;
    max-width: 50%;
  }
  footer .footer__container {
    padding: 0 1rem 45px;
  }
  footer .footer__container .title-small {
    position: relative;
    transform: none;
    padding-bottom: 5px !important;
  }
  footer .footer__container p br {
    display: none;
  }
  footer .footer__container .footer__content,
  footer .footer__container .footer__content .rb {
    gap: 20px;
  }
  .connectWithUs span.tt,
  section .container__grid span.tt,
  section:not(.hero) .container span.tt {
    transform: translateY(0);
  }
  .contact__container .box {
    padding: 20px 15px;
  }
  .mb {
    margin-bottom: 15px;
  }
  .mb-20 {
    margin-bottom: 10px;
  }
  .pb-20 {
    padding-bottom: 10px;
  }
  .mb-40 {
    margin-bottom: 15px;
  }
  .mt {
    margin-top: 15px;
  }
  .mt-60 {
    margin-top: 30px;
  }
  .mm-t-0 {
    margin-top: 0;
  }
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/55c55f0601d81cf3-s.woff2) format("woff2");
  unicode-range: u+0460-052f, u+1c80-1c8a, u+20b4, u+2de0-2dff, u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/26a46d62cd723877-s.woff2) format("woff2");
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/97e0cb1ae144a2a9-s.woff2) format("woff2");
  unicode-range: u+1f??;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/581909926a08bbc8-s.woff2) format("woff2");
  unicode-range: u+0370-0377, u+037a-037f, u+0384-038a, u+038c, u+038e-03a1,
    u+03a3-03ff;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format("woff2");
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format("woff2");
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff,
    u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020,
    u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format("woff2");
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193,
    u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: Inter Fallback;
  src: local("Arial");
  ascent-override: 90.49%;
  descent-override: 22.56%;
  line-gap-override: 0%;
  size-adjust: 107.06%;
}
.__className_e8ce0c {
  font-family: Inter, Inter Fallback;
  font-style: normal;
}
