@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

* {
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.flex {
  display: flex;
}
.flex.jc-center {
  justify-content: center;
}
.flex.jc-between {
  justify-content: space-between;
}
.flex.dir-col {
  flex-direction: column;
}
.flex.dir-row {
  flex-direction: row;
}

.gap-8 {
  gap: 8px;
}

body {
  font-family: "Raleway", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.link {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #66647A;
  transition: color ease 0.3s;
}
.link:hover {
  color: #0A0916;
}

.btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 800;
  transition: all ease 0.5s;
  text-align: center;
  border: 0;
}
.btn-medium {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
}
.btn-small {
  padding: 8px 8px;
  font-size: 12px;
  font-weight: 600;
}
.btn-big {
  padding: 24px 32px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
}

.btn-icon {
  width: 280px;
  justify-content: space-between;
}
.btn-icon svg {
  margin-left: 16px;
}

.btn-main {
  background-color: #0A0916;
}
.btn-main:hover {
  background-color: #3d3d51;
}
.btn-main button {
  cursor: pointer;
  border: 0;
  background: none;
  color: white;
}
.btn-main button[disabled] {
  opacity: 0.4;
  cursor: wait !important;
}

.btn-gray {
  color: #0A0916;
  background-color: #ECECEC;
}
.btn-gray:hover {
  background-color: #dfdfdf;
}
.btn-gray button {
  cursor: pointer;
  border: 0;
  background: none;
  color: white;
}
.btn-gray button[disabled] {
  opacity: 0.4;
  cursor: wait !important;
}

@keyframes onHover {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
.drop-down {
  position: relative;
}
.drop-down:hover .nav-menu__drop {
  animation: linear 0.3s onHover forwards;
  display: block;
}
.drop-down .nav-menu__drop {
  display: none;
  position: absolute;
  width: 180px;
  top: 56px;
}
.drop-down .nav-menu__drop-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
}
.drop-down .nav-menu__drop-item {
  width: 100%;
  position: relative;
}
.drop-down .nav-menu__drop-item a {
  display: flex;
  padding: 12px 16px;
  height: 100%;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #66647A;
  transition: background ease 0.3s, color ease 0.3s;
}
.drop-down .nav-menu__drop-item:first-child > a {
  border-radius: 12px 12px 0 0;
}
.drop-down .nav-menu__drop-item:last-child > a {
  border-radius: 0 0 12px 12px;
}
.drop-down .nav-menu__drop-item:hover > a {
  color: #0A0916;
  background: #ECECEC;
}
.drop-down .nav-menu__drop-item:has(> .nav-menu__drop-item-child)::after {
  width: 8px;
  height: 8px;
  content: " ";
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  margin: -4px 0 0 0;
  background: url(../img/icons/arrow-dropdown.svg) no-repeat center;
  background-size: 100% 100%;
  transform: rotate(-90deg);
}
.drop-down .nav-menu__drop-item-child {
  display: none;
  width: 180px;
  position: absolute;
  z-index: 7;
  left: 100%;
  top: 0;
  margin: 0 0 0 -10px;
  background: #FFFFFF;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  overflow: hidden;
}
.drop-down .nav-menu__drop-item-child a:hover {
  color: #0A0916;
  background: #ECECEC;
}
.drop-down .nav-menu__drop-item:hover > .nav-menu__drop-item-child {
  animation: linear 0.3s onHover forwards;
  display: block;
}

.card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 16px;
  min-width: 320px;
}
.card-seo p {
  color: #66647A;
  line-height: 150%;
}
.card-seo ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 16px;
  list-style: circle;
}
.card-seo ul li {
  color: #66647A;
  line-height: 150%;
}
.card-order {
  width: 100%;
  max-width: 672px;
}
.card-order__total {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 0px;
  gap: 8px;
  width: 100%;
}
.card-order__total-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  gap: 16px;
  width: 100%;
}
.card-order__total-item h4 {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
}
.card-order__total-item p {
  font-weight: 900;
  font-size: 18px;
  line-height: 16px;
  text-align: right;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #0A0916;
}
.card-order__total-item-value {
  color: #000;
}
.card-order__balance {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 24px;
  gap: 16px;
  background: rgba(51, 190, 107, 0.2);
  border: 1px solid rgba(51, 190, 107, 0.2);
  border-radius: 8px;
  width: 100%;
}
@media screen and (max-width: 672px) {
  .card-order__balance {
    flex-direction: column;
    padding: 12px;
  }
}
.card-order__balance h4 {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
}
.card-order__balance-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.card-order__balance-info p {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
}
.card-order__balance-info a {
  padding: 8px 16px;
  text-transform: uppercase;
}
@media screen and (max-width: 672px) {
  .card-order__balance-info {
    width: 100%;
    flex-direction: column;
  }
  .card-order__balance-info p {
    font-size: 24px;
    font-weight: 800;
    line-height: 24px;
  }
  .card-order__balance-info a {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
  }
}
.card-order__service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 16px 24px;
  gap: 16px;
  border: 2px solid rgba(10, 9, 22, 0.05);
  border-radius: 8px;
  width: 100%;
}
.card-order__service h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
}
.card-order__service-desc {
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #66647A;
}
.card-order__service-amount {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 672px) {
  .card-order__service-amount {
    flex-direction: column;
  }
}
.card-order__service-amount-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 12px;
  gap: 32px;
  background: rgba(10, 9, 22, 0.05);
  border: 1px solid rgba(10, 9, 22, 0.05);
  border-radius: 4px;
  width: 100%;
}
.card-order__service-amount-item p, .card-order__service-amount-item span {
  font-weight: 700;
  font-size: 12px;
  line-height: 8px;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.card-header.between {
  justify-content: space-between;
}
.card-header h4 {
  font-weight: 900;
  font-size: 24px;
  line-height: 24px;
  color: #0A0916;
}
.card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group__wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: row;
}
.form-group__wrapper.half .form-group {
  max-width: calc(50% - 8px);
}
@media screen and (max-width: 1024px) {
  .form-group__wrapper {
    flex-wrap: wrap;
  }
}
.form-group.checkbox {
  flex-direction: row;
}
.form-group.checkbox input {
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(10, 9, 22, 0.05);
}
.form-group.checkbox label {
  color: #66647A;
}
.form-group label {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
}
.form-group select[disabled] + button {
  opacity: 0.5;
  pointer-events: none;
}
.form-group input, .form-group textarea {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 14px 24px;
  gap: 8px;
  border: 2px solid rgba(10, 9, 22, 0.05);
  transition: border-color 0.3s ease;
  border-radius: 8px;
  outline: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #0A0916;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  opacity: 0.5;
}
.form-group input:focus, .form-group input:focus-visible, .form-group textarea:focus, .form-group textarea:focus-visible {
  border: 2px solid rgba(10, 9, 22, 0.25);
}

