@font-face {
  font-family: ObelixPro;
  src: url("./fonts/ObelixPro.woff2") format("woff2"), url("./fonts/ObelixPro.woff") format("woff");
}

@font-face {
  font-family: ObelixProB;
  src: url("./fonts/ObelixPro-Bold.woff2") format("woff2"), url("./fonts/ObelixPro-Bold.woff") format("woff");
}


@font-face {
  font-family: Inter;
  src: url("./fonts/Inter-Regular.woff2") format("woff2"),
    url("./fonts/Inter-Regular.woff") format("woff");
}

:root {
  --Web-black: #363636;
  --Web-light: #fff7d7;
  --Web-Yellow: #ffd946;
  --Web-Blue: #436fff;
}
html {
  scrollbar-width: none;
  -ms-overflow-style: none;  /* IE and Edge */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "ObelixPro", Helvetica, sans-serif;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;  /* IE and Edge */
}

body {
  font-size: 14px;
  background: var(--Web-light);
  color: var(--Web-black);
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

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

a:hover {
  color: var(--Web-Blue);
}

p {
  font-size: inherit;
}

span {
  font-size: inherit;
}

.hidden {
  display: none !important;
}
.d-flex {
  display: flex !important;
}
.w-full {
  width: 100%;
}

.text-nowrap {
  white-space: nowrap;
}

.ternary-button,
.secondary-button,
.primary-button {
  display: flex;
  padding: 10px 16px 6px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 1px solid var(--Web-black);
  background: var(--Web-Blue);
  box-shadow: 0 2px 0 0 var(--Web-black);
  color: #ffffff !important;
  text-transform: uppercase;
  transition: all 100ms linear;
  font-size: 20px;
}

.secondary-button {
  background: #fff;
  color: var(--Web-Blue) !important;
}

.ternary-button {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
}

.ternary-button:active,
.secondary-button:active,
.primary-button:active {
  box-shadow: 0 1px 0 0 var(--Web-black);
  transform: translateX(1px);
}

.secondary-button:hover,
.primary-button:hover {
  filter: brightness(0.9);
}

.ternary-button:hover {
  filter: brightness(0.3);
}

.container {
  width: 80vw;
  margin: 0 auto;
  max-width: 1224px;
}

.mobile {
  display: none;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 80vw;
  max-width: 1224px;
  margin: 0 auto;
  padding: 16px 24px;
  border-radius: 0 0 24px 24px;
  border-right: 1px solid var(--Web-black);
  border-bottom: 1px solid var(--Web-black);
  border-left: 1px solid var(--Web-black);
  box-shadow: 0 4px 0 0 var(--Web-black);
  background: var(--Web-light);
  color: var(--Web-black);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.logo {
  font-size: 24px;
}

.menu-container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: end;
}
.menu-container .menu {
  display: flex;
  gap: 24px;
  font-size: 16px;
}
.menu-container .menu a {
  transition: color 200ms linear;
}
.menu-container .menu a:hover {
  color: var(--Web-Blue);
}
.nav-container .actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-container .actions a {
  font-size: 16px;
}

/* Section intro */
#intro {
  background: url("./assets/bg.jpg") no-repeat center center;
  background-size: cover;
  min-height: 100dvh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.intro-content {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  height: 100%;
  width: 100%;
}

#intro .mascot {
  max-width: 520px;
  width: 43%;
}
#intro .description {
  flex: 1;
}

#intro .description .quote p {
  font-family: "ObelixProB";
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(155, 98, 0, 0.32);
  position: relative;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 2.5px;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: clamp(36px, 4.4vw, 66px);
  color: var(--Web-Blue);
  letter-spacing: -1px;
}

/* [data-text]::after {
  color: var(--Web-Blue);
  content: attr(data-text);
  position: relative;
  left: 0;
  top: 0;
  font-size: 56px;
  text-shadow: 0 2px 4px rgba(155, 98, 0, 0.32);
  z-index: 1;
}
[data-text]::before {
  content: attr(data-text);
  position: absolute;
  left: 1px;
  top: 0;
  font-size: 57px;
  color:#ffffff;
  text-shadow: 0 2px 4px rgba(155, 98, 0, 0.32);
  z-index: 0;
} */

#intro .description .sub-quote {
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: clamp(18px, 2.3vw, 24px);
  font-weight: 400;
  margin-top: 16px;
  font-family: "Inter";
}
#intro .description .quote .sub {
  color: var(--Web-black);
}
#intro .description .chain-support {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
#intro .description .chain-support .chains {
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.48);
  padding: 8px 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
