* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: black;
  color: #fff;
}
.nav {
  gap: 20px;
  /* height: 400px; */
  align-items: start;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 30px;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.hero {
  width: 100%;
  align-items: center;
}
.hero .nav {
  max-width: 960px;
  width: 100%;
}
.hero .main-img {
  width: 100%;
  max-width: 1200px;
  display: grid;
  place-items: center;
}

.hero .main-img img {
  width: 100%;
}
.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 220px;
  flex-wrap: wrap;
  margin-left: auto;
}
.nav ul li {
  margin-bottom: 5px;
  padding-right: 3px;
}
.nav ul li span {
  color: rgb(192, 192, 192);
  padding-left: 8px;
}
.nav ul li a {
  color: blue;
  text-decoration: underline;
  font-size: 18px;
  /* white-space: nowrap; */
}
.nav ul li a:hover {
  text-decoration: underline;
}
.nav button {
  padding: 13px 40px;
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-size: 16px;
  margin-left: 20px;
}
.main-img {
  width: 100%;
  margin: 20px 40px;
}
.cta {
  width: 100%;
  align-items: center;
}

.cta > * {
  width: 100%;
  max-width: 960px;
  text-align: center;
  font-size: 16px;
}
.cta h2 {
  font-size: 32px;
  margin-bottom: 30px;
}
.wallets {
  margin-top: 40px;
  width: 100%;
  font-weight: 700;
  max-width: 1024px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.wallets img {
  max-width: 100%;
}

.wallets > div {
  max-width: 470px;
  width: 100%;
  background-color: #222;
  padding: 20px;
  border-radius: 8px;
}

.banner {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  overflow: hidden;
  flex-wrap: wrap;
}

.banner img {
  max-width: 100%;
  object-fit: scale-down;
}

img {
  object-fit: cover;
}
.footer {
  /* background-color: #111; */
  padding: 20px;
  font-size: 12px;
  color: rgb(192, 192, 192);
  border-top: 2px solid rgb(192, 192, 192);
  width: 100%;
}

.footer span {
  font-weight: 700;
}

.footer p {
  max-width: 700px;
  margin: auto;
}

.strategy,
.chart {
  margin-top: 20px;
  max-width: 1366px;
  margin-bottom: 40px;
  width: 100%;
}

.strategy img,
.chart img {
  width: 100%;
  /* object-fit: scale-down; */
}

input {
  margin-bottom: 15px;
  width: fit-content;
}
textarea {
  margin: 20px 0;
  width: 100%;
  max-width: 400px;
}

.tg-container {
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 20px;
}

.tg {
  align-items: center;
  margin-bottom: 40px;
}

.tg img {
  height: 310px;
  object-fit: scale-down;
}

.tg a {
  color: red;
}

@media screen and (max-width: 1024px) {
  .wallets {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    padding: 0 20px;
  }
  .nav {
    flex-direction: column;
    align-items: center;
  }
  .nav ul {
    width: 100%;
    max-width: 400px;
    justify-content: center;
    flex-direction: row;
    gap: 15px;
    margin-left: 0;
  }
  .nav ul li {
    margin-bottom: 0;
  }
  .nav button {
    margin-left: 0;
    margin-top: 20px;
  }
  .banner {
    flex-direction: column;
    gap: 20px;
  }
  .wallets {
    justify-content: center;
  }

  .demos {
    max-width: 100%;
  }

  .demos video {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .nav ul {
    max-width: 300px;
    gap: 10px;
  }
  .nav ul li a {
    font-size: 16px;
  }
  .nav button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .cta h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .wallets > div {
    max-width: 100%;
  }
}
