html,
body {
  background-color: black;
  overflow-x: hidden;
  max-width: 100%;
  color: white;
}
.main {
  background-image: url(Assets//bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  height: 100vh;
  width: 100%;
  position: relative;
  background-size: max(1200px 100vw);
  background-size: cover;
}
.nav span img {
  position: relative;
  top: 15px;
}
.nav-buttons {
  display: flex;
  gap: 10px;
  font-size: 16px;
  padding-top: 20px;
}
.main .box {
  height: 100vh;
  width: 100vw;
  background-color: black;
  opacity: 0.74;
  position: absolute;
  top: 0%;
}
.complex {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.main .nav .complex {
  padding: 6px;
  border: 1px solid gray;
  border-radius: 3px;
  width: 120px;
  font-weight: 600;
  color: white;
  background: rgba(128, 128, 128, 0.09);
}
.main .nav .navButton {
  padding: 8px;
  background-color: red;
  color: white;
  border: 1px;
  border-radius: 3px;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 600;
}
nav {
  display: flex;
  max-width: 80vw;
  justify-content: space-between;
  height: 62px;
  padding: 0 10px;
  margin: auto;
  align-items: center;
  position: relative;
  z-index: 10;
}

.content {
  position: relative;
  top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
  color: white;
  gap: 23px;
  height: calc(100% - 62px);
  text-align: center;
}

.content p {
  font-weight: 900;
  line-height: 70px;
  font-size: 56px;
}
.signin {
  display: flex;
  justify-content: center;
  padding: 1rem;
  flex-wrap: wrap;
  gap: 10px;
}

.signin input {
  background-color: rgba(27, 27, 27, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: 0.25rem;
  border-width: 0.0625rem;
  border: 1px solid rgb(255, 255, 255);
  font-size: 1rem;
  line-height: 1;
  width: 350px;
  padding: 1rem 1rem;
  font-weight: 400;
  color: white;
  position: relative;
}

.signin .getstarted {
  border: 1px;
  border-radius: 0.25rem;
  font-size: 1.5rem;
  padding: 12px 24px;
  gap: 10px;
  line-height: 24px;
  display: flex;
  align-items: center;
}

.separation-svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  display: block;
}

.below-section {
  color: white;
  padding: 50px 150px;
  padding-bottom: 10px;
}
h2 {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 20px;
}

.cards-section {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  max-width: 80vw;
  margin: auto;
}
.cards-section::-webkit-scrollbar {
  height: 10px;
}
.cards-section::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 5px;
}
.cards-section .card {
  position: relative;
  width: 180px;
  flex-shrink: 0;
}
.cardnumber {
  position: absolute;
  top: 125px;
  left: -7px;
  font-size: 100px;
  line-height: 100px;
  font-weight: 700;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  color: rgb(0, 0, 0);
  -webkit-text-stroke: 0.1rem rgb(255, 255, 255);
}
.card img {
  border-radius: 5px;
  width: 100%;
  height: auto;
}

.below-section-2 {
  padding: 50px 150px;
  padding-bottom: 25px;
  color: white;
}
.flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.flex .blocks {
  background: radial-gradient(circle at top right, #2d2d85, #1a1a2e);
  border-radius: 15px;
  padding: 24px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}
.flex h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: rgb(255, 255, 255);
  font-weight: 500;
}
.flex p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  flex-grow: 1;
  font-weight: 400;
}
.flex svg {
  align-self: flex-end;
  margin-top: 15px;
}
.below-section-3 {
  color: white;
  padding: 50px 150px;
}

.below-section-3 .rows {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 8px;
  background-color: rgb(45, 45, 45);
  color: rgb(255, 255, 255);
  transition-duration: 250ms;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.68, 0.06);
  font-size: 1.5rem;
  font-weight: 400;
}
.rows svg {
  color: white;
}
.bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}
.bottom div {
  color: rgb(255, 255, 255);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.bottom span {
  display: flex;
  padding-top: 1rem;
  gap: 10px;
}
.bottom span input {
  padding: 10px;
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  background-color: rgb(31, 23, 23);
  border-radius: 0.25rem;
  border-width: 0.0625rem;
  border: 1px solid rgb(255, 255, 255);
  opacity: 0.4;
  font-size: 1rem;
  width: 300px;
  color: white;
  position: relative;
}

.bottom span button {
  padding: 10px;
  background-color: red;
  color: white;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  border: 1px;
  border-radius: 0.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.5rem;
  gap: 10px;
  display: flex;
  align-items: center;
}
.footer p {
  margin-bottom: 24px;
  color: #bbbbbb;
}
.footer a {
  color: #bbbbbb;
}

.footer {
  font-size: 14px;
  padding: 50px 150px;
  color: #bbbbbb;
}
.footer-links a {
  color: #bbbbbb;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}

.footer .lang button {
  margin-top: 24px;
  padding: 6px;
  border: 1px solid gray;
  border-radius: 3px;
  width: 100px;
  font-weight: 600;
  color: white;
  background: rgba(128, 128, 128, 0.09);
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .content {
    padding-bottom: 140px;
  }
  .content span p {
    font-size: 32px;
    line-height: 40px;
  }
  .content > :nth-child(2) {
    font-size: 18px;
  }
  .content > :nth-child(3) {
    font-size: 14px;
    padding: 0 20px;
  }
  .content input {
    width: 80%;
    margin-bottom: 10px;
  }
  .signin {
    display: flex;
    justify-content: center;
  }
  .signin input {
    width: 80vw;
  }
  .signin .getstarted {
    font-size: 1rem;
  }

  .content button {
    width: 60%;
    font-size: 16px;
  }

  .nav span img {
    width: 110px;
    height: 38px;
    position: relative;
    left: -3px;
  }
  nav {
    padding: 10px;
    max-width: 90vw;
  }
  nav .btn {
    font-size: 12px;
  }

  .below-section-2,
  .below-section,
  .below-section-3 {
    padding: 30px 20px;
  }
  .rows {
    font-size: 18px;
    padding: 18px;
  }

  .bottom span {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .bottom span button {
    width: 200px;
  }
  .footer {
    padding: 30px 20px;
  }
  .footer-links {
    grid-template-columns: repeat(1, 1fr);
  }
  h2 {
    font-size: 24px;
  }

  .bottom {
    padding: 0px 19px;
    display: flex;
    align-items: start;
  }
}
