@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;
  }
}
.hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  margin-bottom: 30px;
}
.hero--bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.hero--bg-dark, .hero--bg-light {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}
.hero--bg-light {
  display: none;
}
.hero--row {
  position: relative;
  padding: 30px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero--row {
    padding: 20px;
    grid-template-columns: 1fr;
  }
}
.hero--title {
  font-weight: 900;
  margin: 0 !important;
  line-height: 1.2;
  font-size: 40px;
}
@media (max-width: 1024px) {
  .hero--title {
    font-size: 24px;
  }
}
.hero--title span {
  color: #1BC35F;
}
.hero--left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .hero--left {
    gap: 10px;
  }
}
.hero--text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .hero--text {
    font-size: 14px;
    font-weight: 500;
  }
}
.hero--link {
  min-width: 166px;
  background: transparent;
  border-radius: 8px;
  color: #000 !important;
  text-decoration: none !important;
  font-weight: 900;
  font-size: 14px;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  height: auto;
  padding: 10px 28px;
  text-align: center;
}
.hero--link:hover {
  color: #fff;
}
.hero--link:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: 8px;
  left: 0;
  background: #1BC35F;
  z-index: -2;
}
.hero--link:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 2px;
  width: 100%;
  border-radius: 8px;
  left: 0;
  background: linear-gradient(90deg, #22EC7E 0%, #95E566 100%);
  z-index: -1;
}
@media (max-width: 1024px) {
  .hero--right {
    display: none;
  }
}

