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

input,
button,
textarea {
  border: 0;
  background: none;
  outline: none;
}

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

ul,
ol {
  list-style: none;
}

body {
  font-family: "Figtree", sans-serif;
  background-color: #181822;
  color: #9c9cae;
  font-size: 16px;
  line-height: 1.4;
}
body.hidden {
  overflow: hidden;
}

.container {
  width: calc(100% - 40px);
  margin: 0 auto;
  max-width: 1200px;
}

header {
  height: 74px;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #181822;
}
header .container {
  height: 100%;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  width: 150px;
  display: flex;
}
.logo img {
  width: 100%;
}

.nav ul {
  display: flex;
  gap: 40px;
}
.nav ul li a {
  font-weight: 600;
  color: #ffffff;
}

.nav__close {
  display: none;
}

.header__right {
  display: flex;
  align-items: flex-end;
  gap: 25px;
}
.header__right img {
  width: 24px;
  aspect-ratio: 24/18;
  border-radius: 3px;
}

.btn {
  background-color: #0047db;
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  font-weight: 600;
}

.btn-border {
  background: none;
  border: 1px solid #0047db;
}

.section {
  padding: 40px 0;
}

.black-bg {
  background-color: #0f0f15;
}
.black-bg .demo__item {
  background-color: #181822;
}

.top {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.top__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.top__btns {
  display: flex;
  gap: 24px;
}
.top__btns .btn:nth-child(1) {
  width: 129px;
  cursor: pointer;
}
.top__btns .btn:nth-child(2) {
  width: 282px;
}

.top__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top__img img {
  width: 327px;
}

.demo__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.demo__list:first-child {
  margin-top: 0;
}

.demo__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background-color: #0f0f15;
  padding: 0 20px;
  height: 86px;
}

.demo__item__img {
  width: 128px;
}

.demo__item__info {
  display: flex;
  flex-direction: column;
  width: 482px;
}
.demo__item__info p:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}
.demo__item__info p:nth-child(1) svg {
  width: 16px;
  height: 16px;
}
.demo__item__info p:nth-child(1) svg path {
  fill: #fff;
}
.demo__item__info p:nth-child(2) {
  font-weight: bold;
  font-size: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}

.demo__item__link {
  height: 46px;
}

.text-block {
  margin-top: 40px;
}
.text-block.content h1 {
  font-size: 40px;
}
.text-block.content h2 {
  font-size: 30px;
}
.text-block.content h3 {
  font-size: 20px;
}
.text-block:first-child {
  margin-top: 0;
}
.text-block h1,
.text-block h2 {
  font-weight: bold;
  color: #fff;
  font-size: 28px;
}
.text-block h3 {
  font-weight: bold;
  color: #fff;
  font-size: 20px;
}
.text-block img {
  max-width: 100%;
}
.text-block p,
.text-block .table,
.text-block img,
.text-block ul,
.text-block ol,
.text-block h2,
.text-block h3,
.text-block h1 {
  margin-top: 24px;
}
.text-block p:first-child,
.text-block .table:first-child,
.text-block img:first-child,
.text-block ul:first-child,
.text-block ol:first-child,
.text-block h2:first-child,
.text-block h3:first-child,
.text-block h1:first-child {
  margin-top: 0;
}
.text-block ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 50px;
  list-style: disc;
}
.text-block ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 50px;
  list-style: auto;
}

.table table {
  border-collapse: collapse;
}
.table table td {
  border: 1px solid #9c9cae;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.table--style tr:first-child td {
  background: #fa339a;
  color: #fff;
}