.select,
.input__select-title {
  width: 100%;
  cursor: pointer;
  flex: 1 1 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 8px;
  background: unset;
  text-align: left;
  border: 2px solid rgba(10, 9, 22, 0.05);
  border-radius: 8px;
  outline: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #0A0916;
}

.select.init-style {
  display: none !important;
}

.input__select {
  position: relative;
  display: flex;
  flex: 1 1 0;
}
.input__select select {
  display: none;
}
.input__select .input__select-drop {
  width: 100%;
  position: absolute;
  top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  background: #FFFFFF;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  overflow: hidden;
  z-index: 9;
}
.input__select .input__select-drop div {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 16px;
  gap: 16px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #66647A;
  transition: background ease 0.3s, color ease 0.3s;
}
.input__select .input__select-drop div:hover {
  background: #ECECEC;
}
.input__select .input__select-drop div.current {
  color: #0A0916;
  background: #ECECEC;
}
.input__select .input__select-title span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.input__select .input__select-title:after {
  content: "";
  background: url(../img/icons/arrow-dropdown.svg) no-repeat center/contain;
  width: 16px;
  height: 16px;
}
.input__select .input__select-title.current:after {
  rotate: 180deg;
}
.input__select .input__select-title::before {
  width: 16px;
  height: 16px;
  content: " ";
  display: block;
  position: absolute;
  right: 22px;
  top: 50%;
  margin: -11px 0 0 0;
  border: 4px solid transparent;
  border-top-color: #000;
  background: #fff;
  z-index: 3;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: rotateInputSelectLoader 1s linear infinite;
}
.input__select .loading + .input__select-title::before {
  opacity: 1;
}

/* Анимация вращения лоадера выпадающего списка */
@keyframes rotateInputSelectLoader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.table-wrap-lk {
  width: 100%;
}

.table-style-lk {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .table-style-lk tbody td[data-label]:before {
    content: attr(data-label) ": ";
  }
}

.table-style-lk {
  width: 100%;
  /*margin-bottom: 1rem;*/
  background-color: transparent;
}
.table-style-lk tbody a, .table-style-lk tbody button {
  white-space: nowrap;
}
.table-style-lk tbody td {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.table-style-lk > tbody > tr {
  font-size: 16px;
  font-weight: 600;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #908ea8;
  height: 48px;
}

.table-style-lk > tbody .item {
  background-color: #fff;
  -webkit-border-radius: 18px;
  border-radius: 18px;
  color: #aeacc1;
}

.table-style-lk > tbody .item__sr {
  background-color: #fff;
}

.table-style-lk > tbody .item .fa-check {
  color: #d2d0df;
}

.table-style-lk .block-all {
  font-family: Montserrat-Bold, sans-serif;
  color: #6d6b7b;
  text-align: left;
}

.table-style-lk tbody tr:nth-of-type(2n+1) {
  background-color: rgba(10, 9, 22, 0.05);
  padding: 16px;
}

body .table-style-lk table, body .table-style-lk tbody, body .table-style-lk tr, body .table-style-lk th, body .table-style-lk td {
  padding: 0;
  margin: 0;
  border: 1px solid #eaeaea;
  line-height: 24px !important;
  color: #212529;
  vertical-align: top;
}

body .table-style-lk tr {
  padding: 16px;
  border: 1px solid #F2F2F3;
  border-radius: 5px;
}

body .table-style-lk td {
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 14px 14px !important;
  display: table-cell;
}

body .table-style-lk thead th {
  font-weight: 700;
  vertical-align: middle;
  padding: 8px 16px;
}
@media screen and (max-width: 1024px) {
  body .table-style-lk thead th {
    white-space: nowrap;
  }
  body .table-style-lk thead th.action-column {
    display: none;
  }
}
body .table-style-lk thead th a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}
body .table-style-lk thead th a:hover {
  color: #000;
}
body .table-style-lk thead th a.asc:after {
  content: "↑";
  rotate: 180deg;
  line-height: 16px;
}
body .table-style-lk thead th a.desc:after {
  content: "↑";
  line-height: 16px;
}

