@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: #000000;
  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;
}

.site-header {
  padding: 24px 0;
}
@media (max-width: 768px) {
  .site-header {
    padding: 20px 0;
  }
}
.site-header .site-header--row {
  display: flex;
  gap: 42px;
  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 {
  width: 42px;
  height: 42px;
  background: url("../../images/menu-icon.svg") no-repeat center;
  background-size: 20px;
  border: 1px solid #fa4d00;
  border-radius: 35px;
  justify-self: flex-end;
}
.site-header .site-header--menu-btn.-toggle {
  background: #31343C url("../../images/close-icon.svg") no-repeat center;
  background-size: 18px;
  border: 1px solid #fff;
}
.site-header .site-header__menu {
  padding-right: 64px;
  text-align: right;
}
@media (max-width: 768px) {
  .site-header .site-header__menu {
    padding: 0;
    text-align: left;
    margin-bottom: 64px;
    grid-column: 1/3;
    grid-row: 1;
  }
}
.site-header .site-header__menu ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 42px;
}
@media (max-width: 768px) {
  .site-header .site-header__menu ul {
    display: block;
  }
}
.site-header .site-header__menu ul li {
  font-size: 15px;
  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;
  padding-left: 28px;
}
.site-header .site-header__menu ul li:first-child a {
  background: url("../../images/menu-icons/4.svg") no-repeat left center;
  background-size: 18px;
}
.site-header .site-header__menu ul li:nth-child(2) a {
  background: url("../../images/menu-icons/3.svg") no-repeat left center;
  background-size: 18px;
}
.site-header .site-header__menu ul li:nth-child(3) a {
  background: url("../../images/menu-icons/1.svg") no-repeat left center;
  background-size: 18px;
}
.site-header .site-header__menu ul li:nth-child(4) a {
  background: url("../../images/menu-icons/2.svg") no-repeat left center;
  background-size: 18px;
}
.site-header .site-header__menu ul li:hover > a {
  color: #fa4d00;
}
.site-header .site-header__menu ul li ul {
  display: none;
}
.site-header .site-header__menu ul li:hover > ul {
  display: block;
  width: 240px;
  background: #fff;
  border-radius: 35px;
  padding: 24px 20px;
  box-shadow: 0px 0px 12px rgba(12, 42, 149, 0.15);
  position: absolute;
  top: 100%;
  left: -20px;
  z-index: 999;
}
.site-header .site-header__menu ul li:hover > ul li {
  background: transparent !important;
  text-align: left;
}
.site-header .site-header__menu ul li:hover > ul li:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #cbcbcb;
}
.site-header .site-header__menu ul li:hover > ul li a {
  background: transparent !important;
  padding: 0;
  color: #31343C;
  font-size: 13px;
}
.site-header .site-header__menu ul li:hover > ul li a:hover {
  color: #24262B;
}
.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: 35px;
  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: 35px;
}
.site-header .site-header__langs .site-header__langs--current span {
  color: #fff;
}
.site-header .site-header__langs ul {
  display: none;
  width: 180px;
  background: #31343C;
  box-shadow: 0px 0px 12px rgba(12, 42, 149, 0.15);
  border-radius: 35px;
  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 #31343C;
}
@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 {
  height: 42px;
  line-height: 42px;
  background: linear-gradient(0deg,#dfa800 0,#dfa800);
  border-radius: 35px;
  font-size: 15px;
  font-weight: 500;
  padding: 0 15px;
  
}
@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: linear-gradient(0deg,#01a4bd,#01a4bd 97%,#01a4bd);
}
.site-header .site-header__btn-reg a {
  padding: 0;
}

.main-menu {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.main-menu.-toggle {
  display: block;
}
.main-menu .main-menu__content {
  max-width: 390px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 40px 30px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999999;
  background: #1C1E22;
  border-left: 1px solid #fa4d00;
}
.main-menu .main-menu__head {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  margin-bottom: 30px;
}
.main-menu .main-menu__head img {
  max-width: 180px;
}
.main-menu .main-menu__head .main-menu__close {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: url("../../images/close-icon.svg") no-repeat center;
  background-size: 15px;
  border: 1px solid #fff;
}
.main-menu .main-menu__head .main-menu__close:hover {
  opacity: 0.86;
}
.main-menu .main-menu__nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  place-content: center;
  margin-left: -30px;
  margin-right: -30px;
}

.slide-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.384);
}
.slide-menu li a {
  padding: 14px 30px;
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.slide-menu li.current-menu-item {
  border-top: 1px solid #fa4d00;
  border-bottom: 1px solid #fa4d00;
}
.slide-menu li.current-menu-item > a {
  background: url("../../images/slide-menu-li-bg.svg") no-repeat left center;
  background-size: cover;
  color: #fa4d00;
}

.header-banner {
  padding: 20px 0 0 0;
  margin-bottom: 54px;
}
@media (max-width: 768px) {
  .header-banner {
    padding-bottom: 20px;
  }
}
.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: 58px;
  color: #fff;
  line-height: 1.2;
  font-weight: bold;
}
@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 {
  color: #fa4d00;
  background: linear-gradient(0deg,#fa4d00 0,#fa5e00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.header-banner .header-banner--content .header-banner--desc {
  color: #fff;
  margin: 20px 0 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 {
  background-image: linear-gradient(0deg,#fa4d00 0,#fa5e00);
  box-shadow: 0 10px 30px #fa410066;
  display: inline-block;
  padding: 0 54px;
  font-size: 15px;
  font-weight: 500;
  line-height: 42px;
  color: #fff;
  border-radius: 35px;
  height: 42px;
}
@media (max-width: 768px) {
  .header-banner .header-banner--content .header-banner--link a {
    width: 100%;
    height: 74px;
    line-height: 74px;
  }
}
.header-banner .header-banner--content .header-banner--link a:hover {
  opacity: 0.86;
}
.header-banner .header-banner__img {
  position: relative;
}
.header-banner .header-banner__btns {
  width: 99%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
  position: absolute;
  bottom: 72px;
}
@media (max-width: 768px) {
  .header-banner .header-banner__btns {
    position: relative;
    margin-top: 30px;
    display: block;
    bottom: unset;
  }
}
.header-banner .header-banner__btns .hero-btn {
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #fa4d00;
}
@media (max-width: 768px) {
  .header-banner .header-banner__btns .hero-btn:not(:last-child) {
    margin-bottom: 16px;
  }
}
.header-banner .header-banner__btns .hero-btn a {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-gap: 12px;
  align-items: center;
  padding: 14px 16px;
}
.header-banner .header-banner__btns .hero-btn i {
  width: 46px;
  height: 46px;
  display: inline-block;
}
.header-banner .header-banner__btns .hero-btn i.icon-android {
  background: url("../../images/android-icon.svg") no-repeat center;
  background-size: contain;
}
.header-banner .header-banner__btns .hero-btn i.icon-ios {
  background: url("../../images/ios-icon.svg") no-repeat center;
  background-size: contain;
}
.header-banner .header-banner__btns .hero-btn span {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  display: block;
}
.header-banner .header-banner__btns .hero-btn small {
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-bottom: 3px;
}
.header-banner .header-banner__btns .hero-btn: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(12, 42, 149, 0.15);
}
.header-banner .header-banner--links .header-banner--links__item:hover .arrow-icon {
  box-shadow: 0px 0px 12px rgba(12, 42, 149, 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 {
  font-size: 36px;
}
@media (max-width: 768px) {
  .post-entry h2 {
    font-size: 24px;
  }
}
.post-entry h2 span,
.post-entry h2 b,
.post-entry h2 strong {
  background: linear-gradient(0deg,#fa4d00 0,#fa5e00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.post-entry h2:not(.has-text-align-center) {
  padding-left: 46px;
  position: relative;
  margin-bottom: 20px;
}
.post-entry h2: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-text-align-center {
  padding-left: 0;
  padding-top: 46px;
  position: relative;
}
.post-entry h2.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 h3 {
  font-size: 28px;
  position: relative;
  margin-top: 16px;
  margin-bottom: 24px;
}
.post-entry h4 {
  font-size: 20px;
}
.post-entry a {
  color: #0855cc;
}
.post-entry a:hover {
  color: #31343C;
}
.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: #31343C;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}
.post-entry .periexomena ol li a {
  color: #31343C;
}
.post-entry .periexomena ol li a:hover {
  color: #1A1A1A;
}
.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: 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: linear-gradient(0deg,#fa4d00 0,#fa5e00);;
  border-radius: 35px;
  color: #fff;
  padding: 0 20px;
}
@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: 30px;
}
.post-entry .wp-block-image img {
  margin: 0 auto;
}
.post-entry ol {
  list-style-position: inside;
  list-style-type: decimal;
  margin: 0 0 20px 42px;
  position: relative;
}
@media (max-width: 768px) {
  .post-entry ol {
    margin-bottom: 20px;
  }
}
.post-entry ol li {
  list-style: decimal;
  position: relative;
}
.post-entry ol li:not(last-child) {
  margin-bottom: 20px;
}
.post-entry ol li::marker {
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  white-space: pre;
  text-transform: none;
  color: #509aea;
  font-size: 16px;
  font-weight: bold;
}
.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: #6D34E8 !important;
}
.post-entry table tr:first-child td {
  font-weight: 700;
  color: #fff;
}
.post-entry table tr:nth-child(odd) {
  background: #31343C;
}
.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;
}

.wp-block-group {
  margin-bottom: 60px !important;
}

.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: #31343C;
  border: 1px solid #509aea;
  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:linear-gradient(0deg,#006400,#FFA500 97%,#FF0000);
  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: max-content 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;
  }
}
@media (max-width: 768px) {
  .site-footer .site-footer--row .site-footer__logo {
    display: flex;
    place-content: center;
  }
}
.site-footer .site-footer--row .site-footer__logo img {
  max-width: 180px;
}
@media (max-width: 768px) {
  .site-footer .site-footer--row .site-footer__logo img {
    max-width: 96px;
  }
}
.site-footer .site-footer--row .site-footer__menu ul {
  text-align: right;
}
@media (max-width: 768px) {
  .site-footer .site-footer--row .site-footer__menu ul {
    text-align: center;
  }
}
.site-footer .site-footer--row .site-footer__menu ul li {
  display: inline-block;
  margin: 0 14px;
}
@media (max-width: 768px) {
  .site-footer .site-footer--row .site-footer__menu ul li {
    margin-bottom: 8px;
  }
}
.site-footer .site-footer--row .site-footer__menu ul li a {
  font-size: 13px;
  color: #fff;
}
.site-footer .site-footer--row .site-footer__menu ul li a:hover {
  color: #fa4d00;
}
.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: #656870;
  font-size: 13px;
  border-top: 1px solid #31343C;
  padding-top: 40px;
}