#intro .description .chain-support .chains img {
  width: 24px;
  height: 24px;
}
#intro .description .chain-support span {
  font-family: "Inter";
  font-size: clamp(14px, 1.5vw, 20px);
  line-height: clamp(18px, 2vw, 24px);
}

#intro .description .actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
#intro .ata-button {
  display: flex;
  color: #ffffffcc;
  margin: 0 auto;
  flex-direction: column;
  width: 80px;
  text-align: center;
  gap: 6px;
  animation: bouncing 1.5s infinite;
  font-size: 24px;
  position: absolute;
  bottom: 12px;
  left: calc(50% - 40px)
}
#intro .ata-button img {
  width: 40%;
  margin: 0 auto;
}

/* about us */

#about {
  text-align: center;
  padding: 3vw 12px;
}

#about .about-container .title {
  font-size: clamp(20px, 2.3vw, 40px);
}

#about .about-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

#about .about-content .item {
  border-radius: 24px;
  background: var(--Web-black, #363636);
  padding: 8px;
  text-align: center;
}

#about .about-content .item img {
  border-radius: 16px;
}

#about .about-content .item .title {
  color: var(--Web-Yellow);
  text-align: center;
  font-size: clamp(16px, 1.2vw, 24px);
  margin-top: 16px;
}

#about .about-content .item .description {
  font-size: clamp(14px, 1vw, 16px);
  margin-top: 12px;
  color: #fff;
  font-family: "Inter";
  padding: 0 20px 16px;
}

/* features */

#features {
  padding: 3vw 12px;
  background: url(./assets/bg-5.png) center no-repeat;
  background-size: cover;
}

#features .features-container .title {
  font-size: clamp(20px, 2.3vw, 40px);
  text-align: center;
  color: var(--Web-Yellow);
}

#features .features-container .features-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
#features .features-container .features-content .navigation {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 250px;
}
#features .features-container .features-content .navigation .nav-item {
  border-radius: 12px;
  background: #464643;
  padding: 16px;
  overflow: hidden;
  height: 50px;
  cursor: pointer;
  transition: height 200ms linear;
}
#features .features-container .features-content .navigation .nav-item.active {
  overflow: auto;
  flex: 1;
}

#features .features-container .features-content .navigation .title {
  text-align: left;
  color: #fff;
  font-size: clamp(14px, 1.2vw, 24px);
  padding-bottom: 8px;
}
#features .features-container .features-content .navigation .nav-item.active .title {
  color: var(--Web-Yellow);
  background: url("./assets/line.png") bottom no-repeat;
  background-size: 100% 1px;
}
#features .features-container .features-content .navigation .description {
  font-family: "Inter";
  color: #fff;
  font-size: clamp(14px, 1vw, 16px);
  margin-top: 12px;
  text-align: justify;
}

#features .features-container .features-content #feature-content {
  color: rgba(255, 255, 255, 0.24);
  text-align: center;
  border-radius: 12px;
  height: 600px;
  width: 600px;
}

#features .features-container .features-content #feature-content video {
  border-radius: 12px;
  border: 1px solid rgba(255, 247, 215, 0.12);
  height: 100%;
}

/* faq section */

#faq {
  padding: 3vw 12px;
}

#faq .faq-container .title {
  font-size: clamp(20px, 2.3vw, 40px);
  line-height: clamp(24px, 2.4vw, 45px);;
}

#faq .faq-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}
#faq .faq-container .title-container {
  width: 43%;
}

#faq .faq-container .faq-content {
  flex: 1;
  margin-top: -8px;
}

#faq .faq-container .faq-content .faq-item {
  padding: 8px 0px;
  border-bottom: 1px solid var(--Web-black);
  overflow: hidden;
  height: 55px;
}
#faq .faq-container .faq-content .faq-item.active {
  height: auto;
}
#faq .faq-container .faq-content .faq-item .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#faq .faq-container .faq-content .faq-item .title p {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 600;
}

#faq .faq-container .faq-content .faq-item .description a,
#faq .faq-container .faq-content .faq-item .description {
  font-family: "Inter";
  font-size: clamp(12px, 1vw, 16px);
  margin-top: 12px;
}

#faq .faq-container .faq-content .faq-item .description a {
  color: var(--Web-Blue)
}

/* trynow */
#trynow {
  background: url(./assets/bg-section-6.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  gap: 12px;
  overflow-x: hidden;
}
#trynow .right-image,
#trynow .left-image {
  width: 30%;
  max-width: 500px;
}
#trynow .trynow-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#trynow .trynow-content .title {
  color: var(--White, #fff);
  text-align: center;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: var(--Web-black);
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 130%;
  margin-bottom: 12px;
  white-space: nowrap;
  font-family: "ObelixProB";
  letter-spacing: -1px;
}