@media screen and (max-width: 1024px) {
  table {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  thead {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  tbody {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    border: none !important;
  }
  tbody tr {
    display: flex;
    flex-direction: column;
    height: max-content !important;
    width: 100%;
    box-sizing: border-box;
    padding: 0 !important;
    border: none !important;
  }
  tbody tr td {
    box-sizing: border-box;
    width: 100% !important;
  }
  thead tr {
    align-items: center;
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    display: flex;
    box-sizing: border-box;
    padding: 0 !important;
    border: none !important;
  }
  thead tr th {
    width: 100%;
    font-size: 12px !important;
  }
}
@media screen and (max-width: 1024px) {
  .table-service thead tr th:nth-child(2), .table-service thead tr th:nth-child(3), .table-service thead tr th:nth-child(4), .table-service thead tr th:nth-child(5) {
    display: none;
  }
}

.alert {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  gap: 16px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
}
.alert-icon {
  justify-content: space-between;
}
.alert-danger {
  color: #653030;
  background: rgba(190, 51, 51, 0.2);
  border: 1px solid rgba(190, 51, 51, 0.2);
  border-radius: 8px;
}
.alert-success {
  color: #3d6530;
  background: rgba(51, 190, 74, 0.2);
  border: 1px solid rgba(56, 190, 51, 0.2);
  border-radius: 8px;
}
.alert-warn {
  color: #655930;
  background: rgba(190, 160, 51, 0.2);
  border: 1px solid rgba(190, 160, 51, 0.2);
  border-radius: 8px;
}
.alert-info {
  color: #305265;
  background: rgba(51, 148, 190, 0.2);
  border: 1px solid rgba(51, 137, 190, 0.2);
  border-radius: 8px;
}

/* Alert scroll */
.custom-alert {
  padding: 10px;
  margin-bottom: 30px;
}

.custom-alert__inner {
  max-height: 400px;
  padding: 8px;
  overflow-y: auto;
}

.badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px 12px;
  gap: 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  white-space: nowrap;
}
.badge-success {
  color: #42835C;
  background: rgba(51, 190, 107, 0.2);
  border: 1px solid rgba(51, 190, 107, 0.2);
}
.badge-secondary {
  color: #BE8F33;
  background: rgba(190, 143, 51, 0.2);
  border: 1px solid rgba(190, 143, 51, 0.2);
}
.badge-primary {
  color: #3394BE;
  background: rgba(51, 148, 190, 0.2);
  border: 1px solid rgba(51, 148, 190, 0.2);
}
.badge-danger {
  color: #834242;
  background: rgba(190, 51, 51, 0.2);
  border: 1px solid rgba(190, 51, 51, 0.2);
}
.badge-info {
  color: #BB33BE;
  background: rgba(187, 51, 190, 0.2);
  border: 1px solid rgba(187, 51, 190, 0.2);
}
.badge-wraning {
  color: #5733BE;
  background: rgba(87, 51, 190, 0.2);
  border: 1px solid rgba(87, 51, 190, 0.2);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.75);
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
}
.mobile-menu__close:before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../../img/icons/close.svg") no-repeat center/cover;
}
.mobile-menu__inner {
  width: 280px;
  background: white;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu__inner .logo {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mobile-menu__inner .logo:before {
  content: "";
  width: 156px;
  height: 34px;
  background: url("../../img/logo-full.svg") no-repeat center/cover;
}
.mobile-menu__inner nav {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mobile-menu__inner nav a {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  display: flex;
  text-align: left;
  padding: 12px 16px;
  color: #888888;
}

header {
  z-index: 99;
}
header:not(.landing) {
  background: white;
}
header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
header .header .logo {
  width: 156px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  header .header .logo {
    width: 32px;
    height: 24px;
  }
}
header .header .logo:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../../img/logo-full.svg") no-repeat center/cover;
}
@media screen and (max-width: 1024px) {
  header .header .logo:before {
    background: url("../../img/logo-small.svg") no-repeat center/cover;
  }
}
header .header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  header .header nav {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  header .header nav {
    gap: 16px;
  }
}
header .header nav .nav-item {
  display: flex;
  align-items: center;
  height: 64px;
}
header .header nav a {
  color: #888888;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  transition: color ease 0.3s;
}
@media screen and (max-width: 1280px) {
  header .header nav a {
    font-size: 14px;
  }
}
header .header nav a:hover {
  color: #0A0916;
}
header .header .buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
header .header .buttons .language-switch__list {
  height: 16px;
}
header .header .buttons .btn-notification {
  position: relative;
  padding: 16px;
}
header .header .buttons .btn-notification__counter {
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 4px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f35353;
  color: white;
  font-size: 8px;
  line-height: 8px;
  border-radius: 50% 50%;
}
header .header .buttons .language-switch__list {
  height: 16px;
}
header .header .buttons .language-switch__list a {
  display: flex;
}
header .header .buttons .nav-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}
header .header .buttons .nav-profile .btn-deposit {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
}
header .header .buttons .nav-profile .profile-switch__list {
  position: relative;
}
header .header .buttons .nav-profile .prof-link {
  gap: 16px;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
}
header .header .buttons .nav-profile .profile-switch__drop {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 56px;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  background: #FFFFFF;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  overflow: hidden;
}
header .header .buttons .nav-profile .profile-switch__drop li {
  display: flex;
  align-items: center;
  width: 100%;
}
header .header .buttons .nav-profile .profile-switch__drop li:not(:last-child) a {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
header .header .buttons .nav-profile .profile-switch__drop li a {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  gap: 16px;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #66647A;
  text-align: center;
  white-space: nowrap;
  transition: background ease 0.3s, color ease 0.3s;
}
header .header .buttons .nav-profile .profile-switch__drop li a:hover {
  background: #ECECEC;
  color: #0A0916;
}
header .header .buttons .nav-profile .profile-switch__drop.active {
  display: flex !important;
}
header .header .buttons .nav-profile .profile-switch__drop:not(.active) {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  header .header .buttons .nav-profile {
    display: none;
  }
}
header .header .buttons .mobile-menu-button {
  display: none;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  header .header .buttons .mobile-menu-button {
    display: flex;
  }
}
header .header .buttons .mobile-menu-button:before {
  content: "";
  width: 24px;
  height: 18px;
  background: url("../../img/icons/burger-menu.svg") no-repeat center/cover;
}
header .header .buttons-lang {
  padding: 16px;
}
header .header .buttons-lang img {
  height: 16px;
  width: 24px;
}
@media screen and (max-width: 1024px) {
  header .header .buttons {
    gap: 8px;
  }
  header .header .buttons .btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  header .header .buttons .menu-mobile {
    display: block;
  }
}

.profile-balance {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  gap: 10px;
  background: #0A0916;
  border-radius: 8px;
}
.profile-balance_wrapper {
  display: flex;
  text-align: left;
  padding: 12px 16px;
  width: 100%;
}
.profile-balance_wrapper .profile-balance {
  width: 100%;
  color: #fff;
}

section#first {
  position: relative;
}
section#first:before {
  content: "";
  position: absolute;
  right: -24px;
  width: 1024px;
  height: 811px;
  background: url(../img/landing/first.webp) no-repeat right/contain;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  animation: rotateAnimation 23s infinite alternate ease-in-out;
}
@media screen and (max-width: 1324px) {
  section#first:before {
    height: 110%;
    max-width: 70%;
    background-size: contain;
  }
}
@media screen and (max-width: 1024px) {
  section#first:before {
    display: none;
  }
}

