@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}
ul,
ol {
  margin: 30px 0;
}
/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
a {
  text-decoration: none;
  transition: all 0.3s;
}
/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
  height: auto;
}
/* Наследуем шрифты для инпутов и кнопок */
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;
  }
}
.page--content {
  padding: 60px 0;
}
.page--breadcrumbs #breadcrumbs {
  padding: 20px 15px;
  background: #31343B;
  border-radius: 12px;
}
.page--breadcrumbs #breadcrumbs a {
  color: #7eac2f;
}
.updated {
  margin: 20px 0;
  display: flex;
  justify-content: flex-start;
}
.updated--inner {
  padding: 10px 15px;
  border-radius: 12px;
}
.post-entry {
  font-size: 18px;
}
.post-entry a {
  color: #0095ff;
}
.post-entry h2 {
  margin: 30px 0 16px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.18;
}
.post-entry h2:first-child {
  margin-top: 0;
}
.post-entry h3 {
  margin: 30px 0 16px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
.post-entry h3:first-child {
  margin-top: 0;
}
.post-entry p {
  margin: 16px 0;
}
.post-entry ul {
  padding-left: 0;
}
.post-entry ul li {
  list-style: none;
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
}
.post-entry ul li:before {
  display: block;
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: linear-gradient(180deg, #ffd942 0%, #d39f18 100%);
  border-radius: 50%;
  left: 0;
  top: 4px;
}
.post-entry ol {
  list-style: none;
  counter-reset: list;
  padding-left: 0;
}
.post-entry ol li {
  position: relative;
  counter-increment: list;
  list-style: none;
  padding-left: 68px;
  margin-bottom: 24px;
}
.post-entry ol li:before {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  content: counter(list);
  font-weight: 700;
  text-align: center;
  line-height: 40px;
  color: #fff;
  background: linear-gradient(180deg, #ffd942 0%, #d39f18 100%);
  border-radius: 50%;
  font-size: 22px;
  left: 0;
  top: -7px;
}
.post-entry .wp-block-group {
  position: relative;
  background: linear-gradient(90deg, #153756, #153756);
  border-radius: 12px;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 30px;
}
.post-entry .wp-block-group:before {
  background-image: linear-gradient(90deg, #060c12, #062e53);
  background-size: 200% auto;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  content: "";
  display: block;
  height: 4px;
  left: 25px;
  position: absolute;
  right: 25px;
  top: 0;
}
.post-entry .wp-block-columns {
  margin: 30px 0;
  gap: 20px;
}
.post-entry .wp-block-image {
  margin: 15px 0;
  border-radius: 16px;
  overflow: hidden;
}
.post-entry .wp-block-buttons .wp-block-button__link {
  min-width: 100px;
}
.post-entry .wp-block-table {
  margin: 16px 0;
  border-radius: 16px;
  border: 1px solid #fff;
  padding: 0;
}
.post-entry .wp-block-table table {
  border-spacing: 0;
}
.post-entry .wp-block-table table tr {
  border-spacing: 0 10px;
}
.post-entry .wp-block-table table td,
.post-entry .wp-block-table table th {
  padding: 16px 24px;
  background: #002241;
  border: none;
}
.post-entry .wp-block-table table tr:nth-child(even) td,
.post-entry .wp-block-table table tr:nth-child(even) th {
  background-color: #002f5b;
}
.post-entry .wp-block-table table thead {
  border-bottom: none;
}
.post-entry .wp-block-table table thead tr th,
.post-entry .wp-block-table table thead tr td {
  background: #004575 !important;
}
.post-entry .wp-block-table table thead tr th:first-child,
.post-entry .wp-block-table table thead tr td:first-child {
  border-radius: 10px 0 0 0;
}
.post-entry .wp-block-table table thead tr th:last-child,
.post-entry .wp-block-table table thead tr td:last-child {
  border-radius: 0 10px 0 0;
}
.btn-primary, .btn-border, .post-entry .wp-block-buttons .wp-block-button__link {
  font-size: 16px;
  font-weight: 700;
  padding: 7px 15px;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #ffd942 0%, #d39f18 100%);
  border-radius: 5px;
  text-align: center;
}
.btn-border {
  background-color: rgb(4 87 171 / 30%);
  border: 1px solid #c59c05;
  color: #e5eafa;
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 15px 10px;
  background: linear-gradient(90deg, #1B3364 0%, #0a101e 100%);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5019607843);
}
.header--top-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  padding: 15px 0;
}
.header--left {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
}
.header--logo {
  display: block;
  width: 140px;
  flex-shrink: 0;
}
.header--logo img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.header--menu {
  flex: 1;
}
.header--menu-list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header--menu-list li {
  list-style: none;
  position: relative;
}
.header--menu-list a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  display: block;
  transition: color 0.3s;
}
.header--menu-list a:hover {
  color: #7eac2f;
}
.header--menu-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #202125;
  min-width: 200px;
  padding: 10px 0;
  margin: 0;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 100;
}
.header--menu-list .sub-menu a {
  padding: 10px 20px;
  font-size: 14px;
}
.header--menu-list > li.menu-item-has-children {
  padding-right: 20px;
}
.header--menu-list > li.menu-item-has-children:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  transition: transform 0.3s;
}
.header--menu-list > li.menu-item-has-children:hover:after {
  transform: translateY(-50%) rotate(180deg);
}
.header--menu-list > li.menu-item-has-children:hover > .sub-menu {
  display: flex;
}
.header--right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header--apps {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #153756, #153756);
  border-radius: 5px;
  padding: 7px;
}
.header--app {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 8px;
  transition: all 0.3s;
  text-decoration: none;
}
.header--app img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header--buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header--menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 5px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}
.header--menu-toggle-line {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  border-radius: 2px;
}
@media (max-width: 1024px) {
  .header {
    padding: 15px 0;
  }
  .header--logo {
    width: 70px;
  }
  .header--row {
    gap: 15px;
  }
  .header--left {
    width: auto;
    justify-content: space-between;
  }
  .header--menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #153756;
    padding: 20px;
  }
  .header--menu.menu-active {
    display: block;
  }
  .header--menu .header--menu-list {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .header--menu .header--menu-list > li {
    width: 100%;
    padding-right: 0;
  }
  .header--menu .header--menu-list > li:after {
    display: none;
  }
  .header--menu .header--menu-list > li a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header--menu .header--menu-list .sub-menu {
    position: static;
    display: flex;
    background: transparent;
    margin-top: 10px;
    margin-left: 20px;
    border-radius: 0;
    box-shadow: none;
  }
  .header--right {
    gap: 10px;
    width: 100%;
  }
  .header--search {
    order: 3;
    width: 100%;
  }
  .header--search .header--search-form {
    width: 100%;
  }
  .header--search .header--search-input {
    width: 100%;
    flex: 1;
  }
  .header--menu-toggle {
    display: flex;
    order: 1;
  }
  .header--apps {
    order: 2;
  }
  .header--buttons {
    order: 1;
    width: 100%;
    justify-content: stretch;
  }
  .header--buttons .header--button {
    flex: 1;
    text-align: center;
  }
  .header--langs {
    order: 2;
  }
}
.footer {
  background: linear-gradient(90deg, #0f1a30 0%, #1b3364 100%);
  color: #fff;
  margin-top: 60px;
  padding: 50px 0 75px;
}
.footer--top {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer--top-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer--logo-main {
  width: 150px;
  margin-bottom: 10px;
}
.footer--logo-main img {
  width: 100%;
  height: auto;
}
.footer--info {
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
}
.footer--top-center {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer--top-right {
  display: flex;
  flex-direction: column;
}
.footer--section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer--section-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
}
.footer--socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer--social-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s;
  text-decoration: none;
}
.footer--social-item:hover {
  transform: translateY(-2px);
}
.footer--social-item img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer--logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px;
  transition: all 0.3s;
}
.footer--logo:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.footer--logo img {
  max-width: 80px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer--menus {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer--menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer--menu-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
}
.footer--menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer--menu-list li {
  list-style: none;
}
.footer--menu-list a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  display: block;
}
.footer--menu-list a:hover {
  color: #7eac2f;
}
.footer--copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer--copyright p {
  margin: 0;
  color: #fff;
  font-size: 13px;
}
@media (max-width: 1024px) {
  .footer {
    padding: 40px 0 20px;
  }
  .footer--top {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .footer--top-center {
    gap: 25px;
  }
  .footer--menus {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 640px) {
  .footer--menus {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer--socials, .footer--logos {
    gap: 10px;
  }
  .footer--logo img {
    max-width: 60px;
  }
}
.toc {
  margin: 30px 0;
  position: sticky;
  top: 30px;
  right: 0;
}
.toc.active .toc--title {
  border-radius: 16px 0 0;
}
.toc.active .toc--title span {
  transform: rotate(180deg);
}
.toc.active ul {
  display: flex;
}
.toc--title {
  padding: 20px 152px 20px 24px;
  border-radius: 16px 0 0 16px;
  -webkit-clip-path: polygon(0 0, 79.271% 0, 79.271% 0, 80.085% 0.148%, 80.88% 0.585%, 81.65% 1.298%, 82.389% 2.276%, 83.09% 3.507%, 83.749% 4.979%, 84.36% 6.681%, 84.915% 8.6%, 85.41% 10.725%, 85.838% 13.043%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(0 0, 79.271% 0, 79.271% 0, 80.085% 0.148%, 80.88% 0.585%, 81.65% 1.298%, 82.389% 2.276%, 83.09% 3.507%, 83.749% 4.979%, 84.36% 6.681%, 84.915% 8.6%, 85.41% 10.725%, 85.838% 13.043%, 100% 100%, 0 100%, 0 0);
  font-weight: 700;
  font-size: 24px;
  position: relative;
  background: #31343B;
  border: 1px solid #161616;
  color: #E6E6E6;
}
.toc--title span {
  width: 26px;
  height: 26px;
  position: absolute;
  top: calc(50% - 13px);
  right: 52px;
  transition: 0.2s;
}
.toc--top {
  position: relative;
}
.toc--top:after {
  display: block;
  content: "";
  position: absolute;
  width: 95%;
  height: 1px;
  right: 0;
  bottom: 0;
}
.toc ul {
  padding: 30px 15px;
  border-radius: 0 0 16px 16px;
  margin: 0;
  display: none;
  flex-direction: column;
  border: 1px solid #161616;
  gap: 20px;
}
.toc ul li {
  list-style: none;
  position: relative;
  padding-left: 25px;
}
.toc ul li:before {
  content: "";
  height: 15px;
  width: 15px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 2px;
  border: 2px solid #7eac2f;
}
.toc ul li::marker {
  display: none;
}
.toc ul li a {
  display: block;
  color: #E6E6E6;
  font-size: 18px;
  font-weight: 500;
}
.toc ul li a:hover {
  color: #7eac2f;
}
.faq {
  margin: 30px 0;
}
.faq--item {
  border-radius: 18px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 2px solid #161616;
}
.faq--item.active .faq--text {
  display: block;
}
.faq--item.active .faq--title svg {
  transform: rotate(180deg);
}
.faq--title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background-color:#0a0909;
  width: 100%;
  font-weight: 700;
  font-size: 24px;
  text-align: left;
  color: #E6E6E6;
  padding: 30px 40px;
}
.faq--title svg {
  width: 30px;
  transition: all 0.3s;
  fill: #202125;
}
.faq--text {
  display: none;
  background: #31343B;
  padding: 30px 40px;
}
.review-table--logo {
  display: flex;
  justify-content: center;
}
.review-table .wp-block-table table th, .review-table .wp-block-table table td {
  padding: 6px 10px;
}
.review-table .wp-block-table table th .btn-primary, .review-table .wp-block-table table th .post-entry .wp-block-buttons .wp-block-button__link, .post-entry .wp-block-buttons .review-table .wp-block-table table th .wp-block-button__link, .review-table .wp-block-table table th .btn-border, .review-table .wp-block-table table td .btn-primary, .review-table .wp-block-table table td .post-entry .wp-block-buttons .wp-block-button__link, .post-entry .wp-block-buttons .review-table .wp-block-table table td .wp-block-button__link, .review-table .wp-block-table table td .btn-border {
  color: #202125;
  padding: 6px;
  font-size: 15px;
}
.pros-cons {
  margin: 30px 0;
  background: #31343B;
  border-radius: 30px;
  padding: 40px;
}
.pros-cons--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.pros-cons--title {
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.pros-cons--title span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #36BA73;
  border-radius: 50%;
}
.pros-cons--title span svg {
  fill: #fff;
  width: 40px;
  height: 40px;
  color: #fff;
}
.pros-cons ol li:before {
  color: #fff;
  background: #36BA73;
}
.pros-cons--right .pros-cons--title span {
  background: #ff0000;
}
.pros-cons--right .pros-cons--title span svg {
  transform: rotate(180deg);
}
.pros-cons--right ol li:before {
  background: #ff0000;
}
@media (max-width: 1024px) {
  .pros-cons {
    padding: 30px 15px;
  }
  .pros-cons--row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.cols-links {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 24px;
}
.cols-links--image {
  height: 224px;
  border-radius: 38px;
  overflow: hidden;
  margin-bottom: 10px;
}
.cols-links--image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cols-links--title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.cols-links--link {
  width: 100%;
  color: #202125 !important;
  padding: 5px;
}
.guidebook-block {
  margin: 30px 0 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.guidebook-block--item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 174px;
  padding: 20px;
  position: relative;
  background: #2C3031;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.guidebook-block--item:hover {
  color: #fff;
}
.guidebook-block--item:nth-child(1) {
  grid-column: span 2;
}
.guidebook-block--item:nth-child(4) {
  grid-row: span 2;
}
.guidebook-block--item:nth-child(4) .guidebook-block--item-img {
  bottom: 50%;
  transform: translateY(50%);
}
.guidebook-block--item:nth-child(5) {
  grid-row: span 2;
}
.guidebook-block--item:nth-child(5) .guidebook-block--item-img {
  bottom: 50%;
  transform: translateY(50%);
}
.guidebook-block--item:nth-child(7) {
  grid-column: span 2;
}
.guidebook-block--item:nth-child(8) {
  grid-column: span 2;
}
.guidebook-block--item-link {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
.guidebook-block--item-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(179.86deg, #31343B 0.14%, #347757 99.9%);
}
.guidebook-block--item-img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.guidebook-block--item-title {
  position: relative;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  max-width: 70%;
}
.guidebook-block--item-more {
  background: #33393A;
  border-radius: 8px;
  padding: 6.5px 42px;
  font-weight: 900;
  line-height: 1.2;
  font-size: 14px;
  position: relative;
}
@media (max-width: 1024px) {
  .guidebook-block {
    grid-template-columns: 1fr;
  }
  .guidebook-block--item {
    grid-column: initial !important;
  }
}
.home--hero {
  margin-bottom: 50px;
}
.home--content-more {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 30px 0;
  color: inherit;
  background: transparent;
  font-weight: 600;
  text-wrap: nowrap;
}
.home--content-more svg {
  width: 20px;
}
.home--content-more.active svg {
  position: relative;
  transform: rotate(90deg);
}
.home--bottom-content {
  display: none;
}
.home--bottom-content.active {
  display: block;
}
.hero {
  padding: 30px 0;
  background: #202125;
  color: #fff;
}
.hero--left {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  background: linear-gradient(2.83deg, rgba(137, 166, 23, 0.36) 1.69%, rgba(32, 33, 37, 0) 32.01%), linear-gradient(179.43deg, #31343B -6.41%, rgba(54, 186, 115, 0.6) 97.61%);
  border-radius: 12px;
}
.hero--title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero--title span {
  color: #7eac2f;
}
.hero--text {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero--links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.hero--right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.hero--promo-wrap {
  display: flex;
  align-items: center;
  background: #31343B;
  border: 1px solid #161616;
  border-radius: 15px;
  padding: 30px 0;
}
.hero--promo-left {
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  padding: 0 25px;
  line-height: 1;
  text-transform: uppercase;
}
.hero--promo-left span {
  font-weight: 400;
}
.hero--logo img {
  width: 100%;
  height: auto;
  max-height: 400px;
}
@media (max-width: 1024px) {
  .hero--row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .hero--right {
    flex-direction: column;
    align-items: center;
  }
  .hero--title {
    font-size: 28px;
    line-height: 1.3;
  }
}
.page-hero-section {
  margin: 40px 0 60px;
}
.hero-banners-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .hero-banners-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-banners-grid .hero-banner--large {
    grid-column: span 2;
  }
}
@media (max-width: 1024px) {
  .hero-banners-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .hero-banners-grid .hero-banner--large {
    grid-column: span 1;
  }
}
.hero-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  color: #fff;
}
.hero-banner--large {
  min-height: 400px;
}
@media (max-width: 1024px) {
  .hero-banner--large {
    min-height: 300px;
  }
}
.hero-banner--medium {
  min-height: 280px;
  background: #31343B;
  background-image: linear-gradient(135deg, rgba(49, 52, 59, 0.9) 0%, rgba(32, 33, 37, 0.9) 100%);
}
.hero-banner--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-banner--icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-banner--icon {
  position: absolute;
  z-index: 2;
}
.hero-banner--icon img {
  width: 100%;
  height: auto;
  opacity: 0.8;
}
.hero-banner--icon[data-position=top-left] {
  top: 20px;
  left: 20px;
  width: 80px;
}
.hero-banner--icon[data-position=top-right] {
  top: 20px;
  right: 20px;
  width: 80px;
}
.hero-banner--icon[data-position=bottom-left] {
  bottom: 20px;
  left: 20px;
  width: 80px;
}
.hero-banner--icon[data-position=bottom-right] {
  bottom: 20px;
  right: 20px;
  width: 80px;
}
.hero-banner--icon[data-position=center] {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
}
.hero-banner--content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  flex: 1;
}
.hero-banner--title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .hero-banner--title {
    font-size: 24px;
  }
}
.hero-banner--subtitle {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}
.hero-banner--button {
  align-self: flex-start;
  padding: 12px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  color: #202125;
}
.hero-banner--button.btn-primary, .post-entry .wp-block-buttons .hero-banner--button.wp-block-button__link, .hero-banner--button.btn-border {
  background-image: linear-gradient(285.39deg, #ffb800 -4.36%, #fff173 115.87%);
  color: #202125;
  border: none;
}
.hero-banner--button.btn-primary:hover, .post-entry .wp-block-buttons .hero-banner--button.wp-block-button__link:hover, .hero-banner--button.btn-border:hover {
  transform: translateY(-2px);
}
.hero-banner--button.btn-secondary {
  background: linear-gradient(180deg, #ffd942 0%, #d39f18 100%);
  color: #e5eafa;
  border: none;
}
.hero-banner--button.btn-secondary:hover {
  background: #b2cfed;
  color: #e5eafa;
}
.hero-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .hero-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .hero-categories {
    grid-template-columns: 1fr;
  }
}
.hero-category {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #153756;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.hero-category:hover .hero-category--icon {
  transform: rotate(15deg);
}
.hero-category--icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.hero-category--icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-category--content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero-category--title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  line-height: 1.3;
}
.hero-category--subtitle {
  font-size: 12px;
  margin: 0;
  color: #fff;
  line-height: 1.4;
}
.page-pros-cons {
  margin: 60px 0;
  padding: 40px 0;
}
@media (max-width: 1024px) {
  .page-pros-cons {
    margin: 40px 0;
    padding: 20px 0;
  }
}
.pros-cons--grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1024px) {
  .pros-cons--grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.pros-cons--left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pros-cons--main-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 20px 0;
  color: #fff;
}
@media (max-width: 1024px) {
  .pros-cons--main-title {
    font-size: 24px;
  }
}
.pros-cons--pros,
.pros-cons--cons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.pros-cons--title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
@media (max-width: 1024px) {
  .pros-cons--title {
    font-size: 20px;
  }
}
.pros-cons--intro {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}
.pros-cons--list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pros-cons--item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 1024px) {
  .pros-cons--item {
    font-size: 14px;
  }
}
.pros-cons--icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7eac2f;
  color: #202125;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}
.pros-cons--text {
  flex: 1;
  color: rgba(255, 255, 255, 0.9);
}
.pros-cons--right {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .pros-cons--right {
    align-items: center;
    text-align: center;
  }
}
.pros-cons--right-logo {
  width: 150px;
  margin-bottom: 10px;
}
.pros-cons--right-logo img {
  width: 100%;
  height: auto;
}
.pros-cons--right-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #fff;
}
@media (max-width: 1024px) {
  .pros-cons--right-title {
    font-size: 24px;
  }
}
.pros-cons--features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.pros-cons--feature {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pros-cons--feature:last-child {
  border-bottom: none;
}
@media (max-width: 1024px) {
  .pros-cons--feature {
    font-size: 16px;
  }
}
.pros-cons--right-image {
  width: 100%;
  max-width: 300px;
  margin-top: 20px;
}
.pros-cons--right-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .pros-cons--right-image {
    max-width: 250px;
  }
}
html,
body {
  margin-top: 0 !important;
  font-family: "PT Sans", serif;
}
html.-toggle, html.menu-open,
body.-toggle,
body.menu-open {
  overflow: hidden;
}
.body--inner {
  position: relative;
  max-width: 100vw;
  min-height: 100vh;
  font-size: 18px;
  background: linear-gradient(90deg, #032569 0%, #0a101e 100%);
  color: #e5eafa;
}
.container {
  width: 1380px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.lang--switcher {
  position: relative;
  font-size: 14px;
  border-radius: 5px;
}
.lang--switcher:hover .lang--switcher-list {
  display: flex;
}
.lang--switcher:hover .lang--switcher-current svg {
  transform: rotate(180deg);
}
.lang--switcher-current {
  background: transparent;
  width: 38px;
  height: 38px;
  background: linear-gradient(90deg, #153756, #153756);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.lang--switcher-current span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang--switcher-current svg {
  width: 20px;
}
.lang--switcher-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}
.lang--switcher-item span {
  width: 16px;
  min-width: 16px;
}
.lang--switcher-list {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 8px 6px;
  background: #202125;
  z-index: 100;
  border-radius: 8px;
}
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 10;
  background: linear-gradient(90deg, #0f1a30 0%, #1b3364 100%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5019607843);
}
.catfish--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.catfish--text {
  font-weight: 600;
  color: #fff;
}
.catfish--text span {
  color: #7eac2f;
}
.catfish--link {
  padding: 7px 25px;
}
@media (max-width: 1024px) {
  .catfish--text {
    font-size: 14px;
  }
  .catfish--link {
    padding: 5px 15px;
  }
}

.lwptoc{margin:32px 0}.lwptoc:first-child{margin-top:16px}.lwptoc_i{padding:14px 18px 18px;text-align:left}.lwptoc_header{margin-bottom:6px}.rtl .lwptoc_header{text-align:right}.lwptoc_toggle{white-space:nowrap;margin-left:4px;font-size:80%}.rtl .lwptoc_toggle{margin-left:0;margin-right:4px}.lwptoc_toggle:before{content:'['}.lwptoc_toggle:after{content:']'}.lwptoc_toggle_label{margin:0 1px}.lwptoc_item{margin-top:2px}.rtl .lwptoc_item{text-align:right}LI.lwptoc_item{margin:2px 0 0 0!important;padding:0!important;list-style:none!important}.lwptoc_item:first-child{margin-top:0}LI.lwptoc_item:first-child{margin-top:0!important}.lwptoc_item_number{margin-right:2px}.rtl .lwptoc_item_number{margin-right:0;margin-left:2px}.lwptoc_itemWrap .lwptoc_itemWrap{margin:2px 0 0 14px}.rtl .lwptoc_itemWrap .lwptoc_itemWrap{margin-left:0;margin-right:14px}OL.lwptoc_itemWrap,UL.lwptoc_itemWrap{margin:0!important;padding:0!important;list-style:none!important}OL.lwptoc_itemWrap OL.lwptoc_itemWrap,OL.lwptoc_itemWrap UL.lwptoc_itemWrap,UL.lwptoc_itemWrap OL.lwptoc_itemWrap,UL.lwptoc_itemWrap UL.lwptoc_itemWrap{margin:2px 0 0 14px!important}.rtl OL.lwptoc_itemWrap OL.lwptoc_itemWrap,.rtl OL.lwptoc_itemWrap UL.lwptoc_itemWrap,.rtl UL.lwptoc_itemWrap OL.lwptoc_itemWrap,.rtl UL.lwptoc_itemWrap UL.lwptoc_itemWrap{margin-left:0!important;margin-right:14px!important}.lwptoc-autoWidth .lwptoc_i{display:inline-block}.lwptoc-left{float:left;margin-top:0;margin-right:32px}.lwptoc-right{float:right;margin-top:0;margin-left:32px}.lwptoc-rightwithoutflow{text-align:right}.lwptoc-rightwithoutflow .lwptoc_i{display:inline-block}.lwptoc-center{text-align:center}.lwptoc-center .lwptoc_i{margin-left:auto;margin-right:auto}.lwptoc-baseItems .lwptoc_items{font-size:90%}.lwptoc-notInherit .lwptoc_i DIV A{box-shadow:none!important;border:none!important;text-decoration:none!important}.lwptoc-notInherit .lwptoc_i DIV A:active,.lwptoc-notInherit .lwptoc_i DIV A:focus,.lwptoc-notInherit .lwptoc_i DIV A:hover{box-shadow:none!important;border:none!important;text-decoration:none!important}.lwptoc-notInherit .lwptoc_i DIV A:hover{border-bottom:1px dotted!important}.lwptoc-light .lwptoc_i{color:#333;background:#fafafa}.lwptoc-light .lwptoc_i A{color:#3175e4}.lwptoc-light .lwptoc_i A:active,.lwptoc-light .lwptoc_i A:focus,.lwptoc-light .lwptoc_i A:hover{color:#3175e4;border-color:#3175e4}.lwptoc-light .lwptoc_items A:visited{color:#000394}.lwptoc-dark .lwptoc_i{color:#d3d5d8;background:#2b2b2b}.lwptoc-dark .lwptoc_i A{color:#96c6ff}.lwptoc-dark .lwptoc_i A:active,.lwptoc-dark .lwptoc_i A:focus,.lwptoc-dark .lwptoc_i A:hover{color:#96c6ff;border-color:#71b2ff}.lwptoc-dark .lwptoc_items A:visited{color:#53a1ff}.lwptoc-white .lwptoc_i{color:#333;background:#fff}.lwptoc-white .lwptoc_i A{color:#3175e4}.lwptoc-white .lwptoc_i A:active,.lwptoc-white .lwptoc_i A:focus,.lwptoc-white .lwptoc_i A:hover{color:#3175e4;border-color:#3175e4}.lwptoc-white .lwptoc_items A:visited{color:#000394}.lwptoc-transparent .lwptoc_i{border:1px solid #eee}