body.theme-light .hero {
  color: #171919;
}
body.theme-light .hero--bg-dark {
  display: none;
}
body.theme-light .hero--bg-light {
  display: block;
}
body.theme-light .hero--title {
  color: #171919;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 30px 0 60px;
}
.tiles--item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #2C3031;
  text-decoration: none !important;
  grid-auto-flow: column;
  min-height: 123px;
}
.tiles--item:nth-child(1), .tiles--item:nth-child(2) {
  grid-row: span 2;
}
.tiles--item-top {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  gap: 4px;
}
.tiles--item-top span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.tiles--item-bg, .tiles--item-gradient {
  background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.tiles--item-bottom {
  color: #B3BEC1;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.28;
}
@media (max-width: 1024px) {
  .tiles--item {
    padding: 10px;
    min-height: 106px;
  }
  .tiles--item:nth-child(1), .tiles--item:nth-child(2) {
    grid-row: initial;
    grid-column: span 2;
  }
  .tiles--item:nth-child(n+3) .tiles--item-top {
    padding-top: 70px;
  }
  .tiles--item:nth-child(n+3) .tiles--item-top span {
    display: none;
  }
  .tiles--item-bottom {
    display: none;
  }
  .tiles--item-top {
    font-size: 14px;
  }
}

body.theme-light .tiles--item {
  background-color: #fff;
}
body.theme-light .tiles--item-top {
  color: #171919;
}

.block-bg {
  position: relative;
  margin: 60px 0;
  height: 1px;
}
.block-bg--image {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: linear-gradient(180deg, #1A1C1F 0%, #1E2121 100%);
}
.block-bg--image img {
  display: block;
  width: 100%;
  height: auto;
}

body.theme-light .block-bg--image {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.bonuses-cols {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 110px;
  margin: 20px 0 60px;
  border-radius: 10px;
  background: linear-gradient(104.83deg, #5F6B2D 11.77%, #2C3031 51.35%);
}
.bonuses-cols--left {
  color: #fff;
}
.bonuses-cols--title {
  line-height: 1;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 10px;
}
.bonuses-cols--text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 700;
}
.bonuses-cols--link {
  background: transparent;
  border-radius: 8px;
  color: #000 !important;
  text-decoration: none !important;
  font-weight: 900;
  font-size: 14px;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  height: auto;
  padding: 10px 28px;
  text-align: center;
}
.bonuses-cols--link:hover {
  color: #fff;
}
.bonuses-cols--link:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: 8px;
  left: 0;
  background: #1BC35F;
  z-index: -2;
}
.bonuses-cols--link:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 2px;
  width: 100%;
  border-radius: 8px;
  left: 0;
  background: linear-gradient(90deg, #22EC7E 0%, #95E566 100%);
  z-index: -1;
}
.bonuses-cols--right {
  display: flex;
  gap: 20px;
}
.bonuses-cols--item {
  width: 160px;
  padding: 0 13px 12px;
  border-radius: 10px;
  background: #343A3A;
  position: relative;
  overflow: hidden;
}
.bonuses-cols--item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bonuses-cols--item-col {
  position: relative;
  text-align: center;
}
.bonuses-cols--item-icon {
  position: absolute;
  width: 26px;
  height: 24px;
  top: 10px;
  left: -3px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.bonuses-cols--item-image {
  margin-bottom: 2px;
}
.bonuses-cols--item-image img {
  display: block;
  width: 100%;
  height: auto;
}
.bonuses-cols--item-title {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.bonuses-cols--item-link {
  display: block;
  margin: 0 2px;
  color: #B3BEC1 !important;
  border-radius: 8px;
  background: #2C3031;
  line-height: 1.2;
  font-size: 14px;
  padding: 7px 5px;
  font-weight: 700;
  text-decoration: none !important;
}
@media (max-width: 1024px) {
  .bonuses-cols {
    padding: 20px 15px 15px;
    flex-direction: column;
    text-align: center;
  }
  .bonuses-cols--right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .bonuses-cols--item {
    width: auto;
  }
}

body.theme-light .bonuses-cols {
  background: linear-gradient(94.23deg, #EFF8B5 3.72%, #FFFFFF 103.38%);
}
body.theme-light .bonuses-cols--left {
  color: #171919;
}
body.theme-light .bonuses-cols--item {
  background: #fff;
}
body.theme-light .bonuses-cols--item-title {
  color: #171919;
}
body.theme-light .bonuses-cols--item-link {
  background: #FFFFFF;
  color: #546262 !important;
}

.icon-text--item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.icon-text--img {
  width: 63px;
  min-width: 63px;
  height: 63px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.icon-text--title {
  font-size: 18px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  margin-bottom: 9px;
}
.icon-text--subtitle {
  line-height: 1.2;
}

body.theme-light .icon-text--title {
  color: #171919;
}

.cols-content {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 60px;
}
.cols-content--item {
  border: 1px solid #2F3232;
  border-radius: 12px;
  background: rgba(32, 34, 34, 0.5);
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  padding: 20px 20px 30px;
  width: calc(33.33% - 30px);
}
.cols-content--item-title {
  font-size: 22px;
  line-height: 1;
  color: #fff;
  font-weight: 900;
  margin-bottom: 20px;
}
.cols-content--item-title-number {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
}
.cols-content--item-title-number span {
  min-width: 48px;
  width: 48px;
  height: 48px;
  background: #1B1D20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #23EE88;
}
.cols-content--inner {
  font-size: 14px;
}
.cols-content--inner p:last-child {
  margin-bottom: 0;
}
.cols-content--inner p:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .cols-content {
    gap: 15px;
  }
  .cols-content--item {
    width: 100% !important;
    padding: 15px;
  }
  .cols-content--item-title-number {
    margin-bottom: 15px;
  }
}

body.theme-light .cols-content--item-title {
  color: #171919;
}
body.theme-light .cols-content--item {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
}
body.theme-light .cols-content--item-title-number {
  color: #171919;
}
body.theme-light .cols-content--item-title-number span {
  background: rgb(235, 242, 243);
}

.link-app {
  display: flex;
  justify-content: flex-start;
}
.link-app--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 31px;
  border-radius: 6px;
  background: #33393A;
  text-decoration: none !important;
}
.link-app--icon svg {
  display: block;
}
.link-app--top {
  font-size: 12px;
  line-height: 1.25;
  color: #98A7B5;
}
.link-app--bottom {
  font-size: 14px;
  line-height: 0.9;
  color: #fff;
  font-weight: 900;
}

body.theme-light .link-app--top {
  color: #546262;
}
body.theme-light .link-app--bottom {
  color: #171919;
}
body.theme-light .link-app--btn {
  background: #E2E4E4;
}
body.theme-light .link-app--btn svg,
body.theme-light .link-app--btn path {
  fill: #171919;
}

.block-steps {
  margin: 20px 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.block-steps--item {
  border: 1px solid #2F3232;
  border-radius: 12px;
  background: rgba(32, 34, 34, 0.5);
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  padding: 10px;
}
.block-steps--image {
  margin-bottom: 12px;
}
.block-steps--title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}
.block-steps--title span {
  width: 39px;
  min-width: 39px;
  height: 39px;
  background: #1B1D20;
  color: #23EE88;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .block-steps {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .block-steps--item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

body.theme-light .block-steps--item {
  border-color: #EBF2F3;
  background: rgba(255, 255, 255, 0.5);
}
body.theme-light .block-steps--title {
  color: #171919;
}
body.theme-light .block-steps--title span {
  background: #EBF2F3;
}

.posts-slider {
  padding: 60px 0;
  position: relative;
}
.posts-slider--bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1A1C1F;
  background-image: url("../../images/slider-bg.svg");
  background-size: cover;
  background-position: center;
}
.posts-slider--init {
  position: relative;
  overflow: hidden;
}
.posts-slider--init .swiper-slide {
  height: auto;
}
.posts-slider--item {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: block;
  background-color: #2C3031;
  color: #fff !important;
  text-decoration: none !important;
  height: 100%;
}
.posts-slider--item-img {
  position: relative;
  background-size: cover;
  background-position: center;
  padding-top: 68%;
}
.posts-slider--cat {
  position: absolute;
  text-decoration: none !important;
  left: 20px;
  top: 20px;
  color: #fff !important;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  padding: 9px 20px;
  background-color: rgba(113, 77, 212, 0.9);
  border-radius: 50px;
}
.posts-slider--info {
  padding: 20px 18px;
}
.posts-slider--title {
  margin-bottom: 0 !important;
}
.posts-slider--item-title {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 10px;
}
.posts-slider--link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #313738;
  color: #fff !important;
  border-radius: 8px;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1.21;
  font-weight: 600;
  padding: 8.5px 12px;
}
.posts-slider--link svg {
  width: 14px;
}
.posts-slider--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.posts-slider--right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.posts-slider--nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.posts-slider--nav button {
  position: initial;
  background: #313738;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0;
  margin: 0;
}
.posts-slider--nav button svg {
  width: 14px;
  height: auto;
}
.posts-slider--nav button:after {
  display: none;
}
.posts-slider--bottom {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  color: #98A7B5;
  line-height: 1;
  font-size: 12px;
  font-weight: 400;
}

body.theme-light .posts-slider--bg {
  background-color: #fff;
}
body.theme-light .posts-slider--item {
  background: #F2F2F2;
}
body.theme-light .posts-slider--item-title {
  color: #171919;
}
body.theme-light .posts-slider--bottom {
  color: #546262;
}
body.theme-light .posts-slider--bottom svg,
body.theme-light .posts-slider--bottom path {
  fill: #546262;
}
body.theme-light .posts-slider--link {
  background: #E2E4E4;
  color: #171919 !important;
}
body.theme-light .posts-slider--link svg,
body.theme-light .posts-slider--link path {
  fill: #171919;
}
body.theme-light .posts-slider--nav button {
  background: #E2E4E4;
  color: #171919;
}
body.theme-light .posts-slider--nav button svg,
body.theme-light .posts-slider--nav button path {
  fill: #171919;
}

.faq-list {
  background: #2C3031;
  padding: 20px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 12px;
}
.faq-list__item {
  margin-bottom: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}
.faq-list__text {
  margin: 0 !important;
}
.faq-list__body {
  display: none;
  padding-top: 12px;
}
.faq-list__body p {
  margin: 0 !important;
}
.faq-list__label {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 0 !important;
}
.faq-list__label:hover {
  cursor: pointer;
}
.faq-list__label.active + div {
  display: block;
}
.faq-list__label.active span {
  transform: rotate(90deg);
}
.faq-list__label span {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #313738;
  transform: rotate(0);
  transition: all 0.2s ease-out;
}

body.theme-light .faq-list {
  background: #fff;
  color: #546262;
}
body.theme-light .faq-list__label {
  color: #171919;
}
body.theme-light .faq-list__label span {
  background: #EEF0F0;
}
body.theme-light .faq-list__label span svg,
body.theme-light .faq-list__label span path {
  fill: #171919;
}

.toc {
  padding: 30px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  margin: 30px 0;
}
.toc--title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #fff;
}
.toc--items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}
.toc--item {
  border: 1px solid #1BC35F;
  border-radius: 32px;
  color: #fff !important;
  padding: 10px 28px;
  font-weight: 900 !important;
  font-size: 13px;
}

.header--bottom-hide {
  display: none;
}
.header--menu-btn {
  display: none;
}
.header--langs {
  position: relative;
  width: 38px;
  height: 38px;
  background: #2C3031;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header--langs:hover .header--langs-list {
  display: block;
}
.header--langs-list {
  position: absolute;
  top: 100%;
  right: 0;
  padding: 20px 10px !important;
  list-style: none !important;
  background: #2C3031;
  z-index: 100;
  min-width: 150px;
  display: none;
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .header--langs-list {
    right: auto;
    left: 0;
  }
}
.header--langs-list a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 12px;
}
.header--row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header--right {
  display: flex;
  gap: 12px;
}
.header--links {
  display: flex;
  gap: 12px;
  align-items: center;
}
.header--switcher {
  padding: 2px;
  background: #252829;
  border-radius: 8px;
  display: flex;
}
.header--switcher span {
  display: none;
}
.header--switcher button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  box-shadow: none;
  border-radius: 8px;
}
.header--switcher button svg,
.header--switcher button path {
  fill: #B3BEC1;
}
.header--switcher button.active {
  background: #41494A;
}
.header--switcher button.active svg,
.header--switcher button.active path {
  fill: #fff;
}
.header--bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 0;
}
.header--menu-btn {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #1E2121;
}
.header--menu .submenu-toggle {
  background: transparent;
  display: flex;
  width: 24px;
  height: 25px;
  padding: 0;
  border: none;
  position: relative;
  transform: rotate(180deg);
}
.header--menu .menu > li {
  padding: 7px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.header--menu li {
  position: relative;
}
.header--menu li.menu-item-has-children {
  padding-right: 14px;
}
@media (min-width: 1025px) {
  .header--menu li.menu-item-has-children:hover > .submenu-toggle {
    transform: rotate(0);
  }
}
@media (min-width: 1025px) {
  .header--menu li.menu-item-has-children:hover > .sub-menu {
    display: flex;
  }
}
.header--menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px 20px;
  border-radius: 8px;
  background: #252829;
  z-index: 10;
  flex-direction: column;
  gap: 10px;
}
.header--menu .sub-menu a {
  white-space: nowrap;
}
.header--menu .menu {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header--menu a {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  line-height: 1.21;
}
.header--menu a:hover {
  color: #1BC35F;
}
@media (max-width: 1024px) {
  .header {
    background: #2C3031;
    position: relative;
    margin-bottom: 30px;
  }
  .header--row {
    border-bottom: none;
  }
  .header--bottom {
    display: none;
  }
  .header--logo {
    width: 121px;
  }
  .header--menu-btn {
    display: flex;
  }
  .header--right {
    gap: 9px;
  }
  .header--links a {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header--bottom {
    position: absolute;
    height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 30px 0 100px;
    width: 100%;
    top: 70px;
    z-index: 100;
    background: #202222;
  }
  .header--bottom-hide {
    display: block;
  }
  .header--hide-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  .header--bottom-row {
    display: flex;
    flex-direction: column;
  }
  .header--switcher {
    width: 100%;
    background: #2C3031;
  }
  .header--switcher span {
    display: inline-block;
    color: #B3BEC1;
    font-weight: 700;
    font-size: 14px;
  }
  .header--switcher button {
    width: 50%;
    gap: 10px;
  }
  .header--switcher button.active span {
    color: #fff;
  }
  .header--langs {
    background: #2C3031;
  }
  .header--menu-wrap {
    width: 100%;
  }
  .header--menu-wrap .menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .header--menu-wrap .menu > li {
    padding: 10px;
    background: #313738;
    border-radius: 8px;
    display: flex;
  }
  .header--menu-wrap .menu > li > a {
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .header--menu-wrap li {
    width: 100%;
  }
  .header--menu-wrap li.menu-item-has-children:after {
    display: none;
  }
  .header--menu-wrap li.menu-item-has-children > a {
    position: relative;
  }
  .header--menu-wrap li.menu-item-has-children.active {
    background: #3D4646;
    border-radius: 8px;
  }
  .header--menu-wrap li.menu-item-has-children.active .submenu-toggle {
    transform: rotate(0);
  }
  .header--menu-wrap li.menu-item-has-children.active .sub-menu {
    padding: 7px 0;
    background: transparent;
    position: relative;
    top: initial;
    gap: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .header--menu-wrap a {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 900;
    padding: 13px 10px;
    display: block;
  }
  .header--menu-wrap a:hover {
    color: #fff;
  }
}

@media (max-width: 1024px) {
  .body--inner.-toggle .header--bottom {
    display: block;
  }
}
body.theme-light .header--row {
  border-bottom-color: rgba(23, 25, 25, 0.2);
}
body.theme-light .header--switcher {
  background: #F8F8F8;
}
body.theme-light .header--switcher button.active {
  background: #FFFFFF;
}
body.theme-light .header--switcher button.active span {
  color: #171919;
}
body.theme-light .header--switcher button.active svg,
body.theme-light .header--switcher button.active path {
  fill: #171919;
}
body.theme-light .header--switcher button svg,
body.theme-light .header--switcher button path {
  fill: #A7B0B0;
}
body.theme-light .header--langs {
  background: #F8F8F8;
}
body.theme-light .header--menu a {
  color: #171919;
}
body.theme-light .header--menu .sub-menu a {
  color: #fff;
}
@media (max-width: 1024px) {
  body.theme-light .header {
    background: #FFFFFF;
  }
  body.theme-light .header--menu-btn {
    background: #EEF0F0;
  }
  body.theme-light .header--bottom {
    background: #F2F2F2;
  }
  body.theme-light .header--menu-wrap .sub-menu a {
    color: #171919;
  }
  body.theme-light .header--menu-wrap .menu > li > a {
    background: #fff;
  }
  body.theme-light .header--menu-wrap li.menu-item-has-children {
    background: #fff;
  }
  body.theme-light .header--menu-wrap li.menu-item-has-children > a:after {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='24' width='24' height='24' rx='4' transform='rotate(90 24 0)' fill='%23F2F2F2'/%3E%3Cpath d='M15.182 10.6465C15.0882 10.5527 14.9611 10.5001 14.8285 10.5001C14.6959 10.5001 14.5687 10.5527 14.475 10.6465L12 13.1215L9.52498 10.6465C9.43067 10.5554 9.30437 10.505 9.17328 10.5061C9.04218 10.5073 8.91677 10.5599 8.82407 10.6526C8.73136 10.7453 8.67878 10.8707 8.67764 11.0018C8.6765 11.1329 8.7269 11.2592 8.81798 11.3535L11.6465 14.182C11.7402 14.2757 11.8674 14.3284 12 14.3284C12.1326 14.3284 12.2597 14.2757 12.3535 14.182L15.182 11.3535C15.2757 11.2597 15.3284 11.1326 15.3284 11C15.3284 10.8674 15.2757 10.7402 15.182 10.6465Z' fill='%23546262'/%3E%3C/svg%3E%0A");
  }
}

.footer {
  margin-top: 60px;
}
.footer--top {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  margin-bottom: 30px;
}
.footer--logo {
  margin-bottom: 15px;
}
.footer--menus {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer--menu-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
  color: #fff;
  margin-bottom: 20px;
}
.footer--menu ul {
  display: flex;
  flex-direction: column;
}
.footer--menu a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: #B3BEC1;
  line-height: 2;
}
.footer--bottom {
  font-size: 13px;
  color: #B3BEC1;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 30px;
}
.footer--bottom a {
  color: #B3BEC1;
  font-weight: 300;
}
.footer--menu-bottom ul {
  display: flex;
  gap: 54px;
  align-items: center;
}
@media (max-width: 1024px) {
  .footer--menus {
    flex-direction: column;
  }
  .footer--bottom {
    flex-direction: column-reverse;
  }
  .footer--menu-bottom ul {
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer--copyright {
    text-align: center;
  }
}

body.theme-light .footer {
  background: #FFFFFF;
}
body.theme-light .footer--top {
  border: none;
}
body.theme-light .footer--menu-title {
  color: #171919;
}
body.theme-light .footer--menu a {
  color: #546262;
}
body.theme-light .footer--menus {
  border-bottom-color: rgba(23, 25, 25, 0.2);
}
body.theme-light .footer--bottom {
  color: #656870;
}
body.theme-light .footer--bottom a {
  color: #656870;
}

html.-toggle,
body.-toggle {
  overflow: hidden;
}

.body--inner {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
  min-height: 100vh;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  background: #1E2121;
}
.button--border {
  display: inline-block;
  border: 1px solid #354740;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
  font-weight: 900;
  padding: 10px 28px;
}

.button--green {
  background: transparent;
  border-radius: 8px;
  color: #000 !important;
  text-decoration: none !important;
  font-weight: 900;
  font-size: 14px;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  height: auto;
  padding: 10px 28px;
  text-align: center;
}
.button--green:hover {
  color: #fff;
}
.button--green:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: 8px;
  left: 0;
  background: #1BC35F;
  z-index: -2;
}
.button--green:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 2px;
  width: 100%;
  border-radius: 8px;
  left: 0;
  background: linear-gradient(90deg, #22EC7E 0%, #95E566 100%);
  z-index: -1;
}

.socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #252829;
}

.light-only {
  display: none;
}

body.theme-light {
  background: #F2F2F2;
  color: #171919;
}
body.theme-light .dark-only {
  display: none !important;
}
body.theme-light .light-only {
  display: initial !important;
}
body.theme-light .button--border {
  color: #171919;
  background: #F2F2F2;
  border-color: #EBECEC;
}
body.theme-light .socials a {
  background: #F8F8F8;
}
body.theme-light .socials a svg,
body.theme-light .socials a path {
  fill: #546262;
}

.container {
  width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  max-width: 100%;
}

.land--main {
  overflow: hidden;
}

.land--content {
  color: #B3BEC1;
  line-height: 1.5;
}
.land--content a {
  color: #23EE88;
  font-weight: 700;
}
.land--content .wp-block-image {
  margin: 30px 0;
}
.land--content .wp-block-image figure {
  display: flex;
}
.land--content .wp-block-image figure.aligncenter {
  justify-content: center;
}
.land--content .wp-block-image figure.alignright {
  justify-content: flex-end;
}
.land--content .wp-block-table {
  margin: 40px 0 60px;
  background-color: #2C3031;
  padding: 0 10px 10px 10px;
  border-radius: 12px;
  overflow-x: auto;
}
.land--content .wp-block-table table {
  border-spacing: 0;
  width: 100%;
}
.land--content .wp-block-table table tbody tr:nth-child(even) td {
  background: #1E2121;
}
.land--content .wp-block-table table tbody tr:nth-child(even) td:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.land--content .wp-block-table table tbody tr:nth-child(even) td:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.land--content .wp-block-table table tbody tr td {
  background: transparent;
  color: #B3BEC1 !important;
  padding: 10px;
  border: none !important;
}
.land--content .wp-block-table table tbody tr td strong {
  color: #fff !important;
  font-weight: 700;
}
.land--content .wp-block-columns {
  margin-bottom: 50px;
  gap: 40px;
  justify-content: center;
}
.land--content .wp-block-columns.are-vertically-aligned-center {
  align-items: center;
}
.land--content .wp-block-columns .wp-block-image {
  margin-bottom: 0;
}
.land--content .wp-block-columns p:last-child {
  margin-bottom: 0;
}
.land--content p {
  margin-bottom: 20px;
}
.land--content p strong {
  font-weight: 700;
  color: #fff;
}
.land--content ul strong,
.land--content ol strong {
  font-weight: 700;
  color: #fff;
}
.land--content ol {
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  counter-reset: num;
}
.land--content ol li {
  padding-left: 18px;
  list-style: none;
  position: relative;
}
.land--content ol li:not(:last-child) {
  margin-bottom: 10px;
}
.land--content ol li:before {
  content: counter(num);
  counter-increment: num;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  left: 0;
  line-height: 1.3;
  position: absolute;
  color: #23EE88;
  top: 2px;
}
.land--content h2 {
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
  text-transform: initial;
  margin-top: 60px;
  margin-bottom: 20px;
}
.land--content h2:first-child {
  margin-top: 0;
}
.land--content h2 span {
  color: #1BC35F;
}
.land--content h3 {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-transform: initial;
  margin-top: 40px;
  margin-bottom: 20px;
}
.land--content h3:first-child {
  margin-top: 0;
}
.land--content h3 span {
  color: #1BC35F;
}
.land--content .has-text-align-center {
  text-align: center;
}
.land--content .wp-block-button__link {
  background: transparent;
  border-radius: 8px;
  color: #000 !important;
  text-decoration: none !important;
  font-weight: 900;
  font-size: 14px;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  height: auto;
  padding: 10px 28px;
  text-align: center;
}
.land--content .wp-block-button__link:hover {
  color: #fff;
}
.land--content .wp-block-button__link:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: 8px;
  left: 0;
  background: #1BC35F;
  z-index: -2;
}
.land--content .wp-block-button__link:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 2px;
  width: 100%;
  border-radius: 8px;
  left: 0;
  background: linear-gradient(90deg, #22EC7E 0%, #95E566 100%);
  z-index: -1;
}
.land--content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 20px;
}
.land--content ul li {
  list-style: disc;
}
.land--content ul li::marker {
  color: #23EE88;
}