.landing-first-wrapper {
  min-height: 630px;
}
@media screen and (max-width: 1324px) {
  .landing-first-wrapper {
    min-height: auto;
  }
}

@keyframes rotateAnimation {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  50% {
    transform: translateY(-50%) rotate(1deg);
  }
  100% {
    transform: translateY(-50%) rotate(0deg);
  }
}
section#services {
  position: relative;
  background: #F2F5F6;
  padding: 104px 0 208px 0;
}
@media screen and (max-width: 1024px) {
  section#services {
    padding: 64px 0 104px;
  }
}
section#services:before {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 427px;
  content: "";
  background-image: url(../img/landing/services.svg);
  background-repeat: repeat-x;
  background-position: center center;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  section#services:before {
    top: -130px;
  }
}
section#services:after {
  position: absolute;
  bottom: -280px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 427px;
  content: "";
  background-image: url(../img/landing/services-end.svg);
  background-repeat: repeat-x;
  background-position: center center;
  z-index: 0;
}

section#features {
  z-index: 1;
  padding-top: 104px;
}
@media screen and (max-width: 1024px) {
  section#features {
    padding-top: 64px;
  }
}

section#faq {
  padding: 104px 0;
}
@media screen and (max-width: 1024px) {
  section#faq {
    padding: 64px 0;
  }
}

.landing-faq {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.landing-faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.landing-faq__list-item {
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 24px;
  border: 2px solid rgba(10, 9, 22, 0.05);
  border-radius: 16px;
}
.landing-faq__list-item.active .landing-faq__list-item-content {
  display: flex;
}
.landing-faq__list-item.active .landing-faq__list-item-title svg {
  rotate: 180deg;
}
.landing-faq__list-item-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.landing-faq__list-item-title h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
}
.landing-faq__list-item-title p {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #494857;
}
.landing-faq__list-item-title svg {
  transition: rotate ease 0.3s;
}
.landing-faq__list-item-content {
  display: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #494857;
}
.landing-faq__title h1 {
  font-weight: 900;
  font-size: 64px;
  line-height: 80px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .landing-faq__title h1 {
    font-size: 32px;
    line-height: 150%;
  }
}
.landing-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.landing-features__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, auto));
}
@media screen and (max-width: 1024px) {
  .landing-features__list {
    grid-template-columns: repeat(1, minmax(320px, auto));
  }
}
.landing-features__list-item {
  display: flex;
  flex-direction: row;
  padding: 16px;
  gap: 32px;
  align-items: center;
}
.landing-features__list-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.landing-features__list-item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.landing-features__list-item-info h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
}
.landing-features__list-item-info p {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: #494857;
}
.landing-features__title h1 {
  font-weight: 900;
  font-size: 64px;
  line-height: 80px;
  text-align: center;
}
.landing-features__title p {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #494857;
}
@media screen and (max-width: 1024px) {
  .landing-features__title h1 {
    font-size: 32px;
    line-height: 150%;
  }
}
.landing-services {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.landing-services__items {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.landing-services__items-category {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.landing-services__items-category-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.landing-services__items-category-title-show {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #0A0916;
}
.landing-services__items-category-title h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: #0A0916;
}
.landing-services__items-category-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(330px, auto));
}
.landing-services__items-category-list-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(10, 9, 22, 0.15);
  border-radius: 16px;
}
@media screen and (max-width: 1024px) {
  .landing-services__items-category-list-item {
    padding: 16px;
  }
}
.landing-services__items-category-list-item .btn {
  width: 100%;
  box-sizing: border-box;
}
.landing-services__items-category-list-item-info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.landing-services__items-category-list-item__title h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: #0A0916;
}
.landing-services__items-category-list-item__title p {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #888888;
}
.landing-services__items-category-list-item__price {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  gap: 8px;
  border: 2px solid rgba(10, 9, 22, 0.05);
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
}
.landing-services__features {
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.landing-services__features-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
}
.landing-services__features-item .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 32px;
  height: 32px;
  background: rgba(10, 9, 22, 0.05);
  border-radius: 8px;
}
.landing-services__features-item .icon svg {
  fill: #0A0916;
}
.landing-services__title {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
}
.landing-services__title h1 {
  font-weight: 900;
  font-size: 64px;
  line-height: 80px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .landing-services__title h1 {
    font-size: 32px;
    line-height: 32px;
  }
}
.landing-services__list {
  width: max-content;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 0;
  row-gap: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .landing-services__list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    grid-gap: 8px;
    border-radius: unset;
  }
  .landing-services__list-item {
    border-radius: 8px;
  }
}
.landing-services__list-item {
  cursor: pointer;
  border: none;
  outline: none;
  color: #0A0916;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  gap: 8px;
  background: #FFFFFF;
  transition: color ease 0.3s, background ease 0.3s;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}
