﻿:root {
  --body-color: #fff;
  --elem-color: #fff;
  --font-color: #000;
  --font-light-color: #8B8D97;
  --a-color: #000;
  --a-hover-color: #5570F1;
  --table-border-style: solid #e8eaf1 1px;
  --header-height: 56px;
  --nav-color-sel: #5570F1;
  --nav-color-sel-hover: #5168d2;
  --input-border-style: solid #d2d6e3 1px;
  --input-border-style-focused: solid #5570F1 2px;
  --color-red-3: #ff5850;
  --color-green: #44ce3e;
  --bg-gray: #f5f5f5;
  --page-width: 1280px;
  --page-width-short: 800px;
}
* {
  border: 0;
  padding: 0;
  margin: 0;
}
html,
body {
  width: 100%;
  font-family: 'Inter', serif;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--body-color);
  color: var(--font-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.4em;
  background-size: cover;
  background-repeat: no-repeat;
}
div {
  float: left;
  box-sizing: border-box;
}
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}
img {
  display: block;
}
strong,
b {
  font-weight: 600;
}
a {
  text-decoration: none;
  color: var(--a-color);
  border-bottom: var(--input-border-style);
  padding-bottom: 2px;
}
a:hover {
  color: var(--a-hover-color);
}
.title {
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.title h1 {
  font-size: 21px;
  font-weight: 600;
}
.title p {
  margin-top: 10px;
  font-size: 15px;
}
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* вся высота экрана */
  width: 100%;
  justify-content: space-between;
}
.page .header {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: var(--table-border-style);
  background-color: var(--elem-color);
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  justify-content: space-between;
  padding: 0 20px;
  justify-content: center;
}
.page .header .top {
  width: var(--page-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page .header .top .nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.page .header .top .nav a {
  color: var(--font-color);
  font-size: 14px;
  border-bottom: unset;
}
.page .header .top .nav a:hover {
  color: var(--a-hover-color);
}
.page .header .top .nav .signin {
  color: var(--elem-color);
}
.page .header .top .nav .signin:hover {
  color: var(--elem-color);
}
.page .header .top .logo {
  z-index: 10000;
  border-bottom: unset;
}
.page .header .top .logo img {
  height: 32px;
}
.page .header .top .bar {
  display: none;
}
.page .container {
  width: 100%;
  display: flex;
  padding-top: var(--header-height);
}
.page .container .content {
  padding: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.bottom {
  width: 100%;
  border-top: var(--table-border-style);
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.bottom a {
  color: var(--font-color);
}
.bottom a:hover {
  color: var(--a-hover-color);
}
.bottom .bottom-block {
  width: var(--page-width);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  align-items: flex-start;
  padding: 20px 20px;
  line-height: 2em;
}
.bottom .bottom-block .items {
  display: flex;
  gap: 60px;
}
.bottom .bottom-block img {
  height: 30px;
}
.bottom .copyright {
  text-align: right;
  line-height: 2em;
}
.bottom .copyright .languages {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 4px;
  font-size: 13px;
}
.bottom .copyright .languages a {
  float: left;
  padding: 2px 8px;
  border-radius: 4px;
  border-bottom: unset;
}
.bottom .copyright .languages .sel {
  background-color: var(--bg-gray);
  color: var(--font-color);
  cursor: default;
}
.signin {
  background-color: var(--nav-color-sel);
  color: var(--elem-color);
  padding: 8px 20px;
  border-radius: 32px;
  background: linear-gradient(90deg, #548ee9 0%, #20ca66 100%);
}
.signin:hover {
  background-color: var(--nav-color-sel-hover);
  background: linear-gradient(90deg, #4584e6 0%, #22bb61 100%);
  color: var(--elem-color);
}
.main {
  width: var(--page-width);
}
.main .main-title {
  width: 100%;
}
.main .main-title h1 {
  font-size: 48px;
  background: linear-gradient(90deg, #f6564b 0%, #6fa459 50%, #6fa459 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  float: left;
  line-height: 1.2em;
  font-weight: 600;
}
.main .child-title {
  width: 100%;
  margin-top: 80px;
}
.main .child-title h2 {
  font-size: 22px;
  width: 100%;
  font-weight: 500;
  text-align: center;
}
.main .child-title p {
  width: 100%;
  font-weight: 400;
  text-align: center;
  font-size: 16px;
  color: var(--font-light-color);
  margin-top: 12px;
}
.main .first {
  width: 100%;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.main .first .text-content {
  width: 50%;
}
.main .first .text-content p {
  width: 100%;
  float: left;
}
.main .first .text-content .key1,
.main .first .text-content .key2 {
  font-size: 32px;
  line-height: 1.4em;
  font-weight: 400;
}
.main .first .text-content .key1 {
  margin-top: 15px;
}
.main .first .text-content .key2 {
  margin-top: 5px;
}
.main .first .text-content .sub {
  color: var(--font-light-color);
  font-size: 20px;
  line-height: 1.5em;
  margin-top: 10px;
  font-weight: 400;
}
.main .first .text-content .try {
  width: 100%;
  margin-top: 25px;
}
.main .first .text-content .try .action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min-content;
}
.main .first .text-content .try .action .signin {
  font-size: 16px;
  padding: 16px 22px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: #e0e3eb 0 5px 7px;
  white-space: nowrap;
}
.main .first .text-content .try .action .desc {
  color: var(--font-light-color);
  font-size: 14px;
  margin-top: 10px;
  font-weight: 400;
  line-height: 1.5em;
}
.main .first .gallery {
  width: 50%;
}
.main .first .gallery .image {
  box-shadow: #e0e3eb 0 5px 7px;
  border: var(--table-border-style);
  padding: 15px;
  border-radius: 12px;
  background-color: var(--elem-color);
}
.main .first .gallery .image img {
  width: 100%;
  border-radius: 12px;
}
.main .first .gallery .caption,
.main .first .gallery .desc {
  width: 100%;
  line-height: 1.4em;
  padding: 0px 10px;
  font-size: 20px;
  font-weight: 400;
}
.main .first .gallery .desc {
  font-size: 16px;
  margin-top: 10px;
  color: var(--font-light-color);
}
.main .first .gallery .caption {
  margin-top: 20px;
}
.main .first .gallery .pages {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}
.main .first .gallery .pages .item {
  width: 20px;
  height: 20px;
  border-radius: 40px;
  border: var(--input-border-style);
  border-width: 4px;
  cursor: pointer;
}
.main .first .gallery .pages .sel {
  border: var(--input-border-style-focused);
  border-width: 4px;
}
.main .second {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}
.main .second .card {
  width: 100%;
  padding: 30px 40px;
  border-radius: 8px;
  border: var(--table-border-style);
  box-shadow: #e0e3eb 0px 5px 7px;
}
.main .second .card .caption {
  font-size: 22px;
  line-height: 1.4em;
}
.main .second .card .caption i {
  font-size: 28px;
  color: var(--nav-color-sel);
}
.main .second .card .desc {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}
.main .partners {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 20px;
  margin-top: 30px;
}
.main .partners a {
  float: left;
  padding: 15px 30px;
  border: var(--table-border-style);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .partners a img {
  max-height: 34px;
  max-width: 130px;
}
.choose {
  background-color: var(--bg-gray);
  padding: 4px;
  border-radius: 32px;
}
.choose .item {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 32px;
  font-weight: 600;
  cursor: pointer;
}
.choose .sel {
  background-color: var(--nav-color-sel);
  color: var(--elem-color);
  cursor: default;
}
.prices {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.prices .item {
  background-color: var(--elem-color);
  padding: 35px 30px;
  border-radius: 8px;
  width: 320px;
  box-shadow: #e0e3eb 0 5px 7px;
  border: var(--table-border-style);
}
.prices .item .name,
.prices .item .price,
.prices .item .cond,
.prices .item .subscribe {
  width: 100%;
  line-height: 1em;
}
.prices .item .name {
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.prices .item .name .image {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.prices .item .name .image img {
  height: 28px;
  position: absolute;
}
.prices .item .cond {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.4em;
}
.prices .item .price {
  margin-top: 15px;
  font-size: 32px;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
.prices .item .price .month {
  color: var(--font-light-color);
  font-size: 16px;
  margin-left: 6px;
  position: relative;
  bottom: 4px;
}
.prices .item .price .val-strike {
  text-decoration: line-through;
  color: var(--font-light-color);
  margin-right: 4px;
}
.prices .item .subscribe {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  line-height: 1.5em;
}
.prices .item .subscribe .button {
  width: 100%;
  padding: 10px 8px;
  border-radius: 8px;
  background-color: var(--nav-color-sel);
  background: linear-gradient(90deg, #548ee9 0%, #20ca66 100%);
  box-shadow: #e0e3eb 0 5px 7px;
}
.prices .item .subscribe .button:hover {
  background-color: var(--nav-color-sel-hover);
  background: linear-gradient(90deg, #4584e6 0%, #22bb61 100%);
  color: var(--elem-color);
}
.prices .item .subscribe .current {
  background: unset;
  background-color: var(--bg-gray);
  cursor: unset;
  color: var(--font-color);
  box-shadow: none;
}
.prices .item .subscribe .current:hover {
  background: unset;
  background-color: var(--bg-gray);
  color: var(--font-color);
}
.prices .item .conds {
  width: 100%;
  margin-top: 30px;
}
.prices .item .conds ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prices .item .conds ul li {
  display: flex;
  font-size: 14px;
}
.prices .item .conds ul li i {
  line-height: 1.4em;
  margin-right: 10px;
  color: var(--nav-color-sel);
}
.article {
  width: 100%;
  max-width: var(--page-width-short);
}
.article h1 {
  font-size: 32px;
  width: 100%;
  font-weight: 500;
  float: left;
  line-height: 1.4em;
}
.article h2 {
  font-size: 21px;
  width: 100%;
  font-weight: 500;
  float: left;
  margin-top: 20px;
  line-height: 1.4em;
}
.article h3 {
  font-size: 18px;
  width: 100%;
  font-weight: 500;
  float: left;
  margin-top: 20px;
  line-height: 1.4em;
}
.article a {
  font-weight: 500;
}
.article ul,
.article ol {
  margin-left: 1.5rem;
  /* можно 1rem, 16–24px — идеальный вариант */
  padding-left: 1.5rem;
  list-style-position: outside;
  /* важно! */
  float: left;
  width: 100%;
  line-height: 1.6em;
  font-size: 15px;
  box-sizing: border-box;
}
.article ul li,
.article ol li {
  float: left;
  width: 100%;
  box-sizing: border-box;
}
.article p {
  float: left;
  width: 100%;
  margin-top: 15px;
  line-height: 1.6em;
  font-size: 15px;
  font-weight: 400;
  box-sizing: border-box;
}
.article p + ol,
.article p + ul,
.article h2 + ol,
.article h2 + ul,
.article h3 + ol,
.article h3 + ul {
  margin-top: 15px;
}
.article h1 + p {
  margin-top: 10px;
}
.article .screenshot + h2 {
  margin-top: 30px;
}
.article .screenshot {
  margin-top: 20px;
  width: 100%;
}
.article .screenshot img {
  width: 100%;
  border: var(--table-border-style);
  padding: 10px;
  box-sizing: border-box;
}
.article .screenshot .info {
  width: 100%;
  margin-top: 10px;
  font-weight: 400;
}
.article .screenshot .info .caption {
  width: 100%;
  text-align: center;
  font-size: 15px;
  line-height: 1.6em;
}
.article .screenshot .info .desc {
  width: 100%;
  text-align: center;
  color: var(--font-light-color);
  line-height: 1.6em;
}
.docs {
  width: var(--page-width);
  display: flex;
  align-items: flex-start;
  position: relative;
}
.docs .menu {
  border: var(--table-border-style);
  padding: 30px 15px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  width: 250px;
  font-size: 14px;
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}
.docs .menu .navigation {
  display: none;
}
.docs .menu .items {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.docs .menu .items .caption {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  padding: 0px 10px;
}
.docs .menu .items .caption + .item {
  width: 100%;
  margin-top: 6px;
}
.docs .menu .items .item {
  margin-top: 5px;
  font-weight: 400;
  padding: 6px 10px;
}
.docs .menu .items .item + .caption {
  margin-top: 30px;
}
.docs .menu .items .sel {
  background-color: #e6f2ff;
  border-radius: 4px;
}
.docs .menu .items .sel a {
  padding-bottom: 0px;
  border-bottom: none;
}
.docs .menu .items .sel a:hover {
  cursor: default;
  color: var(--a-color);
}
.docs .article {
  margin-left: 60px;
}
form {
  float: left;
  box-sizing: border-box;
}
._form {
  padding: 35px;
  background-color: var(--elem-color);
  border-radius: 8px;
  cursor: auto;
  border: var(--table-border-style);
  box-shadow: #e0e3eb 0 10px 20px;
}
._form .item {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
}
._form .item .caption {
  color: var(--font-light-color);
  display: flex;
  align-items: center;
}
._form .item .input {
  width: 100%;
  display: flex;
}
._form .item .submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
._form .item .submit .button {
  padding: 12px 20px;
  border-radius: 8px;
}
._form .sep {
  padding-top: 20px;
  border-top: var(--table-border-style);
}
._form .mid {
  justify-content: center;
}
._form .message {
  width: 100%;
}
._form .message .caption {
  color: var(--color-green);
  font-size: 16px;
  width: 100%;
}
._form .message .red {
  color: var(--color-red-3);
}
._form .message .text {
  width: 100%;
  font-weight: 400;
  margin-top: 7px;
}
._form_auth {
  width: 400px;
}
._form_auth .errors {
  color: var(--color-red-3);
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: 400;
  display: none;
  font-size: 13px;
}
._form_auth .errors .err {
  width: 100%;
  display: none;
}
._form_auth .items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
._form_auth .items .input {
  width: 100%;
  display: flex;
}
._form_auth .items .checkbox {
  width: 100%;
  font-weight: 400;
  font-size: 13px;
  display: flex;
  align-items: flex-start;
}
._form_auth .items .checkbox label {
  float: left;
  margin-left: 7px;
  margin-top: -3px;
}
.auth-bottom {
  width: 100%;
  text-align: center;
}
input[type='text'],
input[type='number'],
input[type='date'],
input[type='password'],
input[type='email'],
textarea,
select {
  border: var(--input-border-style);
  border-radius: 0.25rem;
  padding: 8px 12px;
  line-height: 1.4em;
  font-family: 'Inter', Arial, serif;
  width: 100%;
  appearance: none;
  box-sizing: border-box;
}
input[type='text']:hover,
input[type='number']:hover,
input[type='date']:hover,
input[type='password']:hover,
input[type='email']:hover,
textarea:hover,
select:hover,
input[type='text']:focus,
input[type='number']:focus,
input[type='date']:focus,
input[type='password']:focus,
input[type='email']:focus,
textarea:focus,
select:focus {
  outline: none;
}
input[type='text']:focus,
input[type='number']:focus,
input[type='date']:focus,
input[type='password']:focus,
input[type='email']:focus,
textarea:focus,
select:focus {
  outline: var(--input-border-style-focused);
}
.error {
  outline: 2px var(--color-red-3) solid;
}
.error:hover,
.error:focus {
  outline: 2px var(--color-red-3) solid !important;
}
.button {
  padding: 8px 16px;
  background-color: var(--nav-color-sel);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--elem-color);
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', serif;
}
.button .fa-regular {
  padding-right: 10px;
}
.button:hover {
  background-color: var(--nav-color-sel-hover);
  color: var(--elem-color);
}
.mt20 {
  margin-top: 20px;
}
.mt10 {
  margin-top: 10px;
}
.flex {
  display: flex !important;
}
@media (min-width: 0px) and (max-width: 1023.98px) {
  html,
  body {
    font-size: 16px;
  }
  .page .header {
    padding: 0px 0px 0px 20px;
  }
  .page .header .top .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 56px;
    left: 0px;
    gap: 0px;
    background-color: var(--elem-color);
  }
  .page .header .top .nav a {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    border-bottom: var(--table-border-style);
    padding: 0px 16px;
    float: left;
    box-sizing: border-box;
    font-size: 15px;
  }
  .page .header .top .nav .signin {
    border-radius: 0px;
  }
  .page .header .top .bar {
    display: flex;
    height: 56px;
    width: 56px;
    align-items: center;
    justify-content: center;
    font-size: 19px;
  }
  .page .container .content {
    padding: 20px;
    width: 100%;
  }
  .page .container .content .main {
    width: 100%;
  }
  .page .container .content .main .main-title h1 {
    font-size: 34px;
  }
  .page .container .content .main .child-title {
    margin-top: 40px;
  }
  .page .container .content .main .child-title h2 {
    font-size: 19px;
    line-height: 1.4em;
  }
  .page .container .content .main .first {
    width: 100%;
    display: block;
  }
  .page .container .content .main .first .text-content {
    width: 100%;
  }
  .page .container .content .main .first .text-content .key1,
  .page .container .content .main .first .text-content .key2 {
    font-size: 24px;
  }
  .page .container .content .main .first .text-content .sub {
    font-size: 18px;
  }
  .page .container .content .main .first .text-content .try .action .desc {
    font-size: 15px;
  }
  .page .container .content .main .first .gallery {
    width: 100%;
    margin-top: 40px;
  }
  .page .container .content .main .first .gallery .caption,
  .page .container .content .main .first .gallery .desc {
    font-size: 18px;
    font-weight: 500;
    padding: 0px;
  }
  .page .container .content .main .first .gallery .desc {
    font-size: 16px;
  }
  .page .container .content .main .second {
    width: 100%;
    margin-top: 30px;
    flex-direction: column;
  }
  .page .container .content .main .second .card {
    width: 100%;
    padding: 40px 30px;
  }
  .page .container .content .main .second .card .caption {
    font-size: 19px;
    font-weight: 500;
  }
  .page .container .content .main .second .card .caption i {
    font-size: 24px;
  }
  .page .container .content .main .second .card .desc {
    font-size: 16px;
    margin-top: 10px;
  }
  .page .container .content .main .partners {
    margin-top: 20px;
    padding: 0px 20px;
  }
  .page .container .content .main .partners a {
    padding: 10px 20px;
  }
  .page .container .content .main .partners a img {
    height: 30px;
  }
  .bottom .bottom-block {
    width: 100%;
    flex-direction: column;
    font-size: 15px;
  }
  .bottom .bottom-block .items {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }
  .bottom .bottom-block .items .item {
    width: 100%;
  }
  .bottom .bottom-block .copyright {
    width: 100%;
    text-align: left;
    margin-top: 20px;
  }
  .bottom .bottom-block .copyright .languages {
    justify-content: flex-start;
    margin-top: 10px;
  }
  ._form {
    width: 100%;
    padding: 20px;
  }
  .button {
    font-size: 16px;
  }
  input[type='text'],
  input[type='number'],
  input[type='date'],
  input[type='password'],
  input[type='email'],
  textarea,
  select {
    font-size: 15px;
  }
  .prices {
    flex-direction: column;
  }
  .prices .item {
    width: 100%;
  }
  .article ul,
  .article ol {
    margin-left: 0px;
    font-size: 16px;
  }
  .article .screenshot .info .caption {
    font-size: 16px;
    line-height: 1.4em;
  }
  .article .screenshot .info .desc {
    line-height: 1.4em;
    margin-top: 5px;
  }
  .article p {
    font-size: 16px;
  }
  .docs {
    width: 100%;
    flex-direction: column;
  }
  .docs .menu {
    width: 100%;
    position: relative;
    top: unset;
    max-height: unset;
    padding: 0px;
    font-size: 16px;
    background-color: var(--bg-gray);
  }
  .docs .menu .navigation {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 15px;
  }
  .docs .menu .navigation i {
    font-size: 16px;
    width: 30px;
    text-align: left;
  }
  .docs .menu .items {
    display: none;
    padding: 5px 15px 30px 15px;
    font-size: 16px;
  }
  .docs .menu .items .caption {
    font-size: 14px;
    padding: 0px 30px;
  }
  .docs .menu .items .item {
    padding: 8px 30px;
  }
  .docs .menu .items .sel {
    background-color: var(--elem-color);
  }
  .docs .article {
    margin-left: 0px;
    margin-top: 20px;
  }
}