.land--content ul li ul li::before {
  display: none;
}

.land--content ol li ul li::before {
  display: none;
}

body.theme-light .land--content {
  color: #546262;
}
body.theme-light .land--content h1, body.theme-light .land--content h2, body.theme-light .land--content h3, body.theme-light .land--content h4, body.theme-light .land--content h5, body.theme-light .land--content h6 {
  color: #171919;
}
body.theme-light ul strong,
body.theme-light ol strong {
  font-weight: 700;
  color: #171919;
}
body.theme-light p strong {
  color: #171919;
}
body.theme-light .wp-block-table {
  background-color: #fff;
}
body.theme-light .wp-block-table table tbody tr:nth-child(even) td {
  background: #EBF2F3;
}
body.theme-light .wp-block-table table tbody tr td {
  color: #546262 !important;
}
body.theme-light .wp-block-table table tbody tr td strong {
  color: #171919 !important;
}

@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }
  .land--content .wp-block-columns {
    flex-direction: column;
  }
}
.free-spin {
  background: #151515;
  border-radius: 12px 0 0 12px;
  border-width: 1px;
  border-style: solid;
  border-color: #2F3232;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  padding: 20px;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}
.free-spin.-toggle {
  transform: translateY(-50%);
}
.free-spin--img {
  margin-bottom: 10px;
}
.free-spin--img img {
  height: auto;
}
.free-spin--close {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #282B2B;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.free-spin--link {
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: center;
  background: linear-gradient(90deg, #22EC7E 0%, #95E566 100%);
  color: #000;
  font-size: 15px;
  border-radius: 4px;
  font-weight: 700;
  width: 100%;
}
@media (max-width: 1024px) {
  .free-spin {
    padding: 10px;
    top: 25%;
  }
  .free-spin--close {
    width: 18px;
    height: 18px;
  }
  .free-spin--img {
    padding-left: 2px;
    padding-right: 2px;
  }
  .free-spin--img img {
    max-width: 113px;
    margin-right: auto;
    margin-left: auto;
  }
}

.to-top-btn {
  background: linear-gradient(90deg, #22EC7E 0%, #95E566 100%);
  border-radius: 50%;
  bottom: 90px;
  box-shadow: 0 4px 22px 0 rgba(27, 195, 95, 0.1882352941);
  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: 999;
}
.to-top-btn:hover {
  transform: scale(1.1);
}
.to-top-btn svg {
  width: 51px;
}
.to-top-btn.show {
  opacity: 1;
  display: flex;
}
@media (max-width: 768px) {
  .to-top-btn {
    height: 50px;
    width: 50px;
  }
}
@keyframes v-cta-pulse {
  0% {
    box-shadow: 0 4px 22px rgba(249, 206, 88, 0.15);
  }
  50% {
    box-shadow: 0 4px 22px rgba(249, 206, 88, 0.85);
  }
  to {
    box-shadow: 0 4px 22px rgba(249, 206, 88, 0.15);
  }
}
.v-cta {
  bottom: -600px;
  left: 0;
  opacity: 0;
  padding: 26px 0;
  position: fixed;
  transition: all 0.65s ease-in;
  width: 100%;
  z-index: 10000;
}
.v-cta.-toggle {
  bottom: 0;
  opacity: 1;
}
.v-cta--mobile {
  display: none;
}
.v-cta--close {
  background: url(//betting.bc.game/wp-content/plugins/v-catfish-1/dist/styles/../../img/v-close-icon.svg) no-repeat 50%;
  background-size: contain;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 35px;
  position: absolute;
  right: 0;
  top: -44px;
  transition: all 0.3s;
  width: 35px;
}
.v-cta--close:hover {
  opacity: 0.85;
}
.v-cta--container {
  grid-gap: 60px;
  align-items: center;
  display: grid;
  grid-template-columns: max-content max-content 1fr max-content;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 20px;
  position: relative;
  width: 1180px;
}
.v-cta--logo {
  max-width: 200px;
  padding: 5px;
}
.v-cta--logo img {
  height: auto;
  max-width: 100%;
}
.v-cta--rating {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.v-cta--rating-info {
  background: url(//betting.bc.game/wp-content/plugins/v-catfish-1/dist/styles/../../img/star-icon.svg) no-repeat 0;
  background-size: 18px;
  font-size: 15px;
  font-weight: 700;
  padding-left: 20px;
}
.v-cta--rating-info span {
  font-size: 22px;
}
.v-cta--rating-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.v-cta--text-col {
  text-align: center;
}
.v-cta--title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.v-cta--subtitle {
  font-size: 20px;
  font-weight: 500;
}
.v-cta--link {
  background: transparent;
  border-radius: 8px;
  color: #000 !important;
  font-weight: 900;
  font-size: 14px;
  position: relative;
  text-decoration: none !important;
  z-index: 2;
  line-height: 1.3;
  height: auto;
  padding: 10px 28px;
  text-align: center;
  align-items: center;
  animation: v-cta-pulse 3s linear infinite;
  background: initial !important;
  box-shadow: 0 4px 22px rgba(249, 206, 88, 0.15);
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 11px 21px;
  transform: scale(1);
}
.v-cta--link:hover {
  color: #fff;
}
.v-cta--link:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: 8px;
  left: 0;
  background: #CD7C27;
  z-index: -2;
}
.v-cta--link:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 2px;
  width: 100%;
  border-radius: 8px;
  left: 0;
  background: linear-gradient(90deg, #ED9438 0%, #FAD15A 100%);
  z-index: -1;
}
.v-cta--link span {
  display: block;
  height: 26px;
  width: 26px;
}
.v-cta--link:focus {
  outline: none;
}
@media (max-width: 768px) {
  .v-cta {
    background-color: transparent !important;
    padding: 10px;
  }
  .v-cta--container {
    grid-column-gap: 16px;
    grid-row-gap: 10px;
    align-items: flex-start;
    display: none !important;
    grid-template-columns: max-content 1fr;
    width: auto;
  }
  .v-cta--logo {
    align-items: center;
    display: flex;
    grid-column: 1/2;
    height: 100%;
  }
  .v-cta--logo img {
    width: 120px;
  }
  .v-cta--rating {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 6px;
    grid-column: 2/3;
    grid-row: 1;
    text-align: left;
  }
  .v-cta--rating-title {
    font-size: 10px;
    margin-bottom: 0;
  }
  .v-cta--rating-info {
    font-size: 13px;
  }
  .v-cta--rating-info span {
    font-size: 15px;
  }
  .v-cta--text-col {
    grid-column: 2/3;
    grid-row: 1;
    text-align: left;
    margin-top: 26px;
  }
  .v-cta--link-col {
    grid-column: 1/3;
    grid-row: 2;
    text-align: center;
  }
  .v-cta--title {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .v-cta--subtitle {
    font-size: 16px;
  }
  .v-cta--close {
    height: 24px;
    right: 10px;
    top: -38px;
    width: 24px;
  }
  .v-cta--mobile {
    align-items: center;
    -webkit-backdrop-filter: blur(11px);
    backdrop-filter: blur(11px);
    background: rgba(32, 34, 34, 0.5);
    border: 1px solid #2f3232;
    border-radius: 12px;
    display: grid;
    gap: 10px;
    grid-template-columns: 2fr 3fr;
    padding: 10px 34px 10px 10px;
    position: relative;
  }
  .v-cta--mobile .v-cta--mobile-logo {
    background: #191919;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 13px 18px;
  }
  .v-cta--mobile .v-cta--mobile-logo img {
    margin: 0 auto;
  }
  .v-cta--mobile .v-cta--link {
    padding: 10px;
    width: 100%;
  }
  .v-cta--mobile .v-cta--rating-title {
    color: #b3bec1;
  }
  .v-cta--mobile-close {
    align-items: center;
    background: #2c3031;
    border-radius: 6px;
    display: flex;
    height: 24px;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 24px;
  }
}
.popup-congrats {
  background-image: url(../../images/updated/popup-congrats-dark.webp);
  background-position: 50%;
  background-size: cover;
  border-radius: 0 12px 12px 0;
  color: #fff;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 50%;
  transform: translateY(-50%) translateX(calc(-15px - 100%));
  transition: all 0.3s ease-in-out;
  width: 297px;
  z-index: 10;
}
.popup-congrats.active {
  transform: translateY(-50%);
}
.popup-congrats--top {
  align-items: center;
  background: linear-gradient(80.52deg, #382746 29.18%, #26292a 53.8%);
  display: flex;
  gap: 5px;
  justify-content: space-between;
  padding: 10px 15px;
}
.popup-congrats--close {
  align-items: center;
  background: #313738;
  border-radius: 6px;
  display: flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}
.popup-congrats--title {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}
.popup-congrats--bottom {
  padding: 15px 15px 20px;
  text-align: center;
}
.popup-congrats--text, .popup-congrats--text-mobile {
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 18px;
}
.popup-congrats--text-mobile {
  display: none;
}
.popup-congrats--link {
  background: transparent;
  border-radius: 8px;
  color: #000 !important;
  font-size: 14px;
  font-weight: 900;
  height: auto;
  line-height: 1.3;
  padding: 13px 24px;
  position: relative;
  text-align: center;
  text-decoration: none !important;
  z-index: 2;
}
.popup-congrats--link:hover {
  color: #fff;
}
.popup-congrats--link:before {
  background: #1BC35F;
  bottom: 0;
  z-index: -2;
  border-radius: 8px;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.popup-congrats--link:after {
  background: linear-gradient(90deg, #22EC7E 0%, #95E566 100%);
  bottom: 2px;
  z-index: -1;
  border-radius: 8px;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (max-width: 1024px) {
  .popup-congrats {
    bottom: 18%;
    top: auto;
  }
  .popup-congrats--text {
    display: none;
  }
  .popup-congrats--text-mobile {
    display: block;
  }
}
@media (max-width: 767px) {
  .popup-congrats {
    border-radius: 12px;
    left: 15px;
    right: 15px;
    width: auto;
  }
}
.cols-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin: 20px 0 60px
}

.cols-content--item {
    -webkit-backdrop-filter: blur(11px);
    backdrop-filter: blur(11px);
    background: rgba(32,34,34,.5);
    border: 1px solid #2f3232;
    border-radius: 12px;
    padding: 20px 20px 30px;
    width: calc(33.33% - 30px)
}

.cols-content--item-title {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px
}

.cols-content--item-title-number {
    align-items: center;
    color: #fff;
    display: flex;
    font-weight: 900;
    gap: 20px;
    line-height: 1.5;
    margin-bottom: 20px
}

.cols-content--item-title-number span {
    align-items: center;
    background: #1b1d20;
    border-radius: 50%;
    color: #23ee88;
    display: flex;
    height: 48px;
    justify-content: center;
    min-width: 48px;
    width: 48px
}

.cols-content--inner {
    font-size: 14px
}

.cols-content--inner p:last-child {
    margin-bottom: 0
}

.cols-content--inner p:not(:last-child) {
    margin-bottom: 10px
}

@media (max-width: 1024px) {
    .cols-content {
        gap:15px
    }

    .cols-content--item {
        padding: 15px;
        width: 100%!important
    }

    .cols-content--item-title-number {
        margin-bottom: 15px
    }
}
.block-steps {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4,1fr);
    margin: 20px 0 60px
}

.block-steps--item {
    -webkit-backdrop-filter: blur(11px);
    backdrop-filter: blur(11px);
    background: rgba(32,34,34,.5);
    border: 1px solid #2f3232;
    border-radius: 12px;
    padding: 10px
}

.block-steps--image {
    margin-bottom: 12px
}

.block-steps--title {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    gap: 10px;
    line-height: 1
}

.block-steps--title span {
    align-items: center;
    background: #1b1d20;
    border-radius: 50%;
    color: #23ee88;
    display: flex;
    font-size: 16px;
    font-weight: 900;
    height: 39px;
    justify-content: center;
    min-width: 39px;
    width: 39px
}

@media (max-width: 1024px) {
    .block-steps {
        gap:15px;
        grid-template-columns: repeat(1,1fr)
    }

    .block-steps--item {
        align-items: center;
        display: flex;
        flex-direction: column
    }
}

body.theme-light .block-steps--item {
    background: hsla(0,0%,100%,.5);
    border-color: #ebf2f3
}

body.theme-light .block-steps--title {
    color: #171919
}

body.theme-light .block-steps--title span {
    background: #ebf2f3
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.details-container {
    /*background-color: #fff;*/
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

details {
    border: none;
    /*background-color: #fff;*/
    margin: 20px 0;
    
}

details summary {
    cursor: pointer;
    padding: 20px 30px;
    background-color: #2C3031;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    border: none;
    outline: none;
    transition: all 1s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    border-radius: 25px;
}

details summary:hover {
    /*background-color: #e9ecef;*/
}

details[open] {
    animation: slideDown 1s ease-out;
}

details[open] summary {
    /*background-color: #e3f2fd;*/
    color: #fff;
    border-bottom: 2px solid #1BC35F;
}

details summary::marker,
details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #6c757d;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: '−';
    /*color: #1976d2;*/
}

.details-content {
    
}