.landing-services__list-item:not(:first-child) {
  border-left: solid 2px rgba(10, 9, 22, 0.05);
}
.landing-services__list-item:hover {
  background: #0A0916;
  color: #fff;
}
.landing-services__list-item:hover img {
  filter: grayscale(1) brightness(30);
}
.landing-services__list-item.active {
  background: #0A0916;
  color: #fff;
}
.landing-services__list-item.active img {
  filter: grayscale(1) brightness(30);
}
.landing-first {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 104px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .landing-first {
    padding: 32px 0;
  }
}
.landing-first .btn {
  width: max-content;
}
.landing-first__title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}
.landing-first__title h1 {
  font-weight: 900;
  font-size: 64px;
  line-height: 80px;
  color: #0A0916;
}
.landing-first__title p {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #494857;
}
@media screen and (max-width: 1024px) {
  .landing-first__title {
    width: 100%;
  }
  .landing-first__title h1 {
    font-size: 32px;
    line-height: 150%;
  }
}

.popup-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0 56px 0 0;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  z-index: 10000;
  overflow: hidden;
  overflow-y: auto;
}
.popup-menu .popup-body__lk {
  height: 100%;
}
.popup-menu .popup-menu__profile {
  padding-bottom: 16px;
  border-bottom: 1px solid #eaf0f1;
}
.popup-menu .popup-menu__profile .nav-menu__moblk-profile__links {
  margin-top: 16px;
  gap: 4px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
.popup-menu .popup-menu__profile .nav-menu__moblk-profile__links li {
  width: 100%;
}
.popup-menu .popup-menu__profile .nav-menu__moblk-profile__links li a {
  width: 100%;
  text-align: left;
}
.popup-menu .popup-menu__profile .nav-menu__moblk-profile__links li:not(:last-child) {
  height: 24px;
  margin-bottom: 8px;
}
.popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs {
  margin: 0;
  padding-bottom: 16px;
  justify-content: space-between;
}
.popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .profile-notifyes {
  margin: 0;
}
.popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .prof-link {
  height: 32px;
}
.popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .prof-link .prof-link__name {
  font-family: Montserrat-Bold, sans-serif;
  color: #0A0916;
  font-size: 12px;
}
.popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .popup-menu__userinfo {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 400px) {
  .popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .popup-menu__userinfo .popup-menu__deposit {
    width: 32px;
    height: 32px;
    font-family: Montserrat-Bold, sans-serif;
    color: #0A0916;
    font-size: 16px;
  }
  .popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .popup-menu__userinfo .popup-menu__deposit span {
    display: none;
  }
  .popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .popup-menu__userinfo .popup-menu__deposit:after {
    content: "+";
  }
}
.popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .popup-menu__userinfo .nav-menu__moblk-profile_balance {
  height: 32px;
  font-size: 12px;
  background-color: #17b063;
  color: #fff;
  padding: 8px 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-right: 8px;
  font-family: Montserrat-Bold, sans-serif;
}
@media screen and (max-width: 400px) {
  .popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .popup-menu__userinfo .nav-menu__moblk-profile_balance {
    font-size: 10px;
  }
}
.popup-menu .nav-menu {
  align-items: flex-start;
  margin-top: 16px;
}
.popup-menu .nav-menu li {
  width: 100%;
  height: 24px;
  margin-top: 0 !important;
}
.popup-menu .nav-menu li:not(:last-child) {
  margin-bottom: 16px !important;
}
.popup-menu .nav-menu li a {
  text-align: left;
  width: 100%;
}
.popup-menu .popup__close {
  position: fixed;
  padding: 8px;
  border-radius: 6px;
  background-color: #ffffff;
  width: 32px;
  height: 32px;
  right: 12px;
  top: 24px;
}
.popup-menu .popup__close svg {
  width: 16px;
  font-size: 16px;
}
.popup-menu::-webkit-scrollbar {
  width: 0;
}
.popup-menu.open {
  opacity: 1 !important;
  visibility: visible !important;
}
.popup-menu.open .popup__body {
  padding: 0;
}
.popup-menu.open .popup__content {
  opacity: 1 !important;
  -webkit-transform: perspective(600px) translate(0, 0) rotateX(0);
  transform: perspective(600px) translate(0, 0) rotateX(0);
  border-radius: 0;
  min-height: 100vh;
}
.popup-menu.open .popup__content__lk {
  min-height: 100vh;
}
@media screen and (max-height: 630px) {
  .popup-menu.open .popup__content {
    height: auto;
  }
}
.popup-menu .popup__content {
  min-height: 100vh;
  position: relative;
  background-color: #fff;
  padding: 16px 16px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  opacity: 0;
  -webkit-transform: perspective(600px) translate(0, -100%) rotateX(45deg);
  transform: perspective(600px) translate(0, -100%) rotateX(45deg);
}

.ta-center {
  text-align: center !important;
}

.popup-contest {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  z-index: 10000;
  overflow: hidden;
  overflow-y: auto;
}
.popup-contest .popup__body {
  height: auto;
}
.popup-contest .popup-contest__illustration {
  width: 75%;
}
.popup-contest .popup-contest__gide {
  margin-top: 24px;
}
.popup-contest .popup-contest__gide .popup-contest__gide-token {
  display: block;
}
.popup-contest .popup-contest__gide .popup-contest__gide-token button:before {
  content: "Скопировано";
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  margin-bottom: 104px;
  background: white;
  padding: 12px 16px;
  border-radius: 20px;
  color: black;
  display: none;
}
.popup-contest .popup-contest__gide .popup-contest__gide-token button:after {
  content: "";
  position: absolute;
  margin-bottom: 68px;
  width: 10px;
  height: 10px;
  background: white;
  transform: rotate(45deg);
  display: none;
}
.popup-contest .popup-contest__gide .popup-contest__gide-token button.active:before, .popup-contest .popup-contest__gide .popup-contest__gide-token button.active:after {
  display: block;
}
.popup-contest .popup-contest__gide li {
  justify-content: center;
  border-radius: 10px;
  border: 2px dashed #F0EFF6;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
.popup-contest .popup-contest__gide li:not(:last-child) {
  margin-bottom: 8px;
}
.popup-contest .popup-contest__gide li a {
  text-decoration: none;
}
.popup-contest .popup-contest__title {
  font-family: Montserrat-Bold, sans-serif;
  font-size: 24px;
  margin: 0;
}
.popup-contest .popup-contest__info p {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.popup-contest.popup__close .fa-angle-left, .popup-contest.popup__close .fa-times {
  font-size: 26px;
  color: red;
}
.popup-contest.open {
  opacity: 1 !important;
  visibility: visible !important;
}
.popup-contest.open .popup__content {
  opacity: 1 !important;
  -webkit-transform: perspective(600px) translate(0, 0) rotateX(0);
  transform: perspective(600px) translate(0, 0) rotateX(0);
}
.popup-contest .popup__close {
  position: absolute;
  right: 16px;
  top: 16px;
}
.popup-contest.popup__body {
  min-height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px 10px;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}
.popup-contest .popup__content {
  text-align: center;
  width: 600px;
  height: 100%;
  position: relative;
  background-color: #fff;
  padding: 32px 32px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  opacity: 0;
  -webkit-transform: perspective(600px) translate(0, -100%) rotateX(45deg);
  transform: perspective(600px) translate(0, -100%) rotateX(45deg);
}
.popup-contest .popup__content:before {
  content: none;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  z-index: 10000;
  overflow: hidden;
  overflow-y: auto;
}

.popup__body {
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px 10px;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.popup__content {
  width: 600px;
  padding: 32px;
  height: 100%;
  position: relative;
  background-color: #fff;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  opacity: 0;
  -webkit-transform: perspective(600px) translate(0, -100%) rotateX(45deg);
  transform: perspective(600px) translate(0, -100%) rotateX(45deg);
}

.popup__close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.popup__close .fa-angle-left, .popup__close .fa-times {
  font-size: 26px;
  color: red;
}

.popup.open {
  opacity: 1 !important;
  visibility: visible !important;
}

.popup.open .popup__content {
  opacity: 1 !important;
  -webkit-transform: perspective(600px) translate(0, 0) rotateX(0);
  transform: perspective(600px) translate(0, 0) rotateX(0);
}

body.lock {
  overflow: hidden;
}

.popup-bg1 {
  position: absolute;
  bottom: 19px;
  right: -86px;
}

.popup-bg2 {
  position: absolute;
  top: 93px;
  right: 107px;
}

.popup__description {
  max-height: 180px;
  padding: 16px;
  overflow: hidden;
  overflow-y: auto;
  border: 2px solid #eee;
  background: rgba(238, 238, 238, 0.44);
  margin: 0 0 20px 0;
}

.popup__header {
  padding: 0 32px 16px;
  margin: -16px -32px 16px;
  border-bottom: 1px solid #eee;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.34;
  color: #0A0916;
}

.popup__body-buy_bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0 0 0;
}

.popup__body-buy_total {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.popup__body-buy_total-label {
  flex: 1 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
}
.popup__body-buy_total-value {
  flex: none;
  font-weight: 900;
  font-size: 18px;
  line-height: 16px;
  text-align: right;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #0A0916;
}

footer {
  background: #0A0916;
  color: #fff;
  padding: 32px 0;
}

.footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .footer {
    flex-direction: column;
  }
}
.footer-right {
  flex: 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px 32px;
  flex-wrap: wrap;
}
@media screen and (max-width: 772px) {
  .footer-right {
    flex-direction: column;
  }
}
.footer-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 16px;
}
.footer-nav a {
  opacity: 0.5;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  transition: opacity ease 0.3s;
}
.footer-nav a:hover {
  opacity: 1;
}
.footer-copyright {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer-copyright {
    flex-direction: column;
  }
}
.footer-copyright__f {
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  font-feature-settings: "pnum" on, "lnum" on;
}
.footer__copy {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.footer__copy:hover .footer__copy-text {
  opacity: 1;
}
.footer__copy:hover img {
  opacity: 1;
  filter: grayscale(0%);
}
.footer__copy img {
  width: 32px;
  height: 32px;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: opacity ease 0.3s, filter ease 0.3s;
}
.footer__copy-text {
  display: flex;
  flex-direction: column;
  opacity: 0.75;
  transition: opacity ease 0.3s;
}
.footer__copy-text p {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #ECECEC;
  margin: 0;
}
.footer__copy-name {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #ECECEC;
  margin: 0;
}

.sign-wrapper {
  flex: 1;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.sign-wrapper h2 {
  font-weight: 900;
  font-size: 24px;
  line-height: 24px;
}
.sign-wrapper button {
  width: 100%;
}
.sign-wrapper .auth-clients {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sign-wrapper .auth-clients li {
  margin: 0;
}

.breadcrumbs {
  width: 100%;
  margin-bottom: 32px;
}

.breadcrumb {
  display: flex;
  font-size: 14px;
}

.breadcrumb li {
  display: inline-block;
}
.breadcrumb li::before {
  content: " > ";
  display: inline-block;
  margin: 0 5px;
}
.breadcrumb li:first-child::before {
  display: none;
}

.breadcrumb a {
  text-decoration: none;
  color: #9493a0;
}

.group-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin: 0 0 32px 0;
}
.group-header-title {
  font-weight: 900;
  font-size: 64px;
  line-height: 80px;
  color: #0A0916;
  text-align: center;
}

.group-control {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0 0;
}

.services__items-group-list {
  margin: 0 0 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media screen and (max-width: 972px) {
  .services__items-group-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 772px) {
  .services__items-group-list {
    grid-template-columns: 1fr;
  }
}
.services__items-group-list .empty {
  width: 100%;
  grid-column: span 3;
  text-align: center;
}
.services__items-group-list-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(10, 9, 22, 0.15);
  border-radius: 16px;
}
@media screen and (max-width: 1024px) {
  .services__items-group-list-item {
    padding: 16px;
  }
}
.services__items-group-list-item .btn {
  width: 100%;
  box-sizing: border-box;
}
.services__items-group-list-item-info {
  flex: 1 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services__items-group-list-item__title {
  width: 100%;
}
.services__items-group-list-item__title h3 {
  width: 100%;
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 24px;
  color: #0A0916;
}
.services__items-group-list-item__list {
  line-height: 1.34;
}
.services__items-group-list-item__list li + li {
  margin-top: 3px;
}
.services__items-group-list-item__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.services__items-group-list-item__price {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  gap: 8px;
  border: 2px solid rgba(10, 9, 22, 0.05);
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
}
.services__items-group-list-item__price-value {
  font-weight: bold;
}

* {
  box-sizing: border-box;
}

.d-none {
  display: none !important;
}

html {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  min-width: 360px;
  position: relative;
  overflow-x: hidden;
  color: #0A0916;
  background-color: white;
}
body:not(.landing) {
  background-color: #F2F5F6;
}

html.lock,
body.lock {
  overflow: hidden;
}

main {
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - 164px - 32px);
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

.container {
  width: 100%;
  display: flex;
  padding-right: 16px !important;
  padding-left: 16px !important;
  margin-right: auto;
  margin-left: auto;
  max-width: 1376px;
  height: 100%;
}

.flex {
  display: flex;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex-column {
  flex-direction: column;
}

.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}

.mt-32 {
  margin-top: 32px;
}

.gap-8 {
  gap: 8px;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.gap-32 {
  gap: 32px;
}

.w100 {
  width: 100%;
}
.w25 {
  width: 25%;
}
.w50 {
  width: 50%;
}

#emogi-info {
  background: #ECECEC;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  width: max-content;
  cursor: pointer;
  transition: background ease 0.3s;
}
#emogi-info:hover {
  background: #dadada;
}

#emoji-tooltip {
  background: #ffffff;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  color: #0A0916;
  font-weight: 400;
  padding: 16px;
  font-size: 16px;
  display: none;
  z-index: 100;
}

#emoji-tooltip[data-show] {
  display: block;
}

#arrow,
#arrow::before {
  position: absolute;
  width: 8px;
  height: 8px;
  background: inherit;
}

#arrow {
  visibility: hidden;
}