.main-cta-block {
  margin-bottom: 24px;
  background: #31343C;
  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: #31343C;
  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 #fa4d00;
  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: #fa4d00;
  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 #fa4d00;
  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: #fa4d00;
  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: #fa4d00;
  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(12, 42, 149, 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: #31343C;
  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;
  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: 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: #fa4d00;
  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: #fa4d00;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 35px;
}
.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: #31343C;
  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;
  padding-left: 20px;
}
@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: linear-gradient(0deg,#fa4d00 0,#fa5e00);;
  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: #fa4d00;
}
.g-toc-block.-toggle ol {
  display: none;
}

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

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

.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: flex;
  gap: 30px;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .wp-block-columns {
    flex-direction: column;
  }
}
.wp-block-columns .wp-block-column {
  flex: 1 0 auto;
}
.wp-block-columns .wp-block-column h2 {
  font-weight: 700;
  padding: 0;
  font-size: 32px;
}
.wp-block-columns .wp-block-column h2::before {
  content: none;
}
.wp-block-columns .wp-block-column h2 span,
.wp-block-columns .wp-block-column h2 b,
.wp-block-columns .wp-block-column h2 strong {
  background: linear-gradient(0deg,#fa4d00 0,#fa5e00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
}

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

.has-medium-font-size {
  font-size: 20px;
}

.how-to-install {
  background: #1C1E22;
  padding: 16px;
  border-radius: 4px;
  margin: 32px 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .how-to-install {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.how-to-install .how-to-install__img img {
  width: 150px;
  height: auto;
}
@media (max-width: 768px) {
  .how-to-install .how-to-install__img img {
    height: 96px;
  }
}
.how-to-install .how-to-install__p {
  display: flex;
  gap: 12px;
  align-items: center;
}
.how-to-install .how-to-install__p span {
  font-size: 20px;
  color: #fff;
}
.how-to-install .how-to-install__p a {
  color: #fa4d00;
  font-weight: 600;
  text-decoration: underline;
}
.how-to-install .how-to-install__p a:hover {
  text-decoration: none;
}
.how-to-install .how-to-install__p.-top {
  margin-bottom: 24px;
}
.how-to-install .how-to-install__p.-top i {
  width: 24px;
  height: 46px;
  background: url("../../images/qr-arrow-top.svg") no-repeat center;
  background-size: contain;
}
.how-to-install .how-to-install__p.-top img {
  width: 24px;
  height: 24px;
  display: inline-block;
}
.how-to-install .how-to-install__p.-bottom i {
  width: 24px;
  height: 46px;
  background: url("../../images/qr-arrow-bottom.svg") no-repeat center;
  background-size: contain;
}

.slider-block {
  background: url("http://demo.mostbet-netherlands.com/wp-content/uploads/2024/03/slider.png") no-repeat center;
  background-size: cover;
  padding: 60px 30px;
  border-radius: 10px;
}
.slider-block .slider-block__title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.g-slider {
  padding-top: 50px;
  position: relative;
}
.g-slider .g-slider__slide {
  display: flex;
  place-content: center;
  flex-direction: column;
}
.g-slider .g-slider__slide img {
  max-width: 300px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .g-slider .g-slider__slide img {
    max-width: 240px;
  }
}
.g-slider .g-slider__step {
  margin: 20px 0 14px;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
}
.g-slider .g-slider__text {
  font-size: 17px;
  text-align: center;
}
.g-slider .splide__arrow {
  background: linear-gradient(0deg,#fa4d00 0,#fa5e00);;
  width: 64px;
  height: 64px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .g-slider .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
.g-slider .splide__arrow.splide__arrow--prev {
  left: 0;
}
@media (max-width: 768px) {
  .g-slider .splide__arrow.splide__arrow--prev {
    left: -20px;
  }
}
.g-slider .splide__arrow.splide__arrow--next {
  right: 0;
}
@media (max-width: 768px) {
  .g-slider .splide__arrow.splide__arrow--next {
    right: -20px;
  }
}
.g-slider .splide__arrow svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
@media (max-width: 768px) {
  .g-slider .splide__arrow svg {
    width: 10px;
    height: 10px;
  }
}
.g-slider .splide__arrow:disabled {
  background: #31343C;
}

.splide__pagination {
  position: absolute;
  top: 0;
  bottom: unset;
  width: 100%;
  list-style: none !important;
  display: flex !important;
  gap: 14px !important;
}
.splide__pagination li {
  padding: 0 !important;
  list-style: none !important;
  margin: 0 !important;
}
.splide__pagination li::before {
  content: none !important;
}
.splide__pagination li button {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50%;
  background: #fff;
}
.splide__pagination li button:hover {
  opacity: 0.86;
}
.splide__pagination li button.is-active {
  background: linear-gradient(0deg,#fa4d00 0,#fa5e00);;
  transform: unset !important;
}


mark.has-inline-color.has-luminous-vivid-amber-color {
    color: #fff;
    background-color: #fa4d00!important;
}

.site-footer__logos-seo > a > img {
	width: 140px;
    margin: 0 auto;
}


#ez-toc-container ul li::before {
	content: none!important;
}

#ez-toc-container {
    background: #f9f9f9;
    border: 1px solid #aaa;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    display: table;
    margin-bottom: 1em;
    padding: 25px;
    position: relative;
    /* width: auto; */
    margin-left: -33px;
    margin-left: -32px;
    margin-right: -32px;
}

.ez-toc-counter nav ul li a::before {
	color: #509aea;
}

div#ez-toc-container ul.ez-toc-list a:hover {
    color: #fa4d00;
	text-decoration:none;
}