@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
  --open-sans: "Open Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  background: rgb(0, 16, 37);
}

button {
  cursor: pointer;
}

.container {
  max-width: 1969px;
  padding: 0 112px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 10px;
  }
}

.subtitle {
  font-family: var(--open-sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: rgb(68, 197, 255);
}

.title {
  font-family: var(--open-sans);
  color: white;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 4px;
}
@media (max-width: 1024px) {
  .title {
    font-size: 24px;
  }
}

.subtext {
  font-family: var(--open-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: rgb(152, 152, 152);
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .subtext {
    font-size: 16px;
  }
}

header {
  padding-top: 40px;
  height: 100vh;
  background: url("./assets/images/Main Screen.png") no-repeat center/cover;
  position: relative;
}
header::after {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(68, 197, 255, 0.1) 0%, rgba(0, 16, 37, 0) 100%);
}
header nav {
  text-align: center;
}
header h1 {
  font-family: var(--open-sans);
  font-weight: 700;
  font-size: 64px;
  line-height: 78px;
  letter-spacing: 0%;
  text-align: center;
  max-width: 976px;
  margin: auto;
  margin-top: 165px;
  color: white;
}
header p {
  font-family: var(--open-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: white;
  max-width: 576px;
  margin: 32px auto;
  text-align: center;
}
header button {
  padding: 16px 64px;
  background: linear-gradient(180deg, #06A7F1 0%, #006BA7 100%);
  border: none;
  border-radius: 12px;
  display: block;
  margin: auto;
  transition: 300ms linear;
  cursor: pointer;
  color: white;
}
header button:hover {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  header h1 {
    font-size: 32px;
    line-height: 38px;
    padding: 0 10px;
    margin-top: 72px;
  }
  header p {
    font-size: 16px;
    line-height: 100%;
    padding: 0 10px;
    margin: 12px 0;
  }
}

main {
  margin-top: 80px;
}
main .subtext {
  max-width: 832px;
  margin: 24px auto;
}
main .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
main .cards .card {
  padding: 60px 64px;
  background: rgb(0, 23, 45);
  border-radius: 24px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
main .cards .card img {
  display: block;
  margin: auto;
}
main .cards .card .icon {
  position: relative;
}
main .cards .card .icon .shadow {
  background: rgb(68, 197, 255);
  width: 90px;
  height: 90px;
  filter: blur(72px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .cards .card p {
  font-family: var(--open-sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: rgb(68, 197, 255);
  margin-top: 22px;
}
@media (max-width: 1440px) {
  main .subtext {
    margin: 12px auto;
  }
  main .cards {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  main .cards .card {
    padding: 8px;
  }
}

.vision {
  margin-top: 117px;
  padding: 64px 0;
  background: rgb(0, 23, 45);
}
.vision h2 {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .vision {
    padding: 24px 0;
    margin-top: 80px;
  }
  .vision h2 {
    font-size: 20px;
  }
}

.why-works {
  padding: 0 145px;
  margin-top: 162px;
}
.why-works .title :is(p, h2) {
  text-align: left;
}
.why-works .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 32px;
}
.why-works .container .cards {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
.why-works .container .cards .card {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 16px;
  background: rgb(0, 23, 45);
  border-radius: 9999px;
  width: 100%;
}
.why-works .container .cards .card .icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(2, 33, 58);
  border-radius: 50%;
  flex-shrink: 0;
}
.why-works .container .cards .card h3 {
  font-family: var(--open-sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: rgb(68, 197, 255);
}
.why-works .container .cards .card p {
  font-family: var(--open-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgb(255, 255, 255);
  margin-top: 8px;
}
@media (max-width: 1440px) {
  .why-works {
    padding: 0px;
    margin-top: 80px;
  }
  .why-works .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
  .why-works .container .cards {
    gap: 10px;
  }
  .why-works .container .cards .card {
    border-radius: 24px;
  }
}

.founder {
  margin-top: 160px;
}
.founder .content {
  display: flex;
  align-items: center;
  padding: 48px;
  border-radius: 24px;
  background: rgb(0, 23, 45);
  gap: 32px;
}
.founder .content div :is(h2, p) {
  text-align: left;
}
@media (max-width: 1024px) {
  .founder {
    margin-top: 80px;
  }
  .founder .content {
    flex-direction: column-reverse;
    padding: 8px;
  }
  .founder div :is(h2, p) {
    text-align: center !important;
  }
}

.how-works {
  margin-top: 160px;
}
.how-works .container {
  padding: 0 256px;
}
.how-works .container .cards {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.how-works .container .cards .card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
}
.how-works .container .cards .card .card-content {
  padding: 9px 24px;
  background: rgb(0, 23, 45);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 24px;
}
.how-works .container .cards .card .card-content .left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.how-works .container .cards .card .card-content .left .icon {
  position: relative;
}
.how-works .container .cards .card .card-content .left .icon .shadow {
  background: rgb(68, 197, 255);
  width: 90px;
  height: 90px;
  filter: blur(72px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 50%;
}
.how-works .container .cards .card .card-content .left .text .subtext {
  margin-top: 0;
  text-align: left;
}
.how-works .container .cards .card .card-content .left .text h3 {
  color: rgb(68, 197, 255);
  margin-top: 16px !important;
}
.how-works .container .cards .card .card-content .left .text p {
  font-family: var(--open-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: white;
  margin-top: 8px;
}
.how-works .container .cards .card .card-content h5 {
  font-family: var(--open-sans);
  font-weight: 800;
  font-size: 256px;
  line-height: 74%;
  letter-spacing: 0%;
  color: rgb(2, 33, 58);
}
.how-works .container .cards .card:last-child .arrow {
  visibility: hidden;
}
@media (max-width: 1440px) {
  .how-works {
    margin-top: 80px;
  }
  .how-works .container {
    padding: 0 8px;
  }
  .how-works .container .cards .card .card-content h5 {
    display: none;
  }
  .how-works .container .cards .card .card-content .left .text h3 {
    margin-top: 8px !important;
  }
  .how-works .container .cards .card .card-content .left .text p {
    margin-top: 8px !important;
  }
  .how-works .container .cards .card .card-content img {
    max-width: 64px !important;
  }
  .how-works .arrow {
    display: none !important;
  }
}

.level {
  margin-top: 160px;
}
.level .container .title {
  max-width: 832px;
  margin: auto;
}
.level .container .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
  gap: 32px;
}
.level .container .cards .card {
  padding: 32px;
  border-radius: 24px;
  background: rgb(0, 23, 45);
}
.level .container .cards .card .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.level .container .cards .card .top h3 {
  font-family: var(--open-sans);
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: rgb(68, 197, 255);
}
.level .container .cards .card .top p {
  font-family: var(--open-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: rgb(152, 152, 152);
}
.level .container .cards .card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.level .container .cards .card ul li {
  font-family: var(--open-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: white;
  gap: 5px;
  display: flex;
}
.level .container .cards .card .bottom h4 {
  margin-top: 42px;
  font-family: var(--open-sans);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgb(152, 152, 152);
  text-align: center;
}
@media (max-width: 1440px) {
  .level {
    margin-top: 80px;
  }
  .level .container .cards {
    display: flex;
    width: 100%;
    overflow-y: scroll;
  }
  .level .container .cards .card {
    flex-shrink: 0;
  }
}

footer {
  max-width: 832px;
  margin: 160px auto;
  padding: 32px;
  background: rgb(0, 23, 45);
  border-radius: 24px;
}
footer button {
  padding: 16px 64px;
  background: linear-gradient(180deg, #06A7F1 0%, #006BA7 100%);
  border: none;
  border-radius: 12px;
  display: block;
  margin: auto;
  margin-top: 16px;
  transition: 300ms linear;
  cursor: pointer;
  color: white;
}
footer button:hover {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  footer {
    margin: 80px 8px;
    max-width: 100%;
  }
}/*# sourceMappingURL=style.css.map */