#arrow::before {
  visibility: visible;
  content: "";
  transform: rotate(45deg);
}

.tabs {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 8px;
  gap: 8px;
  border: 1px solid rgba(10, 9, 22, 0.1);
  border-radius: 16px;
}
.tabs button, .tabs a {
  width: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 672px) {
  .tabs {
    width: 100%;
    flex-wrap: wrap;
  }
  .tabs button, .tabs a {
    width: 100%;
  }
}

.btn-filter {
  background: #ECECEC;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  width: max-content;
  cursor: pointer;
  transition: background ease 0.3s;
  border: none;
}
.btn-filter:hover {
  background: #dadada;
}

@media screen and (max-width: 1024px) {
  .filter-block {
    flex-direction: column;
  }
  .filter-block .filter {
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .btn-filter {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .filter-block {
    display: none;
  }
  .filter-block.open {
    display: flex;
  }
}
h1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
}

h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
}

h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}

.faq__item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  gap: 16px;
  text-align: left;
  border: 2px solid rgba(10, 9, 22, 0.05);
  border-radius: 16px;
}
.faq__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-decoration: none;
  margin: 0 auto;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: #0A0916;
}
.faq-content {
  display: none;
  width: 100%;
}
.faq-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #494857;
}

.button-search.is-checked {
  background: #0A0916;
  color: white;
}