.mech {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mech__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mech__img img {
  width: 472px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.cards:first-child {
  margin-top: 0;
}

.card {
  border-radius: 15px;
  background-color: #181822;
  padding: 20px;
}

.faq h2 {
  font-size: 28px;
  color: #fff;
  text-align: center;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.faq__item.active .faq__item__header svg {
  transform: rotate(180deg);
}
.faq__item.active .faq__item__text {
  padding: 20px 30px 15px;
}

.faq__item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  background: #181822;
  padding: 0 25px;
  cursor: pointer;
}
.faq__item__header svg {
  width: 12px;
  transition-duration: 0.5s;
}
.faq__item__header svg path {
  stroke: #fff;
}
.faq__item__header h3 {
  font-weight: bold;
  color: #fff;
  font-size: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  width: calc(100% - 80px);
}

.faq__item__text {
  background: #0f0f15;
  padding: 0 30px;
  border: 1px solid #181822;
  border-top: 0;
  transition-duration: 0.5s;
  overflow: hidden;
  max-height: 0;
}

footer {
  background-color: #181822;
  padding: 60px 0 40px;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__left {
  width: 696px;
}
.footer__left .nav {
  margin-top: 24px;
}

.footer__right {
  width: 480px;
}

.footer__imgs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer__imgs img {
  height: 40px;
  width: auto;
}

.footer__text {
  margin-top: 24px;
  font-size: 14px;
}

.copyright {
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.slot--wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
}

.slot {
  width: 810px;
  height: 550px;
  background-color: #181822;
  border-radius: 16px;
  padding: 42px 5px 5px;
  position: relative;
}

.slot__close {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 32px;
  aspect-ratio: 1/1;
  display: flex;
  cursor: pointer;
}
.slot__close svg {
  width: 100%;
  height: 100%;
}
.slot__close svg path {
  fill: #fff;
}

.slot__body {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.slot__body__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.burger {
  display: none;
}

@media (max-width: 1280px) {
  .mech__img img {
    width: 400px;
  }
  .text-block ul,
  .text-block ol {
    padding-left: 30px;
  }
}
@media (max-width: 1024px) {
  .burger {
    display: flex;
    width: 24px;
    height: 24px;
  }
  .burger svg {
    width: 100%;
    height: 100%;
  }
  .burger svg path {
    fill: #fff;
  }
  .header__right {
    display: none;
  }
  header.bg::before {
    content: "";
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
  }
  header .nav {
    position: fixed;
    right: -50%;
    top: 0;
    width: 50%;
    height: 100vh;
    background-color: #0f0f15;
    transition-duration: 0.5s;
  }
  header .nav ul {
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  header .nav.active {
    right: 0;
  }
  .nav__close {
    display: flex;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .nav__close svg {
    width: 100%;
    height: 100%;
  }
  .nav__close svg path {
    fill: #fff;
  }
  .demo__item__img {
    width: 100px;
  }
  .demo__item__info {
    width: 350px;
  }
  .mech {
    grid-template-columns: repeat(1, 1fr);
  }
  .top {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer {
    flex-direction: column;
    align-items: center;
  }
  .footer__left {
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: flex;
  }
  .footer__right {
    width: 100%;
    margin-top: 24px;
  }
  .footer__text {
    text-align: center;
  }
  .slot {
    width: calc(100% - 40px);
    max-width: 730px;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 20px 0;
  }
  .top__img img {
    width: 100%;
  }
  .top__btns .btn:nth-child(1) {
    width: -moz-max-content;
    width: max-content;
  }
  .top__btns .btn:nth-child(2) {
    width: -moz-max-content;
    width: max-content;
  }
  .mech__img img {
    width: 100%;
  }
  .demo__item {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    height: auto;
  }
  .demo__item__info {
    width: 100%;
  }
  .demo__item__info p:nth-child(2) {
    font-size: 16px;
  }
  .demo__item__info p:nth-child(1) {
    font-size: 12px;
  }
  .btn {
    font-size: 12px;
    height: 35.5px;
  }
  .demo__item__link {
    height: 37.5px;
  }
  .demo__item__img {
    width: 128px;
  }
  .text-block h1,
  .text-block h2 {
    font-size: 18px;
  }
  .text-block h3 {
    font-size: 16px;
  }
  .text-block.content h1 {
    font-size: 30px;
  }
  .text-block.content h2 {
    font-size: 24px;
  }
  .text-block.content h3 {
    font-size: 18px;
  }
  .table table td {
    padding: 8px;
  }
  .faq h2 {
    font-size: 18px;
  }
  .faq__item__header {
    height: 50px;
  }
  .faq__item__header h3 {
    font-size: 14px;
    width: calc(100% - 20px);
  }
  footer {
    padding: 30px 0 20px;
  }
  .slot {
    width: 100%;
    border-radius: 0;
    padding: 34px 0px 0px;
    aspect-ratio: 810/650;
    height: auto;
  }
  .slot__close {
    width: 24px;
  }
  .slot__body {
    border-radius: 0;
  }
}/*# sourceMappingURL=styles.css.map */