@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class],
ul,
ol,
li {
  padding: 0;
  margin: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class],
li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
}

button,
[role=button] {
  cursor: pointer;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html.-toggle,
body.-toggle {
  overflow: hidden;
}

body {
  background: #15171f;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
@media (max-width: 768px) {
  body {
    background: #15171f;
    font-size: 14px;
    overflow-x: hidden;
  }
}

.container, .container-page {
  max-width: 1220px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.container-page {
  max-width: 1000px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
}

.header-wrapper {
  width: 100%;
  background-size: cover;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .header-wrapper {
    margin-bottom: 24px;
  }
}

.site-header {
  padding: 16px 0;
  background: #1f222e;
  box-shadow: 0px 4px 33px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.site-header .site-header--row {
  max-width: 1680px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-gap: 20px;
  align-items: center;
}
.site-header .site-header__logo img {
  width: 124px;
  height: auto;
}
.site-header .site-header--menu-area {
  display: grid;
  grid-template-columns: 1fr max-content max-content max-content;
  grid-gap: 16px;
  align-items: center;
}
@media (max-width: 768px) {
  .site-header .site-header--menu-area {
    display: none;
    width: 100%;
    height: calc(100% - 72px);
    background: #1f222e;
    overflow-y: auto;
    position: fixed;
    top: 126px;
    left: 0;
    z-index: 99999;
    padding: 20px;
    grid-template-columns: 86px 1fr;
    grid-gap: 16px;
    place-content: flex-start;
  }
  .site-header .site-header--menu-area.-toggle {
    display: grid;
  }
}
.site-header .site-header--menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  background: url("../../images/mob-menu-icon.svg") no-repeat center;
  background-size: 25px;
  border-radius: 4px;
  justify-self: flex-end;
}
.site-header .site-header--menu-btn.-toggle {
  background: url("../../images/mob-menu-close-icon.svg") no-repeat center;
  background-size: 25px;
}
@media (max-width: 768px) {
  .site-header .site-header--menu-btn {
    display: block;
  }
}
.site-header .site-header__menu {
  padding-right: 24px;
  text-align: right;
}
@media (max-width: 768px) {
  .site-header .site-header__menu {
    padding: 0;
    text-align: left;
    margin-bottom: 64px;
    grid-column: 1/4;
    grid-row: 1;
  }
}
.site-header .site-header__menu ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 54px;
}
@media (max-width: 768px) {
  .site-header .site-header__menu ul {
    display: block;
  }
}
.site-header .site-header__menu ul li {
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
@media (max-width: 768px) {
  .site-header .site-header__menu ul li:not(:last-child) {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.site-header .site-header__menu ul li a {
  color: #fff;
}
@media (min-width: 768px) {
  .site-header .site-header__menu ul li.menu-item-has-children {
    position: relative;
    padding-right: 24px;
  }
  .site-header .site-header__menu ul li.menu-item-has-children::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../../images/arrow-down-w.svg") no-repeat center;
    background-size: 18px;
    position: absolute;
    top: -1px;
    right: 0;
  }
  .site-header .site-header__menu ul li.menu-item-has-children:hover::after {
    transform: rotate(180deg);
  }
}
.site-header .site-header__menu ul li ul {
  display: none;
  width: 240px;
  background: #fff;
  border-radius: 4px;
  padding: 24px 20px;
  box-shadow: 0px 4px 33px 0px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 100%;
  left: -20px;
  z-index: 999;
}
@media (max-width: 768px) {
  .site-header .site-header__menu ul li ul {
    display: block;
    width: 100%;
    position: relative;
    top: unset;
    left: unset;
    box-shadow: none;
    background: transparent;
  }
}
.site-header .site-header__menu ul li ul li {
  background: transparent !important;
  text-align: left;
}
.site-header .site-header__menu ul li ul li:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9e1e8;
}
.site-header .site-header__menu ul li ul li a {
  background: transparent !important;
  padding: 0;
  color: #48b415;
  font-size: 13px;
}
.site-header .site-header__menu ul li ul li a:hover {
  opacity: 0.76;
}
@media (min-width: 768px) {
  .site-header .site-header__menu ul li:hover > a {
    opacity: 0.76;
  }
  .site-header .site-header__menu ul li:hover > ul {
    display: block;
  }
}
.site-header .site-header__langs {
  position: relative;
}
@media (max-width: 768px) {
  .site-header .site-header__langs {
    grid-row: 4;
    grid-column: 1/5;
  }
}
.site-header .site-header__langs .site-header__langs--current {
  padding: 5px 10px 5px 10px;
  background: transparent;
  border: 1px solid #34384d;
  border-radius: 26px;
  font-size: 16px;
  font-weight: 500;
  height: 42px;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  place-items: center;
}
.site-header .site-header__langs .site-header__langs--current img {
  width: 24px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.site-header .site-header__langs .site-header__langs--current span {
  color: #fff;
}
.site-header .site-header__langs ul {
  display: none;
  width: 180px;
  background: #34384d;
  box-shadow: 0px 4px 33px 0px rgba(0, 0, 0, 0.2);
  border-radius: 26px;
  padding: 20px;
  position: absolute;
  top: 100%;
  right: -20px;
  z-index: 9999;
}
@media (max-width: 768px) {
  .site-header .site-header__langs ul {
    top: unset;
    bottom: 100%;
    right: unset;
    left: 0;
    grid-template-columns: repeat(2, 1fr);
    width: 300px;
    background: #34384d;
    padding: 20px 14px;
    color: #fff;
  }
}
.site-header .site-header__langs ul li:not(:last-child) a {
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid #9f9f9f;
}
@media (max-width: 768px) {
  .site-header .site-header__langs ul li:not(:last-child) a {
    border: none;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
}
.site-header .site-header__langs ul li a {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  place-items: center;
}
.site-header .site-header__langs ul li a:hover {
  opacity: 0.64;
}
.site-header .site-header__langs ul li a img {
  width: 20px;
  height: 14px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 2px;
}
.site-header .site-header__langs ul li a span {
  color: #fff;
  font-size: 14px;
}
@media (max-width: 768px) {
  .site-header .site-header__langs ul li a span {
    color: #fff;
  }
}
.site-header .site-header__langs ul li.current-lang a {
  opacity: 0.64;
}
.site-header .site-header__langs:hover > ul {
  display: block;
}
@media (max-width: 768px) {
  .site-header .site-header__langs:hover > ul {
    display: grid;
  }
}
.site-header .site-header__btn-login {
  height: 42px;
  line-height: 42px;
  border-radius: 32px;
  border-color: rgb(66, 71, 94);
  border-width: 1px;
  border-style: solid;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}
@media (max-width: 768px) {
  .site-header .site-header__btn-login {
    grid-column: 1/5;
    grid-row: 2;
    text-align: center;
  }
}
.site-header .site-header__btn-login:hover {
  background: rgb(75, 81, 107);
}
.site-header .site-header__btn-login.-reg {
  background: rgb(72, 180, 21);
}
.site-header .site-header__btn-login.-reg:hover {
  opacity: 0.86;
}
@media (max-width: 768px) {
  .site-header .site-header__btn-login.-reg {
    grid-row: 3;
  }
}
.site-header .site-header__btn-login a {
  color: #fff;
  padding: 0 32px;
  display: block;
}

.header-banner {
  padding: 50px 0;
}
@media (max-width: 768px) {
  .header-banner {
    padding: 20px 0;
  }
}
.header-banner .header-banner--content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 42px;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .header-banner .header-banner--content {
    display: block;
  }
  .header-banner .header-banner--content img {
    display: none;
  }
}
.header-banner .header-banner--content h1 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  font-style: italic;
  color: #fff;
}
@media (max-width: 768px) {
  .header-banner .header-banner--content h1 {
    font-size: 24px;
  }
}
.header-banner .header-banner--content h1.single-style {
  font-size: 42px;
  font-style: normal;
}
.header-banner .header-banner--content h1 span {
  display: block;
  font-size: 96px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .header-banner .header-banner--content h1 span {
    font-size: 32px;
  }
}
.header-banner .header-banner--content .header-banner--desc {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .header-banner .header-banner--content .header-banner--desc {
    font-size: 14px;
  }
}
.header-banner .header-banner--content .header-banner--link a {
  height: 42px;
  background: linear-gradient(87.12deg, #2CB866 0%, #0A9F4F 99.54%);
  display: inline-block;
  padding: 0 54px;
  font-size: 15px;
  font-weight: 500;
  line-height: 42px;
  color: #fff;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .header-banner .header-banner--content .header-banner--link a {
    padding: 15px;
    background: conic-gradient(from 0deg at 50% 50%, #793CEC 0deg, #6123D5 360deg);
    border-radius: 4px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 17px;
    color: #fff;
    height: 62px;
  }
}
.header-banner .header-banner--content .header-banner--link a:hover {
  opacity: 0.86;
}
.header-banner .header-banner--links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
@media (max-width: 768px) {
  .header-banner .header-banner--links {
    display: block;
  }
}
.header-banner .header-banner--links .header-banner--links__item {
  padding: 15px 32px;
  background: #48b415;
  border-radius: 26px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .header-banner .header-banner--links .header-banner--links__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.header-banner .header-banner--links .header-banner--links__item .icon {
  width: 32px;
  height: 32px;
  display: inline-block;
}
.header-banner .header-banner--links .header-banner--links__item .icon.icon-1 {
  background: url("../../images/login-icon.svg") no-repeat center;
  background-size: contain;
}
.header-banner .header-banner--links .header-banner--links__item .icon.icon-2 {
  background: url("../../images/follow-icon.svg") no-repeat center;
  background-size: contain;
}
.header-banner .header-banner--links .header-banner--links__item .icon.icon-3 {
  background: url("../../images/promo-icon.svg") no-repeat center;
  background-size: contain;
}
.header-banner .header-banner--links .header-banner--links__item span {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.header-banner .header-banner--links .header-banner--links__item:hover {
  box-shadow: 0px 4px 33px 0px rgba(0, 0, 0, 0.2);
}
.header-banner .header-banner--links .header-banner--links__item:hover .arrow-icon {
  box-shadow: 0px 4px 33px 0px rgba(0, 0, 0, 0.2);
}

.post-entry p:not(:last-child) {
  margin-bottom: 32px;
}
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
.post-entry h2 {
  font-size: 36px;
}
@media (max-width: 768px) {
  .post-entry h2 {
    font-size: 26px;
  }
}
.post-entry h3 {
  font-size: 28px;
  position: relative;
  margin-top: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .post-entry h3 {
    font-size: 24px;
  }
}
.post-entry h4 {
  font-size: 20px;
}
@media (max-width: 768px) {
  .post-entry h4 {
    font-size: 18px;
  }
}
.post-entry a {
  color: rgb(72, 180, 21);
}
.post-entry a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-entry .colored {
  background: #ecf9f1;
  padding: 32px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.post-entry .periexomena-title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.5px;
  word-spacing: 0.5px;
  color: rgb(21, 23, 31);
  margin-bottom: 0;
}
.post-entry .periexomena ol {
  margin-left: 12px !important;
  margin-bottom: 0 !important;
  -moz-columns: 2 !important;
       columns: 2 !important;
  -moz-column-width: 50% !important;
       column-width: 50% !important;
}
@media (max-width: 768px) {
  .post-entry .periexomena ol {
    -moz-columns: 1 !important;
         columns: 1 !important;
    -moz-column-width: 100% !important;
         column-width: 100% !important;
  }
}
.post-entry .periexomena ol li {
  display: block;
  font-size: 15px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 12px;
  font-weight: 500;
}
.post-entry .periexomena ol li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #1F2841;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}
.post-entry .periexomena ol li a {
  color: #1F2841;
}
.post-entry .periexomena ol li a:hover {
  color: rgb(21, 23, 31);
}
.post-entry ul {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .post-entry ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
  }
}
.post-entry ul li {
  position: relative;
  padding-left: 24px;
  font-weight: 500;
}
.post-entry ul li:not(:last-child) {
  margin-bottom: 12px;
}
.post-entry ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: rgb(72, 180, 21);
  border-radius: 50%;
  position: absolute;
  left: 8px;
  top: 7px;
}
.post-entry .wp-block-button__link {
  height: 48px;
  line-height: 48px;
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
  background: rgb(72, 180, 21);
  border-radius: 4px;
  color: #fff;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .post-entry .wp-block-button__link {
    width: 260px;
    text-align: center;
  }
}
.post-entry .wp-block-button__link:hover {
  opacity: 0.86;
  color: #fff !important;
  text-decoration: none !important;
}
.post-entry .wp-block-image {
  margin-bottom: 24px;
}
.post-entry .wp-block-image img {
  margin: 0 auto;
}
.post-entry ol:not(.g-top-ol) {
  list-style-type: none;
  counter-reset: num;
  margin-left: 42px;
  margin-bottom: 24px;
}
.post-entry ol:not(.g-top-ol) li {
  position: relative;
  margin: 0 0 32px 0;
  padding: 0;
}
.post-entry ol:not(.g-top-ol) li:before {
  content: counter(num);
  counter-increment: num;
  display: inline-block;
  position: absolute;
  top: -5px;
  left: -40px;
  width: 32px;
  height: 32px;
  font-size: 15px;
  line-height: 32px;
  font-weight: 500;
  text-align: center;
  color: #03CA63;
  background: #1d3842;
  border: 1px solid #03CA63;
  border-radius: 50%;
}
.post-entry ol:not(.g-top-ol) li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background: url("../../images/dashed-line-blue.svg") repeat-y top;
  position: absolute;
  left: -24px;
  top: 32px;
}
.post-entry .wp-element-caption {
  font-size: 15px;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}
.post-entry img {
  height: auto !important;
}
.post-entry .wp-block-table {
  border-radius: 8px;
  margin-bottom: 42px;
}
@media (max-width: 768px) {
  .post-entry .wp-block-table {
    width: calc(100% + 20px);
    margin-right: -20px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}
.post-entry table {
  width: 100%;
  margin-bottom: 24px;
  font-size: 14px;
  border-collapse: collapse;
  background: #1f222e;
  border-radius: 8px;
  overflow: hidden;
}
.post-entry table tr:nth-child(even) {
  background: rgb(21, 23, 31);
}
.post-entry table tr td {
  font-weight: 400;
  padding: 16px 12px;
}
.post-entry .colored {
  margin-top: 24px;
}
.post-entry .colored table tr:nth-child(odd) {
  background: #fff;
}

.addtoany_list {
  display: block !important;
  margin-top: 24px !important;
}

.faq-block {
  margin-top: 32px;
  border-radius: 10px;
  margin-bottom: 32px;
}
.faq-block .faq-block--title {
  font-size: 28px;
  position: relative;
  margin-bottom: 20px;
}
.faq-block .faq-block--subtitle {
  font-size: 16px;
  color: #fff;
  margin-top: -4px;
  margin-bottom: 16px;
}
.faq-block .faq-block--items .faq-block--items__item {
  background: rgba(72, 180, 21, 0.3);
  border-radius: 6px;
  overflow: hidden;
  padding: 20px;
  color: #fff;
}
.faq-block .faq-block--items .faq-block--items__item:not(:last-child) {
  margin-bottom: 16px;
}
.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header {
  font-size: 24px;
  font-weight: 700;
  position: relative;
}
.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--content {
  color: #fff;
  margin-top: 14px;
}

.site-footer {
  background: #1f222e;
  padding: 42px 0;
}
.site-footer .site-footer--row {
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .site-footer .site-footer--row {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}
.site-footer .site-footer--row .site-footer__logo img {
  max-width: 180px;
}
.site-footer .site-footer--row .site-footer__logos {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  place-content: center;
}
.site-footer .site-footer--row .site-footer__logos img {
  max-width: auto;
  width: auto;
  height: 30px;
}
.site-footer .site-footer--copyr {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-top: 40px;
}

.site-footer__menu {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}
.site-footer__menu ul {
  text-align: center;
  display: flex;
  place-content: center;
  place-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .site-footer__menu ul {
    flex-direction: column;
    gap: 14px;
    place-content: center;
  }
}
.site-footer__menu ul li {
  display: inline-block;
  margin: 0 14px;
}
.site-footer__menu ul li a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.site-footer__menu ul li a:hover {
  opacity: 0.76;
}

.footer-dev-block {
  margin-top: 40px;
}
.footer-dev-block p {
  color: rgb(72, 180, 21);
  font-size: 14px;
  margin-bottom: 14px;
}
.footer-dev-block img {
  max-width: 116px;
}

.main-cta-block {
  margin-bottom: 24px;
  background: #1F2841;
  border-radius: 10px;
  padding: 32px;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  grid-gap: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .main-cta-block {
    grid-template-columns: 1fr;
    place-items: center;
  }
}
.main-cta-block .img-w {
  width: 146px;
  height: 146px;
  background: #1F2841;
  border-radius: 50%;
  display: flex;
  place-content: center;
  place-items: center;
  padding: 8px;
}
@media (max-width: 768px) {
  .main-cta-block .img-w {
    width: 96px;
    height: 96px;
  }
}
.main-cta-block .img-w img {
  width: 100%;
  height: auto;
}
.main-cta-block .g-cta-block-data {
  padding-right: 64px;
}
@media (max-width: 768px) {
  .main-cta-block .g-cta-block-data {
    padding: 0;
  }
}
.main-cta-block .g-cta-block-data .title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .main-cta-block .g-cta-block-data .title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.main-cta-block .g-cta-block-data .desc {
  font-size: 13px;
  color: #fff;
  opacity: 0.88;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--title {
  text-align: center;
  font-size: 14px;
  color: #fff;
  margin-bottom: 12px;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--btn {
  margin-bottom: 14px;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--btn .a {
  width: 180px;
  height: 42px;
  line-height: 42px;
  background: #fff;
  border: 1px solid rgba(255, 190, 62, 0.2509803922);
  border-radius: 4px;
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--btn .a .click-text {
  font-size: 14px;
  font-weight: 700;
  color: #2A334A;
  width: calc(100% - 32px);
  height: 40px;
  background: rgba(255, 190, 62, 0.2509803922);
  border-radius: 4px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  transition: all 0.25s ease;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--btn .a .click-text::after {
  content: "";
  width: 18px;
  height: 18px;
  background: #fff url("../../images/arrow-yellow-left.svg") no-repeat center;
  background-size: 8px;
  border: 2px solid rgba(255, 190, 62, 0.2509803922);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -8px;
  z-index: 4;
  transform: translateY(-50%);
}
.main-cta-block .g-cta-block-code .g-cta-block-code--btn .a .hidden-text {
  width: 100%;
  height: 42px;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 42px;
  font-size: 15px;
  color: #2A334A;
  padding: 0 12px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--btn .a .hidden-text:focus {
  border: none;
  outline: none;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--btn:hover .click-text {
  left: -100%;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--test-str {
  margin: 14px 0 24px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .main-cta-block .g-cta-block-code .g-cta-block-code--test-str {
    text-align: center;
  }
}
.main-cta-block .g-cta-block-code .g-cta-block-code--test-str i {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url("../../images/test-icon.svg") no-repeat center;
  background-size: contain;
  position: relative;
  top: 3px;
  margin-right: 6px;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--test-str span {
  color: rgba(255, 190, 62, 0.2509803922);
  font-weight: 700;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--test-str p {
  color: #fff;
  display: block;
  font-size: 12px;
  margin-top: 3px;
}

.g-cta-block-code--link {
  display: inline-block;
  position: relative;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .g-cta-block-code--link {
    text-align: center;
    display: block;
  }
}
.g-cta-block-code--link .g-cta-block-code--link__btn {
  font-size: 15px;
  color: #29B664;
  font-weight: 500;
  text-decoration: underline;
  text-align: center;
}
.g-cta-block-code--link .g-cta-block-code--link__content {
  font-size: 13px;
  color: #242424;
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 240px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 33px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .g-cta-block-code--link .g-cta-block-code--link__content {
    top: unset;
    right: unset;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.g-cta-block-code--link .g-cta-block-code--link__content a {
  color: #0855cc;
}
.g-cta-block-code--link .g-cta-block-code--link__content a:hover {
  color: #2A334A;
}
.g-cta-block-code--link:hover .g-cta-block-code--link__content {
  display: block;
}

.g-cta-block {
  background: #1F2841 url("../../images/cta-bg-o.svg") no-repeat center;
  background-size: 150%;
  border: 1px solid #03CA63;
  border-radius: 10px;
  padding: 30px 20px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  grid-gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .g-cta-block {
    display: block;
    padding: 24px 16px;
  }
}
.g-cta-block .g-cta-block__img {
  background: #DBE5ED;
  border-radius: 10px;
  padding: 12px;
  width: 240px;
  height: 120px;
  display: flex;
  place-content: center;
  place-items: center;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__img {
    width: 100%;
    margin-bottom: 16px;
  }
}
.g-cta-block .g-cta-block__img img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__data {
    text-align: center;
    margin-bottom: 16px;
  }
}
.g-cta-block .g-cta-block__data .g-cta-block__area {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__data .g-cta-block__area {
    flex-wrap: wrap;
  }
}
.g-cta-block .g-cta-block__data .g-cta-block__area .title {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__data .g-cta-block__area .title {
    font-size: 20px;
  }
}
.g-cta-block .g-cta-block__data .g-cta-block__area .tested {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 6px 14px 6px 8px;
  background: rgba(21, 23, 31, 0.1);
  border: 1px solid rgb(21, 23, 31);
  border-radius: 32px;
  line-height: 1.2;
}
.g-cta-block .g-cta-block__data .g-cta-block__area .tested i {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../../images/tested-icon.svg") no-repeat center;
  background-size: contain;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__data .g-cta-block__area .tested i {
    width: 12px;
    height: 12px;
  }
}
.g-cta-block .g-cta-block__data .g-cta-block__area .tested span {
  color: rgb(21, 23, 31);
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__data .g-cta-block__area .tested span {
    font-size: 14px;
  }
}
.g-cta-block .g-cta-block__data .desc {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__data .desc {
    font-size: 16px;
  }
}
.g-cta-block .g-cta-block__code {
  width: 300px;
  text-align: center;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__code {
    width: 100%;
  }
}
.g-cta-block .g-cta-block__link {
  margin-bottom: 20px;
}
.g-cta-block .g-cta-block__link a {
  background: rgb(21, 23, 31);
  box-shadow: 0px 0px 4px 0px #14A0FF;
  display: block;
  line-height: 46px;
  height: 46px;
  font-weight: 500;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__link a {
    width: 100%;
    text-align: center;
  }
}
.g-cta-block .g-cta-block__link a:hover {
  opacity: 0.76;
  text-transform: none;
}
.g-cta-block .g-cta-block__updated {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.g-popup-block {
  opacity: 0;
  width: 100%;
  background: #1F2841;
  padding: 26px 0;
  position: fixed;
  bottom: -500px;
  left: 0;
  z-index: 999;
  transition: all 0.65s ease-in;
  box-sizing: border-box;
}
.g-popup-block.-toggle {
  opacity: 1;
  bottom: 0;
}
.g-popup-block .g-popup-block__content {
  position: relative;
  display: grid;
  grid-template-columns: max-content max-content 1fr max-content;
  grid-gap: 70px;
  align-items: center;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content {
    grid-template-columns: 100px 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 10px;
    align-items: flex-start;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__logo {
  padding: 4px 8px;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__logo {
    padding: 20px 8px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__logo img {
  max-width: 180px;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__logo img {
    max-width: 100%;
    height: 100%;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__rating {
  text-align: center;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__rating {
    grid-column: 2/3;
    grid-row: 1;
    text-align: left;
    display: flex;
    place-items: center;
    gap: 6px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__rating .rating_title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__rating .rating_title {
    margin-bottom: 0;
    font-size: 10px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__rating .rating_stars {
  background: url("../../images/star-icon.svg") no-repeat left center;
  background-size: 18px;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__rating .rating_stars {
    font-size: 13px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__rating .rating_stars span {
  font-size: 22px;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__rating .rating_stars span {
    font-size: 15px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__bonus {
  text-align: center;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__bonus {
    grid-column: 2/3;
    grid-row: 1;
    text-align: left;
    margin-top: 26px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_title {
    font-size: 17px;
    margin-bottom: 8px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_text {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_text {
    font-size: 16px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_text span,
.g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_text strong {
  color: rgba(255, 190, 62, 0.2509803922);
  font-weight: 700;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-cta-link {
    grid-column: 1/3;
    grid-row: 2;
    text-align: center;
  }
}
.g-popup-block .g-popup-block__content .g-popup-cta-link a {
  display: block;
  padding: 0 58px;
  height: 52px;
  font-weight: 500;
  line-height: 52px;
  background: linear-gradient(87.12deg, #2CB866 0%, #0A9F4F 99.54%);
  box-shadow: 0px 4px 33px 0px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
}
.g-popup-block .g-popup-block__content .g-popup-cta-link a:hover {
  opacity: 0.86;
}
.g-popup-block .g-popup-block__content .g-popup-block__close-btn {
  width: 35px;
  height: 35px;
  background: url("../../images/g-close-icon.svg") no-repeat center;
  background-size: contain;
  border: none;
  border-radius: 50%;
  position: absolute;
  right: -80px;
  top: -44px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__close-btn {
    width: 24px;
    height: 24px;
    right: 14px;
    top: -38px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__close-btn:hover {
  opacity: 0.86;
}

@media (max-width: 768px) {
  .g-table-wrapper {
    width: calc(100% + 20px);
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .g-table-wrapper table {
    width: 780px;
  }
}
.g-toc-block {
  margin-bottom: 32px;
  background: #1f222e;
  border: 1px solid #363a46;
  border-radius: 10px;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 20px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .g-toc-block {
    padding: 12px 16px;
  }
}
.g-toc-block .g-toc-block--title {
  cursor: pointer;
  background: url("../../images/toc-icon.svg") no-repeat center right;
  background-size: 24px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
.g-toc-block ol {
  background: rgba(13, 17, 28, 0.1);
  padding: 30px 20px 12px;
  border: 1px solid #0D111C;
  border-radius: 10px;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 32px;
  margin-top: 20px;
  margin-left: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .g-toc-block ol {
    padding: 0;
    background: transparent;
    border: none;
  }
}
.g-toc-block ol li {
  position: relative;
  margin-bottom: 12px;
  font-size: 16px;
  padding-left: 24px;
}
.g-toc-block ol li:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../../images/arrow-blue.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 3px;
}
.g-toc-block ol li a {
  color: #fff;
}
.g-toc-block ol li a:hover {
  color: #fff;
  opacity: 0.76;
}
.g-toc-block.-toggle .g-toc-block--title {
  background: url("../../images/toc-icon-toggle.svg") no-repeat center right;
  background-size: 24px;
}
.g-toc-block.-toggle ol {
  display: grid;
}
@media (max-width: 768px) {
  .g-toc-block.-toggle ol {
    display: block;
  }
}

.is-layout-constrained {
  padding: 24px 32px;
  border-radius: 6px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .is-layout-constrained {
    padding: 24px 16px;
  }
}

.has-cyan-bluish-gray-background-color {
  background: #1F2841;
}

.wp-block-media-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 36px;
}
@media (max-width: 768px) {
  .wp-block-media-text {
    grid-template-columns: 1fr;
    grid-gap: 24p;
  }
}

@media (max-width: 768px) {
  .wp-block-button {
    text-align: center;
  }
}
.wp-block-button.aligncenter {
  text-align: center;
}

.has-text-align-center {
  text-align: center;
}

.wp-block-columns {
  display: grid;
  grid-gap: 24px;
  margin-bottom: 32px;
}
.wp-block-columns.wp-container-8 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .wp-block-columns.wp-container-8 {
    grid-template-columns: 1fr;
  }
}
.wp-block-columns.wp-container-11 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .wp-block-columns.wp-container-11 {
    grid-template-columns: 1fr;
  }
}
.wp-block-columns .wp-block-column {
  background: #121418;
  border-radius: 6px;
  padding: 24px 20px;
}
.wp-block-columns h3 {
  font-size: 20px;
}

.is-content-justification-center {
  display: flex;
}

.breadcrumbs {
  color: #9f9f9f;
  font-size: 14px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.breadcrumbs a {
  color: #fff;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .breadcrumb_last {
  color: #9f9f9f;
}

.hero-bonus-block {
  background: #34384d;
  border-radius: 10px;
  padding: 64px 24px 42px;
  min-height: 260px;
  height: 100%;
}
@media (max-width: 768px) {
  .hero-bonus-block {
    background: #34384d !important;
    padding: 32px 16px;
    min-height: 90px;
    height: auto;
    margin-top: 10px;
  }
}
.hero-bonus-block .hero-bonus-block__line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero-bonus-block .hero-bonus-block__line {
    display: block;
    text-align: center;
  }
}
.hero-bonus-block .hero-bonus-block__text {
  line-height: 1.1;
  font-size: 16px;
  color: #fff;
}
@media (max-width: 768px) {
  .hero-bonus-block .hero-bonus-block__text {
    text-align: center;
  }
}
.hero-bonus-block .hero-bonus-block__text span {
  color: #48b415;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero-bonus-block .hero-bonus-block__text span {
    font-size: 22px;
    display: block;
  }
}
.hero-bonus-block .hero-bonus-block__summ {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .hero-bonus-block .hero-bonus-block__summ {
    font-size: 36px;
  }
}
.hero-bonus-block .hero-bonus-block__link a {
  background: #48b415;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  line-height: 44px;
  height: 46px;
  color: #fff;
  padding: 0 32px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .hero-bonus-block .hero-bonus-block__link a {
    width: 100%;
    place-content: center;
  }
}
.hero-bonus-block .hero-bonus-block__link a i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../../images/bonus-icon.svg") no-repeat center;
  background-size: contain;
}
.hero-bonus-block .hero-bonus-block__link a span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.hero-bonus-block .hero-bonus-block__link a:hover {
  opacity: 0.86;
}

.wp-block-group {
  background: #1f222e;
  padding: 54px 30px;
  border-radius: 10px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .wp-block-group {
    padding: 24px 16px;
    border-radius: 0;
  }
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 64px;
  height: 50vh;
}
.not-found > * {
  margin: 15px 0;
}
.not-found h1 {
  font-size: 55px;
}
.not-found h2 {
  font-size: 40px;
}
.not-found a {
  display: inline-block;
  padding: 10px 25px;
  background: #29B664;
  color: #fff;
  border-radius: 5px;
}

.author {
  background: linear-gradient(90.01deg, #20283E 0.69%, #111726 99.99%);
  padding: 35px;
  border-radius: 10px;
  display: flex;
  margin: 35px 0;
}
.author--image {
  width: 230px;
  max-width: 230px;
  min-width: 230px;
  margin-right: 20px;
}
.author--info {
  display: flex;
  justify-content: space-between;
}
.author--right {
  width: 100%;
}
.author--name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.author--position {
  font-size: 18px;
}
.author--socials {
  display: flex;
}
.author--social {
  background: rgba(20, 160, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  margin-left: 10px;
  padding: 8px;
}
.author--desc {
  margin-top: 35px;
}
@media (max-width: 768px) {
  .author {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  .author--image {
    max-width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
  .author--info {
    flex-direction: column;
    justify-content: flex-start;
  }
  .author--social {
    margin-left: 0;
    margin-right: 10px;
  }
  .author--position {
    margin-bottom: 15px;
  }
}