b {
  font-weight: 800;
}

pre {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 16px;
  gap: 8px;
  width: 100%;
  background: rgba(10, 9, 22, 0.05);
  border: 1px solid rgba(10, 9, 22, 0.05);
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #66647A;
}
@media screen and (max-width: 1024px) {
  pre {
    font-size: 12px;
    white-space: pre-wrap;
  }
}

.api-menu {
  flex-direction: column;
  align-items: center;
  background: #FFFFFF;
  border-radius: 16px;
}
.api-menu li {
  width: 100%;
}
.api-menu li a {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .faq-row {
    flex-direction: column-reverse;
  }
  .faq-row .w25 {
    width: 100%;
  }
}

.notification-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 16px 16px;
  gap: 16px;
  border: 2px solid rgba(10, 9, 22, 0.05);
  border-radius: 8px;
}
.notification-item h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
}
.notification-item__desc {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #66647A;
}
.notification-item__time {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #66647A;
}

.support-list__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 24px;
  gap: 16px;
  transition: background-color 0.3s ease;
  border: 2px solid rgba(10, 9, 22, 0.05);
  border-radius: 8px;
  width: 100%;
}
.support-list__item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
@media screen and (max-width: 1024px) {
  .support-list__item {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 472px) {
  .support-list__item {
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.support-list__item-left {
  flex: 1 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.support-list__item-user {
  flex: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .support-list__item-user {
    flex-direction: row-reverse;
  }
}
.support-list__item-user-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 0px;
  gap: 4px;
}
@media screen and (max-width: 1024px) {
  .support-list__item-user-info {
    align-items: flex-start;
  }
}
.support-list__item-user-info h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: #0A0916;
}
@media screen and (max-width: 472px) {
  .support-list__item-user-info h4 {
    font-size: 14px;
    line-height: 14px;
  }
}
.support-list__item-user-info p {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  opacity: 0.5;
  white-space: nowrap;
}
.support-list__item-user-avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .support-list__item-user-avatar {
    width: 30px;
    height: 30px;
  }
}
.support-list__item-user-avatar img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(10, 9, 22, 0.25);
  border-radius: 999999px;
}
.support-list__item-info {
  flex: 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 4px;
  width: 100%;
}
.support-list__item-info h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: #0A0916;
}
@media screen and (max-width: 472px) {
  .support-list__item-info h4 {
    font-size: 14px;
    line-height: 14px;
  }
}
.support-list__item-info p {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  opacity: 0.5;
}
.support-list__item-status {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 1024px) {
  .support-list__item-status {
    width: 30px;
    height: 30px;
  }
}
.support-list__item-status img {
  width: 100%;
  height: 100%;
}
.support-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 24px;
  gap: 16px;
  width: max-content;
  border: 2px solid rgba(10, 9, 22, 0.05);
  border-radius: 8px;
}
.support-item__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
}
.support-item__info-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 16px;
}
.support-item__info-header h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
}
.support-item__info-header span {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  opacity: 0.5;
}
.support-item__info p {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #504F64;
}
.support-item__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.support-item__avatar img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(10, 9, 22, 0.25);
  border-radius: 999999px;
}
.support-item__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0px;
  gap: 10px;
  width: 100%;
}
.support-item__wrapper.user-support {
  align-items: flex-start;
}
.support-textarea {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .support-textarea {
    flex-direction: column;
  }
  .support-textarea button, .support-textarea textarea {
    width: 100%;
  }
}
.support-textarea textarea {
  height: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 24px;
  gap: 8px;
  border: 2px solid rgba(10, 9, 22, 0.05);
  border-radius: 8px;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #0A0916;
}
.support-textarea textarea::placeholder {
  opacity: 0.5;
}
.support-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  gap: 16px;
  border: 2px solid rgba(10, 9, 22, 0.05);
  border-radius: 8px;
  width: 100%;
}
.support-header__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 4px;
  width: 100%;
}
.support-header__info h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
}
.support-header__info p {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  font-feature-settings: "pnum" on, "lnum" on;
  opacity: 0.5;
}

.pagination__list {
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pagination__list li {
  opacity: 0.75;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(10, 9, 22, 0.05);
  border-radius: 3px;
  cursor: pointer;
  transition: opacity ease 0.3s, background ease 0.3s;
}
.pagination__list li a {
  font-weight: 700;
  font-size: 12px;
  line-height: 125%;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #091D27;
  transition: color ease 0.3s;
}
.pagination__list li:hover {
  background: #0A0916;
  opacity: 1;
}
.pagination__list li:hover a {
  color: white;
}
.pagination__list li.pagination-active {
  background: #0A0916;
  opacity: 1;
}
.pagination__list li.pagination-active a {
  color: white;
}

/*# sourceMappingURL=main.css.map */
