@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;
  }
}
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }
}
html.-toggle,
body.-toggle {
  overflow: hidden;
}

body {
  background: #2e6026;
  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 {
    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 {
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 768px) {
  body {
    padding-top: 74px;
  }
  .site-header {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.46);
    position: fixed;
    z-index: 100;
    width: 100%;
    top: 0;
    left: 0;
  }
}
.site-header {
  padding: 16px 0;
  background: #2e6026;
}
.site-header .site-header--row {
  display: flex;
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .site-header .site-header--row {
    gap: 16px;
  }
}
.site-header .site-header__logo {
  flex: 1 auto;
}
.site-header .site-header__logo img {
  width: 180px;
  height: auto;
}
@media (max-width: 768px) {
  .site-header .site-header__logo img {
    width: 96px;
  }
}
.site-header .site-header--menu-area {
  display: grid;
  grid-template-columns: 1fr max-content max-content;
  grid-gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .site-header .site-header--menu-area {
    display: none;
    width: 100%;
    height: calc(100% - 82px);
    background: #24262B;
    position: fixed;
    top: 82px;
    left: 0;
    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: 20px;
  border: 1px solid #45D91E;
  border-radius: 4px;
  justify-self: flex-end;
}
@media (max-width: 768px) {
  .site-header .site-header--menu-btn {
    display: block;
  }
}
.site-header .site-header--menu-btn.-toggle {
  background: #1C1E22 url("../../images/mob-menu-close-icon.svg") no-repeat center;
  background-size: 18px;
  border: 1px solid #fff;
}
.site-header .site-header__langs {
  position: relative;
}
@media (max-width: 768px) {
  .site-header .site-header__langs {
    grid-row: 2;
  }
}
.site-header .site-header__langs .site-header__langs--current {
  padding: 5px 10px 5px 10px;
  background: #24262B;
  border-radius: 4px;
  font-size: 16px;
  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;
  border-radius: 4px;
}
.site-header .site-header__langs .site-header__langs--current span {
  color: #fff;
}
.site-header .site-header__langs ul {
  display: none;
  width: 180px;
  background: #1C1E22;
  box-shadow: 0px 0px 12px rgba(1, 1, 1, 0.15);
  border-radius: 4px;
  padding: 20px;
  position: absolute;
  top: 100%;
  right: -20px;
  z-index: 9999;
}
.site-header .site-header__langs ul li:not(:last-child) a {
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid #1C1E22;
}
@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;
}
.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-reg,
.site-header .site-header__btn-login {
  header: 42px;
  line-height: 42px;
  background: conic-gradient(from 0deg at 50% 50%, #57C220 0deg, #33A838 360deg);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .site-header .site-header__btn-reg,
  .site-header .site-header__btn-login {
    display: none;
  }
}
.site-header .site-header__btn-reg a,
.site-header .site-header__btn-login a {
  color: #fff;
  padding: 0 54px;
  display: block;
}
.site-header .site-header__btn-reg:hover,
.site-header .site-header__btn-login:hover {
  opacity: 0.86;
}
.site-header .site-header__btn-reg {
  background: transparent;
}
.site-header .site-header__btn-reg a {
  padding: 0;
}

.main-menu-wrapp {
  background: #58a932;
  box-shadow: 0px 4px 33px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .main-menu-wrapp {
    display: none;
    width: 100%;
    height: calc(100% - 74px);
    position: fixed;
    top: 74px;
    left: 0;
    z-index: 999;
    box-shadow: none;
    padding: 40px 0;
    overflow-y: auto;
  }
  .main-menu-wrapp.-toggle {
    display: block;
  }
}
.main-menu-wrapp .main-menu ul {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .main-menu-wrapp .main-menu ul {
    flex-direction: column;
    gap: 0;
  }
}
.main-menu-wrapp .main-menu ul li {
  flex: 1 auto;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
@media (max-width: 768px) {
  .main-menu-wrapp .main-menu ul li {
    margin-bottom: 16px;
  }
}
@media (min-width: 768px) {
  .main-menu-wrapp .main-menu ul li.menu-item-has-children > a {
    padding-right: 20px;
    background: url("../../images/arrow-down-w.svg") no-repeat center right;
    background-size: 10px;
  }
}
.main-menu-wrapp .main-menu ul li a {
  display: inline-block;
  padding: 20px 0;
  color: #fff;
}
@media (max-width: 768px) {
  .main-menu-wrapp .main-menu ul li a {
    display: block;
    padding: 0;
  }
}
.main-menu-wrapp .main-menu ul li ul {
  display: none;
  width: 240px;
  background: #24262B;
  box-shadow: 0px 0px 12px rgba(1, 1, 1, 0.15);
  padding: 20px 16px;
  border-radius: 10px;
  position: absolute;
  top: 95%;
  left: 0;
  z-index: 99;
}
@media (max-width: 768px) {
  .main-menu-wrapp .main-menu ul li ul {
    display: block;
    position: relative;
    top: unset;
    margin: 20px 0 20px 20px;
  }
}
.main-menu-wrapp .main-menu ul li ul li {
  font-weight: 400;
  font-size: 15px;
}
.main-menu-wrapp .main-menu ul li ul li:not(:last-child) {
  margin-bottom: 16px;
}
.main-menu-wrapp .main-menu ul li ul li a {
  padding: 0;
  display: block;
}
@media (max-width: 768px) {
  .main-menu-wrapp .main-menu ul li ul li a {
    padding: 0 !important;
  }
}
.main-menu-wrapp .main-menu ul li:hover > a {
  color: #45D91E;
}
.main-menu-wrapp .main-menu ul li:hover > ul {
  display: block;
}
.main-menu-wrapp .main-menu ul li.current-menu-item > a {
  color: #45D91E;
}

.header-banner {
  padding: 134px 0;
  margin-bottom: 54px;
}
@media (max-width: 768px) {
  .header-banner {
    padding: 42px 0;
  }
}
.header-banner .header-banner--content {
  text-align: 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: 64px;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 768px) {
  .header-banner .header-banner--content h1 {
    font-size: 30px;
  }
}
.header-banner .header-banner--content h1 span,
.header-banner .header-banner--content h1 strong,
.header-banner .header-banner--content h1 b {
  background: linear-gradient(180deg, #30ab0e 0%, #57C220 32.82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
}
.header-banner .header-banner--content .header-banner--desc {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-top: 24px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@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: conic-gradient(from 0deg at 50% 50%, #57C220 0deg, #33A838 360deg);
  display: inline-block;
  padding: 0 42px;
  font-size: 16px;
  font-weight: 600;
  line-height: 42px;
  color: #fff;
  border-radius: 4px;
}
.header-banner .header-banner--content .header-banner--link a:hover {
  opacity: 0.86;
}
.header-banner .header-banner--links {
  display: grid;
  grid-template-columns: repeat(3, 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 24px;
  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;
}
@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: 500;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .header-banner .header-banner--links .header-banner--links__item span {
    font-size: 17px;
  }
}
.header-banner .header-banner--links .header-banner--links__item:hover {
  box-shadow: 0px 0px 12px rgba(1, 1, 1, 0.15);
}
.header-banner .header-banner--links .header-banner--links__item:hover .arrow-icon {
  box-shadow: 0px 0px 12px rgba(1, 1, 1, 0.15);
}

.post-entry p:not(:last-child) {
  margin-bottom: 24px;
}
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  line-height: 1.2;
  margin-bottom: 14px;
}
.post-entry h2,
.post-entry h3 {
  font-size: 34px;
}
@media (max-width: 768px) {
  .post-entry h2,
  .post-entry h3 {
    font-size: 24px;
  }
}
.post-entry h2:not(.has-text-align-center),
.post-entry h3:not(.has-text-align-center) {
  padding-left: 46px;
  position: relative;
  margin-bottom: 20px;
}
.post-entry h2:not(.has-text-align-center)::before,
.post-entry h3:not(.has-text-align-center)::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../../images/title-icon-green.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.post-entry h2.has-text-align-center,
.post-entry h3.has-text-align-center {
  padding-left: 0;
  padding-top: 46px;
  position: relative;
}
.post-entry h2.has-text-align-center::before,
.post-entry h3.has-text-align-center::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../../images/title-icon-green.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.post-entry h2.has-vivid-purple-background-color:not(.has-text-align-center),
.post-entry h3.has-vivid-purple-background-color:not(.has-text-align-center) {
  padding-left: 46px;
  position: relative;
  margin-bottom: 20px;
}
.post-entry h2.has-vivid-purple-background-color:not(.has-text-align-center)::before,
.post-entry h3.has-vivid-purple-background-color:not(.has-text-align-center)::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../../images/title-icon-violet.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.post-entry h2.has-vivid-purple-background-color.has-text-align-center,
.post-entry h3.has-vivid-purple-background-color.has-text-align-center {
  padding-left: 0;
  padding-top: 46px;
  position: relative;
}
.post-entry h2.has-vivid-purple-background-color.has-text-align-center::before,
.post-entry h3.has-vivid-purple-background-color.has-text-align-center::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../../images/title-icon-violet.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.post-entry h3 {
  font-size: 24px;
  position: relative;
  margin-top: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .post-entry h3 {
    font-size: 20px;
  }
}
.post-entry h4 {
  font-size: 20px;
}
@media (max-width: 768px) {
  .post-entry h4 {
    font-size: 18px;
  }
}
.post-entry a {
  color: #0855cc;
}
.post-entry a:hover {
  color: #1C1E22;
}
.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: #1A1A1A;
  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: #1C1E22;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}
.post-entry .periexomena ol li a {
  color: #1C1E22;
}
.post-entry .periexomena ol li a:hover {
  color: #1A1A1A;
}
.post-entry ul {
  margin-bottom: 24px;
}
.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: 16px;
  height: 16px;
  background: url("../../images/li-icon.svg") no-repeat center;
  position: absolute;
  left: 0;
  top: 4px;
}
.post-entry .wp-block-button__link {
  height: 48px;
  line-height: 48px;
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
  background: conic-gradient(from 0deg at 50% 50%, #57C220 0deg, #33A838 360deg);
  border-radius: 4px;
  color: #fff;
  padding: 0 44px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .post-entry .wp-block-button__link {
    width: 100%;
    text-align: center;
  }
}
.post-entry .wp-block-button__link:hover {
  opacity: 0.86;
  color: #fff !important;
}
.post-entry .wp-block-image {
  margin-bottom: 32px;
}
.post-entry .wp-block-image.-no-bg {
  padding: 0;
  background: transparent !important;
}
.post-entry .wp-block-image img {
  margin: 0 auto;
}
.post-entry ol {
  list-style-type: none;
  counter-reset: num;
  margin-left: 42px;
  margin-bottom: 24px;
}
.post-entry ol li {
  position: relative;
  margin: 0 0 16px 0;
  padding: 0;
}
.post-entry 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: #fff;
  background: #45D91E;
  border-radius: 50%;
}
.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 table {
  width: 100%;
  margin-bottom: 24px;
  font-size: 14px;
  border-collapse: collapse;
}
.post-entry table tr:first-child {
  background: #793CEC !important;
}
.post-entry table tr:first-child td {
  font-weight: 700;
  color: #fff;
}
.post-entry table tr:nth-child(odd) {
  background: #1C1E22;
}
.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;
  background: #31343C;
  padding: 40px 0;
}
.faq-block .faq-block--title {
  font-size: 28px;
  padding-left: 46px;
  position: relative;
  margin-bottom: 20px;
}
.faq-block .faq-block--title::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../../images/title-icon-violet.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.faq-block .faq-block--subtitle {
  font-size: 16px;
  color: #fff;
  margin-top: -4px;
  margin-bottom: 16px;
  text-align: center;
}
.faq-block .faq-block--items .faq-block--items__item {
  background: #1C1E22;
  border: 1px solid #793CEC;
  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: 18px;
  font-weight: 700;
  position: relative;
  background: #793CEC;
  padding: 20px;
  margin: -20px;
  color: #fff;
}
.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header::after {
  content: "+";
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--content {
  color: #fff;
  margin-top: 24px;
  display: none;
}
.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--header {
  margin-bottom: 20px;
}
.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--header::after {
  content: "-";
}
.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content {
  display: block;
}

.site-footer {
  background: #1A1C20;
  padding: 42px 0;
}
.site-footer .site-footer--row {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .site-footer .site-footer--row {
    display: block;
  }
}
.site-footer .site-footer--row .site-footer__logo {
  grid-column: 1/3;
  text-align: center;
  margin-bottom: 64px;
}
.site-footer .site-footer--row .site-footer__logo img {
  display: inline-block;
  max-width: 180px;
}
.site-footer .site-footer--row .footer-menues {
  padding-right: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media (max-width: 768px) {
  .site-footer .site-footer--row .footer-menues {
    grid-template-columns: 1fr;
  }
}
.site-footer .site-footer--row .footer__menu__title {
  background: url("../../images/title-icon-violet.svg") no-repeat center left;
  background-size: 30px;
  height: 30px;
  line-height: 30px;
  padding-left: 42px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.site-footer .site-footer--row .footer__menu ul li {
  display: block;
  margin-bottom: 8px;
}
.site-footer .site-footer--row .footer__menu ul li a {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.site-footer .site-footer--row .footer__menu ul li a:hover {
  color: #45D91E;
}
.site-footer .site-footer--row .site-footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  place-content: center;
  border: 1px solid #31343C;
  border-radius: 4px;
  padding: 30px;
}
@media (max-width: 768px) {
  .site-footer .site-footer--row .site-footer__logos {
    margin-top: 30px;
  }
}
.site-footer .site-footer--row .site-footer__logos img {
  max-width: auto;
  width: auto;
  height: 30px;
}
@media (max-width: 768px) {
  .site-footer .site-footer--row .site-footer__logos img {
    height: 24px;
  }
}
.site-footer .site-footer--copyr {
  grid-column: 1/3;
  text-align: center;
  color: #656870;
  font-size: 13px;
  border-top: 1px solid #31343C;
  padding-top: 40px;
}

.main-cta-block {
  margin-bottom: 24px;
  background: #1C1E22;
  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: #1C1E22;
  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-mobile--link {
  padding: 5px 8px;
  color: #ffffff;
  border: 1px solid #45D91E;
  background: #000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-right: 5px;
  font-weight: 600;
}
.main-cta-block .g-cta-block-code .g-cta-mobile--link i {
  display: flex;
}
.main-cta-block .g-cta-block-code .g-cta-mobile--link small {
  font-weight: 400;
}
.main-cta-block .g-cta-block-code .g-cta-mobile--link svg {
  width: 25px;
  margin-right: 5px;
  height: auto;
}
.main-cta-block .g-cta-block-code .g-cta-mobile--link:hover {
  opacity: 0.8;
}
.main-cta-block .g-cta-block-code .g-cta-mobile--links {
  display: flex;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--button {
  width: 180px;
  height: 42px;
  line-height: 42px;
  background: #45D91E;
  border-radius: 4px;
  position: relative;
  text-align: center;
  color: #fff;
  display: block;
  cursor: pointer;
  overflow: hidden;
}
.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 #45D91E;
  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: #31343C;
  width: calc(100% - 32px);
  height: 40px;
  background: #45D91E;
  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 #45D91E;
  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: #31343C;
  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: #45D91E;
  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;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--link {
  display: inline-block;
  position: relative;
}
@media (max-width: 768px) {
  .main-cta-block .g-cta-block-code .g-cta-block-code--link {
    text-align: center;
    display: block;
  }
}
.main-cta-block .g-cta-block-code .g-cta-block-code--link .g-cta-block-code--link__btn {
  font-size: 11px;
  color: #45D91E;
  font-weight: 500;
  text-decoration: underline;
  text-align: center;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--link .g-cta-block-code--link__content {
  font-size: 13px;
  color: #242424;
  display: none;
  position: absolute;
  top: 100%;
  right: -20px;
  z-index: 999;
  width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 12px rgba(1, 1, 1, 0.15);
}
@media (max-width: 768px) {
  .main-cta-block .g-cta-block-code .g-cta-block-code--link .g-cta-block-code--link__content {
    top: unset;
    right: unset;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.main-cta-block .g-cta-block-code .g-cta-block-code--link .g-cta-block-code--link__content a {
  color: #0855cc;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--link .g-cta-block-code--link__content a:hover {
  color: #31343C;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--link:hover .g-cta-block-code--link__content {
  display: block;
}

.g-popup-block {
  opacity: 0;
  width: 100%;
  background: #1C1E22;
  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: 7px;
  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 {
    height: 100%;
  }
}
.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: 20px;
  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: 16px;
    margin-bottom: 8px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_text {
    font-size: 13px;
  }
}
.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: #45D91E;
  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;
  line-height: 52px;
  background: #45D91E;
  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: #1C1E22;
  border-radius: 6px;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 20px;
  padding-bottom: 24px;
  margin-left: -32px;
  margin-right: -32px;
}
.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 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 32px;
  margin-top: 20px;
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .g-toc-block ol {
    display: block;
  }
}
.g-toc-block ol li {
  position: relative;
  margin-bottom: 12px;
  font-size: 16px;
  padding-left: 16px;
}
.g-toc-block ol li:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: conic-gradient(from 0deg at 50% 50%, #57C220 0deg, #33A838 360deg);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}
.g-toc-block ol li a {
  color: #fff;
}
.g-toc-block ol li a:hover {
  color: #45D91E;
}
.g-toc-block.-toggle ol {
  display: none;
}

.is-layout-constrained {
  padding: 24px 32px;
  margin-left: -32px;
  margin-right: -32px;
  border-radius: 6px;
  margin-bottom: 32px;
}

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

.wp-block-column.has-black-background-color {
  background: #30502b;
  padding: 32px;
  border: 1px solid #2e6026;
  border-radius: 4px;
  overflow: hidden;
}
.wp-block-column.has-black-background-color .wp-block-heading {
  background: #285321;
  border-bottom: 1px solid #2e6026;
  padding: 32px;
  padding-left: 72px !important;
  margin: -32px;
  margin-bottom: 32px;
}
.wp-block-column.has-black-background-color .wp-block-heading::before {
  left: 30px !important;
}

.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;
}

h2.has-text-align-center {
  margin-bottom: 40px;
}

.wp-block-columns {
  display: flex;
  gap: 30px;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .wp-block-columns {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .wp-block-columns .wp-block-column.-first {
    order: -1;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.pl100 {
    padding-left: 100px;
  }
  .wp-block-columns .wp-block-column.pr100 {
    padding-right: 100px;
  }
}
.wp-block-columns .wp-block-column.is-vertically-aligned-center {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  place-content: center;
}

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

.steps-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 12px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .steps-block {
    grid-template-columns: 1fr;
  }
}
.steps-block .steps-block__item {
  display: flex;
  gap: 10px;
  align-items: center;
  place-items: center;
  place-content: center;
  color: #fff;
  height: 78px;
  position: relative;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .steps-block .steps-block__item {
    margin: 0 !important;
    border-radius: 10px;
  }
  .steps-block .steps-block__item::before, .steps-block .steps-block__item::after {
    content: none !important;
  }
}
.steps-block .steps-block__item.-step-1 {
  background: #2d3036;
}
.steps-block .steps-block__item.-step-1::after {
  content: "";
  width: 30px;
  height: 100%;
  background: url("../../images/step-bg-1.svg") no-repeat right center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: -27px;
}
.steps-block .steps-block__item.-step-2 {
  background: #1C1E22;
  margin-left: 30px;
}
.steps-block .steps-block__item.-step-2::before {
  content: "";
  width: 30px;
  height: 100%;
  background: url("../../images/step-bg-2-b.svg") no-repeat left center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: -27px;
}
.steps-block .steps-block__item.-step-2::after {
  content: "";
  width: 30px;
  height: 100%;
  background: url("../../images/step-bg-2.svg") no-repeat right center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: -27px;
}
.steps-block .steps-block__item.-step-3 {
  background: #793CEC;
  margin-left: 30px;
}
.steps-block .steps-block__item.-step-3::after {
  content: "";
  width: 30px;
  height: 100%;
  background: url("../../images/step-bg-3.svg") no-repeat left center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: -27px;
}
.steps-block i {
  width: 32px;
  height: 32px;
  display: inline-block;
}
.steps-block span {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.to-top-btn {
  background: conic-gradient(from 0deg at 50% 50%, #a47def 0deg, #6f4bd3 1turn);
  border-radius: 50%;
  bottom: 270px;
  box-shadow: 0 4px 22px 0 rgba(121, 60, 236, 0.502);
  height: 62px;
  opacity: 0;
  display: none;
  position: fixed;
  align-items: center;
  justify-content: center;
  right: 3%;
  transition: all 0.25s ease;
  width: 62px;
  z-index: 9999;
}
.to-top-btn:hover {
  transform: scale(1.1);
}
.to-top-btn svg {
  width: 30px;
}
.to-top-btn.show {
  opacity: 1;
  display: flex;
}
@media (max-width: 768px) {
  .to-top-btn {
    bottom: 270px;
    height: 50px;
    width: 50px;
  }
}

.g-popup-block + .to-top-btn {
  bottom: 80px;
}

.g-popup-block.-toggle + .to-top-btn {
  bottom: 270px;
}

.g-popup-block.-no-display + .to-top-btn {
  bottom: 80px;
}

@media (max-width: 768px) {
  .g-popup-block.-toggle + .to-top-btn {
    bottom: 390px;
  }
}
body.-toggle .to-top-btn {
  display: none !important;
}
.site-footer .site-footer--row .site-footer__logos2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    place-content: center;
	align-items: center;
}
.site-footer__logos2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    place-content: center;
	align-items: center;
}