* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

a {
  text-decoration: none;
  color: rgb(144, 162, 175);
}

ul {
  list-style-type: none;
}

body {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  font-style: normal;
  background-color: rgb(7, 12, 20);
  color: rgb(255, 255, 255);
  overflow-x: hidden;
}

body.open {
  overflow: hidden;
}

.join-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  color: rgb(255, 255, 255);
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid rgb(42, 127, 255);
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  background: linear-gradient(90deg, #166cee 0%, #0758d1 100%);
}

.header {
  overflow-y: visible;
  overflow-x: hidden;
  position: relative;
  padding: 20px 10px;
  margin: 0 auto;
  max-width: 1170px;
  display: flex;
  gap: 90px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.header .logo {
  width: 182px;
  height: 58px;
}
.header .menu-btn {
  display: none;
  position: relative;
  width: 18px;
  height: 18px;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/assets/open-menu.svg");
}
.header .menu-btn.open {
  background-image: url("/assets/close-menu.svg");
}
.header .menu-list {
  width: 100%;
  display: flex;
  gap: normal;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  color: rgb(144, 162, 175);
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
.header .menu-list-join {
  display: none;
}
.header .menu-list.open {
  transform: translateX(0);
}
.header .menu-list li {
  cursor: pointer;
  text-align: center;
}

@media (max-width: 1200px) {
  .header {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .header .logo {
    width: 132px;
    height: 44px;
  }
  .header .menu-btn {
    display: block;
  }
  .header .menu-list {
    top: 84px;
    width: 100vw;
    height: 100vh;
    padding: 16px 20px 0 20px;
    position: fixed;
    flex-direction: column;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    gap: 32px;
    background-color: rgb(7, 12, 20);
    border: none;
    align-items: center;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .header .menu-list-join {
    display: block;
  }
}
.about {
  padding-top: 80px;
  margin: 0 auto;
  max-width: 1170px;
  display: flex;
  gap: 66px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
}
.about-left .title {
  padding: 80px 0 12px 0;
  font-size: 60px;
  line-height: 64px;
  font-weight: 600;
}
.about-left .text {
  padding-bottom: 32px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  color: rgb(228, 228, 228);
}
.about-left a {
  color: rgb(255, 255, 255);
}
.about-right {
  width: 497px;
  height: 497px;
}

@media (max-width: 1200px) {
  .about {
    padding: 40px 20px 0 20px;
    align-items: flex-end;
  }
  .about-left .title {
    padding: 40px 0 12px 0;
    font-size: 32px;
    line-height: 34px;
    font-weight: 600;
  }
  .about-right {
    width: 335px;
    height: 335px;
  }
}
@media (max-width: 768px) {
  .about {
    gap: 40px;
    align-items: center;
    flex-direction: column;
  }
  .about-left .title {
    text-align: center;
  }
  .about-left .text {
    padding-bottom: 32px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }
  .about-left .join-btn {
    margin: 0 auto;
  }
  .about-nav {
    text-align: center;
  }
}
.content {
  padding: 60px 0 80px 0;
  margin: 0 auto;
  max-width: 1170px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  color: rgb(228, 228, 228);
}
.content-title {
  padding: 62px 0 20px 0;
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  color: rgb(255, 255, 255);
}
.content-subtitle {
  color: rgb(255, 255, 255);
  padding: 20px 0;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
}
.content .join-btn {
  margin: 20px auto;
  padding: 14px 90px;
}
.content ul {
  padding-inline-start: 40px;
}
.content ul li {
  list-style-type: disc;
}

@media (max-width: 1200px) {
  .content {
    padding: 40px 20px 32px 20px;
  }
}
@media (max-width: 768px) {
  .content-title {
    padding: 32px 0 20px 0;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: rgb(255, 255, 255);
  }
  .content-subtitle {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
  }
  .content .join-btn {
    margin: 10px auto;
  }
}
.footer {
  margin: 0 auto;
  max-width: 1170px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
.footer-top {
  width: 100%;
  display: flex;
  gap: normal;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
}
.footer-top-nav {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
}
.footer-top-nav-list {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
.footer-top-nav-list li {
  cursor: pointer;
  text-transform: uppercase;
}
.footer-bottom {
  width: 100%;
  padding: 16px 10px;
  color: rgb(130, 142, 157);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  gap: normal;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

@media (max-width: 1200px) {
  .footer {
    padding: 0 10px;
  }
  .footer-bottom p {
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .footer-top {
    gap: 32px;
    flex-direction: column;
    align-items: center;
  }
  .footer-top-nav {
    gap: 16px;
    flex-direction: column;
  }
  .footer-bottom {
    width: 100%;
    padding: 16px 0;
    color: rgb(130, 142, 157);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    display: flex;
    gap: normal;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}/*# sourceMappingURL=style-pages-n.css.map */