/* footer */
#footer {
  padding: 3vw 12px;
}
#footer .footer-content {
  display: flex;
}

.footer-content .project {
  flex: 2;
}
.footer-content .project .name {
  font-size: 24px;
}
.footer-content .project .slogan {
  color: var(--Web-Blue, #436fff);
  font-size: clamp(12px, 1vw, 16px);
  margin-top: 12px;
}

.footer-content .social,
.footer-content .nav {
  flex: 1;
  gap: 30px;
}

.footer-content .nav {
  display: flex;
  gap: 30px;
}

.footer-content .nav .nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-content .nav .nav-list a {
  font-family: "Inter";
}

.footer-content .social .title {
  font-size: clamp(12px, 1vw, 16px);
  margin-bottom: 12px;
}

.footer-content .social .social-list {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-content .social .social-list svg {
  height: 20px;
  width: 20px;
}
.footer-content .social .social-list svg:hover {
  fill: var(--Web-Blue);
}
/* Responsive 1024 */

@media only screen and (max-width: 1024px) {
  .nav-container,
  .container {
    width: 95vw;
  }
  #intro .mascot {
    width: 42%;
  }

  .intro-content {
    flex-direction: column;
    gap: 30px;
    margin-top: 100px;
  }
  .intro-content .description {
    text-align: center;
  }
  .intro-content .description .actions,
  .intro-content .description .chain-support {
    justify-content: center;
  }
  #intro .ata-button {
    margin-top: 30px;
    position: static;
  }

  #features .features-container .features-content #feature-content {
    height: 500px;
    width: 500px;
  }
  #trynow {
    position: relative;
  }
  #trynow .trynow-content {
    position: relative;
    z-index: 1;
    height: 280px;
  }
  #trynow .trynow-content .title {
    margin-bottom: 20px;
  }
  #trynow .right-image,
  #trynow .left-image {
    position: absolute;
    bottom: 0px;
  }
  #trynow .left-image {
    left: 0px;
  }
  #trynow .right-image {
    right: 0px;
  }

  .footer-content .social,
  .footer-content .nav,
  .footer-content .nav .nav-list,
  .footer-content .project {
    flex: 1;
  }

  .footer-content .social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

/* Responsive 750px */
@media only screen and (max-width: 750px) {
  .mobile {
    display: inline-block;
  }
  .logo {
    font-size: 16px;
  }
  .nav-container {
    flex-wrap: wrap;
    padding: 16px 24px;
  }
  .nav-container .actions {
    gap: 16px;
  }
  .nav-container .actions button {
    width: 24px;
    text-align: right;
  }
  .menu-container {
    order: 1;
    flex: auto;
    width: 100%;
  }
  .menu-container {
    position: relative;
  }
  .menu-container .menu {
    flex-direction: column;
    width: 100%;
    text-align: center;
    display: none;
    padding: 40px 0px;
  }

  #faq,
  #features,
  #about {
    padding: 3vh 12px;
  }
  #about .about-content .item img {
    border-radius: 30px;
  }

  #features .features-container .features-content {
    grid-template-columns: 1fr;
  }

  #features .features-container .features-content .description {
    margin-bottom: 12px;
  }
  #features .features-container .features-content #feature-content {
    display: none;
  }
  #faq .faq-container .faq-content {
    width: 100%;
    flex: auto;
  }
  #faq .faq-container .faq-content .faq-item .title p {
    font-size: 16px;
  }
  #trynow .trynow-content .title {
    font-size: 30px;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-content .social,
  .footer-content .nav, .footer-content .nav .nav-list,
  .footer-content .project {
    text-align: center;
  }
  .footer-content .nav {
    gap: 8px;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

@media only screen and (max-width: 370px) {
  .nav-container {
    flex-wrap: wrap;
    padding: 4px 12px;
  }
  #about .about-content {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
  #trynow .trynow-content {
    height: 200px;
  }
  #trynow .trynow-content .title {
    font-size: 20px;
  }
  #faq .faq-container .faq-content .faq-item .title p {
    font-size: 14px;
  }
}

@keyframes bouncing {
  0% {
    transform: translateY(0%);
    color: rgba(255, 255, 255, 0.8);
  }
  50% {
    transform: translateY(20px);
    color: rgba(255, 255, 255, 1);
  }
  100% {
    transform: translateY(0%);
    color: rgba(255, 255, 255, 0.8);
  }
}
