/* stylelint-disable */

/* stylelint-disable */

/* stylelint-disable scss/operator-no-unspaced */

/* stylelint-disable scss/dollar-variable-colon-newline-after */

html {
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  font-size: 62.5%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

button {
  border: none;
  text-align: left;
  background-color: transparent;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

input {
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.focus-visible {
  outline: auto 1px;
}

.ios .lock {
  position: relative;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:root {
  --font-family: "Noto Sans", sans-serif;
  --second-family: "Roboto", sans-serif;
  --font-weight: 400;
  --content-width: 118rem;
  --container-offset: 1.5rem;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --transition: 0.3s;
  --clr-default-100: #fff;
  --clr-default-400: #181818;
  --clr-default-900: #000;
}

body {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: #100724;
  background: #fdf8ff;
}

body.lock {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  overscroll-behavior: none;
}

body *::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body *::-webkit-scrollbar-thumb {
  background: #ffd400;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-thumb {
  background: #ffd400;
}

.wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  min-width: 32rem;
  min-height: 100%;
}

.wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.wrapper[data-overlay=true]::before {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--transition), visibility var(--transition);
}

main {
  flex-grow: 1;
}

.container {
  margin-inline: auto;
  padding-inline: var(--container-offset);
  width: 100%;
  max-width: var(--container-width);
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.subtitle {
  margin-top: 2rem;
  margin-inline: auto;
  max-width: 81rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  text-align: center;
  text-wrap: balance;
}

.subtitle span {
  font-weight: 700;
}

.gradient-top {
  position: relative;
}

.gradient-top .container {
  position: relative;
  z-index: 1;
}

.gradient-top::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 10rem;
  background: linear-gradient(180deg, #070d16 0%, rgba(7, 13, 22, 0) 100%);
}

.gradient-bottom {
  position: relative;
}

.gradient-bottom .container {
  position: relative;
  z-index: 1;
}

.gradient-bottom::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  width: 100%;
  height: 10rem;
  background: linear-gradient(0deg, #070d16 0%, rgba(7, 13, 22, 0) 100%);
}

.title {
  margin-inline: auto;
  max-width: 89.5rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.8rem, 2.1528089888rem + 2.0224719101vw, 4.6rem);
  line-height: 110%;
  text-align: center;
  text-wrap: balance;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  padding: 1.5rem 3rem;
  width: max-content;
  box-shadow: inset 0 5px 6px 0 rgba(255, 255, 255, 0.35), 0 6px 35px 0 rgba(52, 196, 91, 0.35);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  color: #fdfdfc;
  background: linear-gradient(136deg, #139436 0%, #23b74b 50.52%, #34c45b 100%);
}

.btn-secondary {
  border-radius: 10rem;
  padding: 1.5rem 3rem;
  box-shadow: inset 0 5px 6px 0 rgba(255, 255, 255, 0.35);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  color: #fdfdfc;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

section .btn-primary {
  min-width: 27rem;
}

.linear-item {
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  max-width: 37.3rem;
  background: linear-gradient(180deg, #ffd400 0, rgba(52, 114, 169, 0) 30%);
}

.linear-item__inner {
  display: flex;
  flex-direction: column;
  border-radius: clamp(1.3rem, 1.0123595506rem + 0.8988764045vw, 2.1rem);
  padding: clamp(2rem, 1.4606741573rem + 1.6853932584vw, 3.5rem);
  background-color: #070d16;
  gap: clamp(1.5rem, 1.1764044944rem + 1.0112359551vw, 2.4rem);
}

.linear-item__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
  color: #ffd400;
}

.linear-item__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.linear-item__text span {
  font-weight: 700;
}

.linear-item__list {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
}

.linear-item__list li {
  display: flex;
  gap: clamp(1rem, 0.6404494382rem + 1.1235955056vw, 2rem);
}

.linear-item__list li::before {
  content: "";
  display: flex;
  min-width: 3rem;
  min-height: 3rem;
  max-width: 3rem;
  max-height: 3rem;
  background-image: url("../img/index/linear-item-checkmark.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.linear-item__list li span {
  font-weight: 700;
}

.linear-item__list li:not(:first-child) {
  margin-top: 2rem;
}

.table {
  table-layout: fixed;
  overflow: hidden;
  border-collapse: collapse;
  width: 100%;
}

.table span {
  font-weight: 700;
}

.table-overflow {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  border-style: solid;
  border-width: 0.3rem;
  border-color: #9a6eff;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 3.2rem 2.4rem;
  background: #f3eef8;
}

.table td {
  vertical-align: top;
  padding: 1.65rem 1.2rem;
  width: 50%;
  /* half */
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align-last: left;
}

.table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.5);
}

.table tr td:first-child {
  border-top-left-radius: 1.2rem;
  border-bottom-left-radius: 1.2rem;
}

.table tr td:last-child {
  border-top-right-radius: 1.2rem;
  border-bottom-right-radius: 1.2rem;
}

.table tr td:last-of-type {
  padding-right: 5rem;
}

.list-primary > li {
  display: flex;
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
}

.list-primary > li span {
  font-weight: 700;
}

.list-primary > li:not(:first-child) {
  margin-top: 2rem;
}

.list-primary > li::before {
  content: "";
  display: flex;
  margin-right: 2rem;
  min-width: 2rem;
  min-height: 2rem;
  max-width: 2rem;
  max-height: 2rem;
  background-image: url("../img/list-ico-1.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.list-check > li {
  display: flex;
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
}

.list-check > li span {
  font-weight: 700;
}

.list-check > li:not(:first-child) {
  margin-top: 2rem;
}

.list-check > li::before {
  content: "";
  display: flex;
  margin-right: 2rem;
  min-width: 3rem;
  min-height: 2.9rem;
  max-width: 3rem;
  max-height: 2.9rem;
  background-image: url("../img/checkmark.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.list-num li {
  display: flex;
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
}

.list-num li span {
  font-weight: 700;
}

.list-num li a {
  margin-inline: 0.5rem;
  text-decoration: underline;
}

.list-num li:not(:first-child) {
  margin-top: 2rem;
}

.list-num li div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  border-radius: 100%;
  min-width: 3.7rem;
  min-height: 3.7rem;
  max-width: 3.7rem;
  max-height: 3.7rem;
  box-shadow: 0 6px 35px 0 rgba(10, 184, 164, 0.35), inset 0 5px 6px 0 rgba(255, 255, 255, 0.35);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 150%;
  color: #070d16;
  background-color: #ffd400;
}

.list-dot > li {
  display: flex;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
}

.list-dot > li span {
  font-weight: 700;
}

.list-dot > li:not(:first-child) {
  margin-top: 1rem;
}

.list-dot > li::before {
  content: "";
  display: flex;
  margin-top: 1.3rem;
  margin-right: 0.8rem;
  border-radius: 100%;
  min-width: 0.3rem;
  min-height: 0.3rem;
  max-width: 0.3rem;
  max-height: 0.3rem;
  background-color: #100724;
}

.menu__list {
  display: flex;
  align-items: center;
}

.menu__item:not(:last-child) {
  margin-right: 1rem;
}

.menu__link {
  position: relative;
  padding: 1rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  color: #fff;
}

.menu__link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 105%;
  display: inline-block;
  width: 0;
  height: 0.1rem;
  background-color: #fff;
  transform: translateX(-50%);
  transition: width var(--transition);
}

.menu__link:hover::before {
  width: 100%;
}

.logo {
  max-width: 18rem;
}

.burger {
  display: none;
}

.header {
  padding-block: 3rem;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer {
  padding-block: 37rem 5.5rem;
}

.footer__main .btn-primary {
  margin-top: 4rem;
  margin-inline: auto;
  width: 100%;
  max-width: 29rem;
}

.footer__text {
  margin-top: 2rem;
  margin-inline: auto;
  max-width: 75rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
}

.footer__text p {
  margin-top: 2rem;
}

.footer__caption {
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
}

.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.footer-menu__list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-menu__link {
  display: flex;
  padding: 1rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  color: #100724;
}

.footer__block {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer .btn-secondary {
  border: 1px solid rgba(16, 7, 36, 0.2);
  color: #100724;
}

.faq {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.faq .container {
  position: relative;
  z-index: 1;
  max-width: 100rem;
}

.faq .title {
  text-align: center;
}

.faq__list {
  margin-top: 6rem;
}

.faq__title {
  position: relative;
  padding: clamp(1rem, 0.2808988764rem + 2.2471910112vw, 3rem) clamp(6rem, 4.5617977528rem + 4.4943820225vw, 10rem) clamp(1rem, 0.2808988764rem + 2.2471910112vw, 3rem) clamp(1rem, 0.2808988764rem + 2.2471910112vw, 3rem);
  width: 100%;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 130%;
  transition: padding-bottom var(--transition);
  cursor: pointer;
}

.faq__title::before {
  content: "";
  position: absolute;
  right: 5rem;
  top: 48%;
  width: 1.3rem;
  height: 1.3rem;
  background-image: url("../img/index/faq-arrow.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform var(--transition);
}

.faq__wrap {
  border-radius: clamp(1.4rem, 1.1123595506rem + 0.8988764045vw, 2.2rem);
  background-color: #f3eef8;
}

.faq__item-body {
  overflow: hidden;
  max-height: 0;
  box-sizing: content-box;
  line-height: 160%;
  transition: max-height var(--transition);
}

.faq__item-body p {
  margin-top: 0;
  padding: 0 clamp(8rem, 7.2808988764rem + 2.2471910112vw, 10rem) clamp(1rem, 0.2808988764rem + 2.2471910112vw, 3rem) clamp(1rem, 0.2808988764rem + 2.2471910112vw, 3rem);
}

.faq__item:not(:last-child) {
  margin-bottom: 3rem;
  transition: margin var(--transition);
}

.faq__item--active .faq__title {
  padding-bottom: 2.4rem;
}

.faq__item--active .faq__title::before {
  transform: rotate(-63deg);
}

.orange-linear {
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.4rem;
  background-color: #9a6eff;
}

.hero {
  position: relative;
  padding-block: 8.8rem clamp(7rem, 1.804494382rem + 16.2359550562vw, 21.45rem);
}

.hero-bg {
  background-image: url("../img/index/hero-bg.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.hero__title {
  max-width: 66rem;
  font-weight: 700;
  font-size: clamp(3.6rem, 2.8808988764rem + 2.2471910112vw, 5.6rem);
  line-height: 110%;
  color: #fff;
}

.hero__text {
  max-width: 62rem;
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.hero__text p:not(:first-child) {
  margin-top: 2rem;
}

.hero__img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(10rem, -50%);
}

.hero__img img {
  max-width: inherit;
}

.security {
  padding-block: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.security__block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5rem;
  gap: 3rem;
}

.law {
  position: relative;
  overflow: hidden;
  margin-inline: 1.5rem;
  border-radius: 2rem;
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.law_app {
  background: none;
}

.law__wrapper {
  position: relative;
  z-index: 2;
}

.law__block {
  display: flex;
  margin-top: 5rem;
  gap: 3rem;
}

.law-linear {
  display: flex;
  flex-grow: 1;
  flex-basis: 34%;
  flex-direction: column;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  background: linear-gradient(180deg, #9a6eff 0, rgba(52, 114, 169, 0) 78%);
}

.law-linear__inner {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  border-radius: clamp(1.3rem, 1.0123595506rem + 0.8988764045vw, 2.1rem);
  padding: clamp(1.5rem, 0.7808988764rem + 2.2471910112vw, 3.5rem);
  background-color: #fdf8ff;
}

.law-linear__title {
  display: flex;
  align-items: flex-start;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
  color: #9a6eff;
  gap: 1.5rem;
}

.law-linear__title img {
  border-radius: 100%;
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.35), 0 4px 25px 0 rgba(154, 110, 255, 0.35);
}

.law-linear__text {
  margin-top: 2.4rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
}

.law-linear__list li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
}

.law-linear__list li:not(:first-child) {
  margin-top: 2rem;
}

.law-linear__list li span {
  font-weight: 700;
}

.info {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.info_board .info-block::before,
.info_vip .info-block::before {
  display: none;
}

.info-block {
  position: relative;
  margin-top: 5rem;
}

.info-block::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  width: 110%;
  background-image: url("../img/index/info-bg.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  aspect-ratio: 1242/755;
}

.exclusive {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.exclusive__wrapper {
  display: flex;
  align-items: center;
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
  gap: 5rem;
}

.exclusive__wrapper_reverse {
  flex-direction: row-reverse;
}

.exclusive__info {
  max-width: 63rem;
}

.exclusive__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.8rem, 2.5842696629rem + 0.6741573034vw, 3.4rem);
  line-height: 110%;
}

.exclusive__list li {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
  gap: 2rem;
}

.exclusive__list li span {
  font-weight: 700;
}

.exclusive__list li::before {
  content: "";
  display: flex;
  min-width: 2.8rem;
  min-height: 2.8rem;
  max-width: 2.8rem;
  max-height: 2.8rem;
  background-image: url("../img/index/exclusive-plus.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cons {
  position: relative;
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.cons .container {
  display: flex;
  flex-direction: column;
}

.cons__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
  gap: 2rem;
}

.cons__item {
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: clamp(1.5rem, 0.7808988764rem + 2.2471910112vw, 3.5rem);
  height: 100%;
  background-color: #fff;
}

.cons__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.4rem, 1.8247191011rem + 1.797752809vw, 4rem);
  line-height: 110%;
}

.cons__list {
  margin-top: clamp(1.5rem, 0.9606741573rem + 1.6853932584vw, 3rem);
}

.cons__list li {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  gap: clamp(1rem, 0.8202247191rem + 0.5617977528vw, 1.5rem);
}

.cons__list li:not(:first-child) {
  margin-top: 2rem;
}

.cons__list li::before {
  content: "";
  display: flex;
  min-width: 3rem;
  min-height: 3rem;
  max-width: 3rem;
  max-height: 3rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cons__plus li::before {
  background-image: url("../img/index/cons-plus.svg");
}

.cons__minus li::before {
  background-image: url("../img/index/cons-minus.svg");
}

.cons__img {
  display: flex;
}

.cons__img picture {
  display: flex;
}

.cons__img img {
  position: absolute;
  right: 50%;
  bottom: 0;
}

.cons-green {
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  background: linear-gradient(125deg, #3472a9 0%, rgba(49, 206, 169, 0) 100%);
}

.cons-green > div {
  background: #161834;
}

.cons-red {
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  background: linear-gradient(125deg, rgb(186, 62, 62) 0%, rgba(186, 62, 62, 0) 100%);
}

.cons-red > div {
  background: #341617;
}

.cons-column {
  position: relative;
  padding-block: clamp(4rem, -2.4719101124rem + 20.2247191011vw, 22rem) clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.cons-column__wrapper {
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
  margin-left: auto;
  max-width: 57.5rem;
}

.cons-column__flex {
  display: flex;
  flex-direction: column;
}

.cons-column__item {
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: clamp(1.5rem, 0.7808988764rem + 2.2471910112vw, 3.5rem);
  height: 100%;
  background: #f3eef8;
}

.cons-column__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.4rem, 1.8247191011rem + 1.797752809vw, 4rem);
  line-height: 110%;
}

.cons-column__list {
  margin-top: clamp(1.5rem, 0.9606741573rem + 1.6853932584vw, 3rem);
}

.cons-column__list li {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  gap: clamp(1rem, 0.8202247191rem + 0.5617977528vw, 1.5rem);
}

.cons-column__list li:not(:first-child) {
  margin-top: 2rem;
}

.cons-column__list li::before {
  content: "";
  display: flex;
  min-width: 3rem;
  min-height: 3rem;
  max-width: 3rem;
  max-height: 3rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cons-column__plus li::before {
  background-image: url("../img/index/cons-plus.svg");
}

.cons-column__minus li::before {
  background-image: url("../img/index/cons-minus.svg");
}

.cons-column__img {
  display: flex;
}

.cons-column__img picture {
  display: flex;
}

.cons-column__img img {
  position: absolute;
  right: 50%;
  bottom: 0;
}

.cons-column-green {
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  background: linear-gradient(125deg, #34c45b 0%, rgba(49, 206, 169, 0) 100%);
}

.cons-column-red {
  margin-top: 3rem;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  background: linear-gradient(125deg, #ba3e3e 0%, rgba(186, 62, 62, 0) 100%);
}

.registration {
  margin-top: 30rem;
  border-radius: 2rem;
  padding-block: 7rem;
  background: #100724;
  background-image: url("../img/index/registration-bg.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.registration-cons_transform .cons-column__block {
  transform: translateY(-20rem);
}

.registration-cons .cons-column__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.registration-cons .cons-column-red {
  margin-top: 0;
}

.registration-cons li {
  color: #100724;
}

.registration .title {
  max-width: 100%;
  color: var(--clr-default-100);
}

.registration .subtitle {
  color: #fff;
}

.registration__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
  gap: 3rem;
}

.registration__block li {
  color: #fff;
}

.registration-item {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.registration-item_reverse {
  flex-direction: row-reverse;
}

.registration-item > div {
  flex-grow: 1;
  flex-basis: 34%;
}

.registration-item__img {
  flex-grow: 1;
  flex-basis: 34%;
  overflow: hidden;
}

.registration-item__img img {
  width: 100%;
}

.registration-item__img picture {
  display: flex;
}

.registration-item__title {
  font-weight: 700;
  font-size: clamp(2.4rem, 2.1123595506rem + 0.8988764045vw, 3.2rem);
  line-height: 110%;
  color: #fff;
}

.registration-item__text {
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.registration-item__text a {
  text-decoration: underline;
  color: #fff;
}

.registration__text {
  margin-top: 5rem;
  margin-inline: auto;
  max-width: 57rem;
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.registration__text span {
  font-weight: 700;
}

.app {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.app__text {
  margin-top: 2rem;
  text-align: center;
}

.app__block {
  display: flex;
  margin-top: 5rem;
  gap: 3rem;
}

.app-item {
  display: flex;
  flex-grow: 1;
  flex-basis: 34%;
  flex-direction: column;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  background: linear-gradient(180deg, #f4525c 0, rgba(52, 114, 169, 0) 30%);
}

.app-item__inner {
  flex-grow: 1;
  border-radius: clamp(1.5rem, 1.2842696629rem + 0.6741573034vw, 2.1rem);
  padding: clamp(2rem, 1.4606741573rem + 1.6853932584vw, 3.5rem);
  background-color: #fff;
}

.app-item__title {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
  color: #f4525c;
  gap: clamp(1rem, 0.8202247191rem + 0.5617977528vw, 1.5rem);
}

.app-item__title img {
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.35), 0 4px 25px 0 rgba(244, 82, 92, 0.35);
}

.app-item__list {
  margin-top: 2.4rem;
}

.app-item__list li {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.6404494382rem + 1.1235955056vw, 2rem);
}

.app-item__list li span {
  font-weight: 700;
}

.app-item__list li:not(:first-child) {
  margin-top: 1rem;
}

.app-item__list li::before {
  content: "";
  display: flex;
  min-width: 2.8rem;
  min-height: 2.8rem;
  max-width: 2.8rem;
  max-height: 2.8rem;
  background-image: url("../img/index/exclusive-plus.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.app-warning {
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
}

.app-warning__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.8rem, 1.6561797753rem + 0.4494382022vw, 2.2rem);
  line-height: 150%;
  text-align: center;
  color: #3c2a5c;
  gap: 1rem;
}

.app-warning__text {
  margin-top: 1rem;
  margin-inline: auto;
  max-width: 68.5rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #3c2a5c;
}

.bonus {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  background-image: url("../img/index/bonus-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bonus__text {
  margin-top: 3rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: #fff;
}

.bonus .list-primary {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3rem;
  gap: 2rem;
}

.bonus .list-primary li {
  margin-top: 0;
}

.bonus .table-overflow {
  margin-top: 3rem;
}

.tournament {
  padding-top: 7rem;
  background-image: url("../img/index/casino-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.tournament_casino {
  background: none;
}

.tournament_bonus {
  background: none;
}

.tournament__wrapper {
  display: flex;
  align-items: center;
}

.tournament__wrapper .title {
  text-align: left;
}

.tournament__info {
  max-width: 57rem;
}

.tournament__text {
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.tournament__text span {
  font-weight: 700;
}

.tournament__list {
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
}

.tournament__list li {
  display: flex;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: #3c2a5c;
  gap: 2rem;
}

.tournament__list li span {
  font-weight: 700;
}

.tournament__list li:not(:first-child) {
  margin-top: 2rem;
}

.tournament__list li::before {
  content: "";
  display: flex;
  min-width: 2.8rem;
  min-height: 2.8rem;
  max-width: 2.8rem;
  max-height: 2.8rem;
  background-image: url("../img/index/exclusive-plus.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.tournament .btn-primary {
  margin-top: 4rem;
}

.slot {
  position: relative;
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  padding-bottom: 28rem;
}

.slot .table-overflow {
  position: absolute;
  left: 50%;
  bottom: -50%;
  margin-inline: 1.5rem;
  width: 100%;
  max-width: 118rem;
  transform: translateX(-50%);
}

.slot .table-overflow .table th,
.slot .table-overflow .table td {
  width: 20%;
  /* half */
}

.slot_base .table li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slot_base .table li::before {
  content: "";
  display: flex;
  border-radius: 100%;
  min-width: 0.4rem;
  min-height: 0.4rem;
  max-width: 0.4rem;
  max-height: 0.4rem;
  background-color: #3c2a5c;
}

.slot .table-overflow {
  margin-top: 5rem;
}

.slot .table th,
.slot .table td {
  width: 20%;
  /* half */
}

.live {
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  padding-block: 7rem;
  background-image: url("../img/index/live-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.live .title {
  max-width: 100%;
  color: var(--clr-default-100);
}

.live__subtitle {
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.live__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 5rem;
  margin-inline: auto;
  max-width: 58rem;
  gap: 3rem;
}

.live-item {
  display: flex;
  flex-direction: column;
  min-width: 27.5rem;
  max-width: 27.5rem;
  gap: 2rem;
}

.live-item__img {
  overflow: hidden;
  border-radius: 1rem;
}

.live-item__img picture {
  display: flex;
}

.live-item__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 150%;
  color: #fff;
}

.live-item__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: #fff;
}

.live__text {
  margin-top: 5rem;
  margin-inline: auto;
  max-width: 57rem;
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.live__text span {
  font-weight: 700;
}

.live .btn-primary {
  margin-top: 5rem;
  margin-inline: auto;
  width: 100%;
  width: max-content;
}

.text {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.text__wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.text_app {
  background-image: url("../img/app/text-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.text .title {
  margin: 0;
  max-width: 77rem;
  font-size: clamp(2.8rem, 2.008988764rem + 2.4719101124vw, 5rem);
  text-align: left;
}

.text__main {
  margin-top: 2rem;
  max-width: 71rem;
}

.text__main p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
}

.text__main p:not(:first-child) {
  margin-top: 2rem;
}

.text ul {
  margin-top: 2rem;
}

.text .btn-primary {
  width: 100%;
  max-width: 34rem;
}

.deposit {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.deposit__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
  gap: 3rem;
}

.deposit .linear-item {
  max-width: 100%;
}

.deposit_refill .subtitle {
  max-width: 110rem;
}

.deposit .table-overflow {
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
}

.support {
  padding-top: 22rem;
}

.support__inner {
  position: relative;
}

.support__inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  width: 110%;
  background-image: url("../img/index/support-rectangle.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  aspect-ratio: 1242/756;
}

.support__wrapper {
  position: relative;
  border: 4px solid var(--clr-default-100);
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: clamp(3rem, 0.4831460674rem + 7.8651685393vw, 10rem) clamp(2rem, -0.8764044944rem + 8.9887640449vw, 10rem);
  background-image: url("../img/index/support-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.support__info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 45rem;
  gap: 2rem;
}

.support .title {
  margin: 0;
  text-align: left;
  color: var(--clr-default-100);
}

.support__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.support__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.support li {
  color: #fff;
}

.support__img img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.support .btn-primary {
  width: 100%;
  max-width: 27.4rem;
}

.reviews {
  position: relative;
  padding-top: clamp(10rem, 6.404494382rem + 11.2359550562vw, 20rem);
  padding-bottom: 10rem;
}

.reviews__wrapper {
  position: relative;
  z-index: 1;
}

.reviews .title {
  text-align: center;
}

.reviews__block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.2rem;
  gap: 3rem;
}

.reviews-item {
  border-style: solid;
  border-width: 0.3rem;
  border-color: #9a6eff;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 3.2rem;
  height: 100%;
  min-height: 34.8rem;
  background-color: #f3eef8;
}

.reviews-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews-item__name {
  font-weight: 400;
  font-size: 1.6rem;
}

.reviews-item__hr {
  display: flex;
  align-items: center;
  margin-top: 1.6rem;
  gap: 1.3rem;
}

.reviews-item__hr::after {
  content: "";
  flex-grow: 1;
  border-bottom: 1px dashed rgba(16, 7, 36, 0.24);
  height: 0.1rem;
}

.reviews-item__text {
  margin-top: 2.6rem;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 171%;
}

.mark {
  position: relative;
  padding-bottom: 42rem;
}

.mark .table-overflow {
  position: absolute;
  left: 50%;
  bottom: -50%;
  margin-inline: 1.5rem;
  width: 100%;
  max-width: 118rem;
  transform: translateX(-50%);
}

.mark .table-overflow .table th,
.mark .table-overflow .table td {
  width: 20%;
  /* half */
}

.joust {
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  margin-inline: 1.5rem;
  border-radius: 2rem;
  padding-block: clamp(4rem, 2.9213483146rem + 3.3707865169vw, 7rem);
  background-image: url("../img/index/vip-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.joust .title {
  max-width: 77rem;
  color: var(--clr-default-100);
}

.joust__subtitle {
  margin-top: 2rem;
  margin-inline: auto;
  max-width: 76rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.joust__block {
  display: flex;
  align-items: center;
  margin-top: 5rem;
  gap: 5rem;
}

.joust__info {
  flex-grow: 1;
  flex-basis: 34%;
}

.joust__list li {
  display: flex;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
  gap: clamp(1rem, 0.6404494382rem + 1.1235955056vw, 2rem);
}

.joust__list li span {
  font-weight: 700;
}

.joust__list li::before {
  content: "";
  display: flex;
  min-width: 3rem;
  min-height: 3rem;
  max-width: 3rem;
  max-height: 3rem;
  background-image: url("../img/index/linear-item-checkmark.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.joust__list li:not(:first-child) {
  margin-top: 2rem;
}

.joust__main {
  flex-grow: 1;
  flex-basis: 34%;
}

.joust__caption {
  margin-bottom: 3rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.7685393258rem + 1.3483146067vw, 3.4rem);
  line-height: 110%;
  color: #fff;
}

.joust__text {
  margin-top: 3rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: #fff;
}

.fun {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.fun__wrapper {
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
}

.fun p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: #fff;
}

.fun p:not(:first-child) {
  margin-top: 3rem;
}

.fun ul {
  margin-top: 3rem;
}

.prize {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.prize__subtitle {
  margin-top: 2rem;
  margin-inline: auto;
  max-width: 58rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #3c2a5c;
}

.prize__subtitle span {
  font-weight: 700;
}

.prize__text {
  margin-top: 5rem;
  margin-inline: auto;
  max-width: 51rem;
  font-weight: 700;
  font-size: clamp(2.8rem, 2.5842696629rem + 0.6741573034vw, 3.4rem);
  text-align: center;
  color: #3c2a5c;
}

.prize__block {
  display: grid;
  column-gap: 3rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 10rem;
  row-gap: clamp(10rem, 37.191011236rem + -22.4719101124vw, 30rem);
}

.prize-item {
  display: flex;
  flex-direction: column;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  background-color: #251645;
}

.prize-item_1 .prize-item__img {
  background-image: url("../img/index/prize-bg-1.png");
}

.prize-item_2 .prize-item__img {
  background-image: url("../img/index/prize-bg-2.png");
}

.prize-item_3 .prize-item__img {
  background-image: url("../img/index/prize-bg-3.png");
}

.prize-item_4 .prize-item__img {
  background-image: url("../img/index/prize-bg-4.png");
}

.prize-item__img {
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 575/326;
}

.prize-item__img img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
}

.prize-item__img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  aspect-ratio: 575/164;
}

.prize-item__info {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  padding: 0 clamp(1.5rem, 0.6011235955rem + 2.808988764vw, 4rem) clamp(1.5rem, 0.6011235955rem + 2.808988764vw, 4rem) clamp(1.5rem, 0.6011235955rem + 2.808988764vw, 4rem);
}

.prize-item__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.6rem, 2.0966292135rem + 1.5730337079vw, 4rem);
  line-height: 110%;
  text-align: center;
  color: #fff;
}

.prize-item__text {
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 2rem;
  line-height: 110%;
  text-align: center;
  color: #fff;
}

.prize-item__list {
  flex-grow: 1;
}

.prize-item__list li {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
  gap: 2rem;
}

.prize-item__list li::before {
  content: "";
  display: flex;
  min-width: 3rem;
  min-height: 3rem;
  max-width: 3rem;
  max-height: 3rem;
  background-image: url("../img/index/bonus-checkmark.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.prize-item .btn-primary {
  margin-top: 3rem;
  width: 100%;
  box-shadow: inset 0 5px 6px 0 rgba(255, 255, 255, 0.35), 0 6px 35px 0 rgba(10, 184, 164, 0.35);
  text-transform: uppercase;
}

.prize__caption {
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.7685393258rem + 1.3483146067vw, 3.4rem);
  line-height: 110%;
  text-align: center;
  color: #3c2a5c;
}

.premium {
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  margin-inline: 1.5rem;
  border-radius: 2rem;
  padding-block: clamp(4rem, 2.9213483146rem + 3.3707865169vw, 7rem);
  background-image: url("../img/index/premium-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.premium * {
  color: #fff;
}

.premium__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
  gap: clamp(3rem, 1.5617977528rem + 4.4943820225vw, 7rem);
}

.premium__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 110%;
}

.premium__text {
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
}

.premium__text span {
  font-weight: 700;
}

.free {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.free_device {
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  margin-inline: 1.5rem;
  padding-block: clamp(4rem, 1.8426966292rem + 6.7415730337vw, 10rem);
  background-image: url("../img/app/device-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.free_device .title,
.free_device .subtitle,
.free_device .free__caption,
.free_device li {
  color: #fff;
}

.free__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-block: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
  margin-inline: auto;
  max-width: 70rem;
  gap: 2rem 3rem;
}

.free__grid li {
  margin-top: 0;
}

.free__grid li:not(:first-child) {
  margin-top: 0;
}

.free__caption {
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.6rem, 2.3123595506rem + 0.8988764045vw, 3.4rem);
  line-height: 110%;
  text-align: center;
  color: #100724;
}

.free .table-overflow {
  margin-top: 3rem;
}

.free__tip {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 150%;
  text-align: center;
  color: #100724;
}

.free-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-block: 4rem;
  gap: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
}

.free-block__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2rem, 1.9280898876rem + 0.2247191011vw, 2.2rem);
  line-height: 150%;
  color: #100724;
}

.blackjack {
  position: relative;
  overflow: hidden;
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  margin-inline: 1.5rem;
  border-radius: 2rem;
  padding-block: clamp(4rem, 2.9213483146rem + 3.3707865169vw, 7rem);
  background-image: url("../img/index/blackjack-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.blackjack_week {
  background-image: url("../img/bonus/week-bg.png");
}

.blackjack__wrapper {
  position: relative;
  z-index: 2;
}

.blackjack .subtitle,
.blackjack .title {
  color: #fff;
}

.blackjack__block {
  display: flex;
  margin-top: 5rem;
  gap: 3rem;
}

.blackjack-linear {
  display: flex;
  flex-grow: 1;
  flex-basis: 34%;
  flex-direction: column;
  border-style: solid;
  border-width: 0.3rem;
  border-color: #ffd169;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
}

.blackjack-linear__inner {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  border-radius: clamp(1.3rem, 1.0123595506rem + 0.8988764045vw, 2.1rem);
  padding: clamp(1.5rem, 0.7808988764rem + 2.2471910112vw, 3.5rem);
  background-color: transparent;
  gap: 2.4rem;
}

.blackjack-linear__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
  color: #fff;
}

.blackjack-linear__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.blackjack-linear li {
  color: #fff;
}

.blackjack .list-primary li::before {
  background-image: url("../img/bonus/list-ico-1.svg");
}

.poker {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.poker__wrapper {
  display: flex;
  align-items: center;
  margin-top: 5rem;
  gap: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
}

.poker__wrapper_reverse {
  flex-direction: row-reverse;
}

.poker_how {
  padding-top: 4rem;
}

.poker__img,
.poker__info {
  flex-grow: 1;
  flex-basis: 34%;
}

.poker__caption {
  margin-top: 3rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
}

.poker__text {
  margin-top: 2.4rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
}

.poker__text a {
  text-decoration: underline;
  color: #100724;
}

.poker__text span {
  font-weight: 700;
}

.poker__title {
  margin-top: 3rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
  text-align: center;
}

.poker ul {
  margin-top: 2rem;
}

.poker .table-overflow {
  margin-top: 3rem;
}

.warning {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.warning .title {
  max-width: 100%;
  text-align: left;
}

.warning__text {
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: #100724;
}

.warning__block {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  border-radius: 1.2rem;
  padding: 2rem clamp(2rem, 1.2808988764rem + 2.2471910112vw, 4rem);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 150%;
  color: #fff;
  background: #100724;
  gap: 3rem;
}

.club {
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  padding-block: clamp(5rem, 3.202247191rem + 5.6179775281vw, 10rem);
  background-image: url("../img/index/club-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.club__block {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
  gap: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
}

.club__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.8rem, 2.5842696629rem + 0.6741573034vw, 3.4rem);
  line-height: 110%;
}

.club * {
  color: #fff;
}

.app-hero {
  position: relative;
  padding-block: 8.8rem clamp(7rem, 1.804494382rem + 16.2359550562vw, 21.45rem);
}

.app-hero-bg {
  background-image: url("../img/app/hero-bg.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.app-hero__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.app-hero__title {
  max-width: 66rem;
  font-weight: 700;
  font-size: clamp(3.6rem, 2.8808988764rem + 2.2471910112vw, 5.6rem);
  line-height: 110%;
  color: #fff;
}

.app-hero__text {
  max-width: 62rem;
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.app-hero__text p:not(:first-child) {
  margin-top: 2rem;
}

.app-hero__img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(10rem, -50%);
}

.app-hero__img img {
  max-width: inherit;
}

.app-app {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.app-app__text {
  margin-top: 2rem;
  text-align: center;
}

.app-app__block {
  display: flex;
  margin-top: 5rem;
  gap: 3rem;
}

.app-app-item {
  display: flex;
  flex-grow: 1;
  flex-basis: 34%;
  flex-direction: column;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  background: linear-gradient(180deg, #f4525c 0, rgba(52, 114, 169, 0) 30%);
}

.app-app-item__inner {
  flex-grow: 1;
  border-radius: clamp(1.3rem, 1.0123595506rem + 0.8988764045vw, 2.1rem);
  padding: clamp(2rem, 1.4606741573rem + 1.6853932584vw, 3.5rem);
  background-color: #fff;
}

.app-app-item__title {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
  color: #f4525c;
  gap: 1.5rem;
}

.app-app-item__title img {
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.35), 0 4px 25px 0 rgba(244, 82, 92, 0.35);
}

.app-app-item__list {
  margin-top: 2.4rem;
}

.app-app-item__list li {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.6404494382rem + 1.1235955056vw, 2rem);
}

.app-app-item__list li span {
  font-weight: 700;
}

.app-app-item__list li a {
  text-decoration: underline;
  color: #3c2a5c;
}

.app-app-item__list li:not(:first-child) {
  margin-top: 2rem;
}

.app-app-item__num {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  min-width: 3.7rem;
  min-height: 3.7rem;
  max-width: 3.7rem;
  max-height: 3.7rem;
  box-shadow: inset 0 5px 6px 0 rgba(255, 255, 255, 0.35);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 150%;
  color: #fff;
  background: linear-gradient(136deg, #f4525c 0%, #f4525c 50.52%, #f4525c 100%);
}

.app-app-warning {
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
}

.app-app-warning__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.8rem, 1.6561797753rem + 0.4494382022vw, 2.2rem);
  line-height: 150%;
  text-align: center;
  color: #3c2a5c;
  gap: 1rem;
}

.app-app-warning__text {
  margin-top: 1rem;
  margin-inline: auto;
  max-width: 68.5rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #3c2a5c;
}

.app-deposit {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.app-deposit__text {
  margin-top: 2rem;
  text-align: center;
}

.app-deposit__block {
  display: flex;
  margin-top: 5rem;
  gap: 3rem;
}

.app-deposit-item {
  display: flex;
  flex-grow: 1;
  flex-basis: 34%;
  flex-direction: column;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  background: linear-gradient(180deg, #f4525c 0, rgba(52, 114, 169, 0) 30%);
}

.app-deposit-item__inner {
  flex-grow: 1;
  border-radius: clamp(1.3rem, 1.0123595506rem + 0.8988764045vw, 2.1rem);
  padding: clamp(2rem, 1.4606741573rem + 1.6853932584vw, 3.5rem);
  background-color: #fff;
}

.app-deposit-item__title {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
  color: #f4525c;
  gap: 1.5rem;
}

.app-deposit-item__title img {
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.35), 0 4px 25px 0 rgba(244, 82, 92, 0.35);
}

.app-deposit-item__list {
  margin-top: 2.4rem;
}

.app-deposit-item__list li {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
  gap: 2rem;
}

.app-deposit-item__list li:not(:first-child) {
  margin-top: 1rem;
}

.app-deposit-item__list li span {
  font-weight: 700;
}

.app-deposit-item__list li::before {
  content: "";
  display: flex;
  min-width: 2.8rem;
  min-height: 2.8rem;
  max-width: 2.8rem;
  max-height: 2.8rem;
  background-image: url("../img/app/exclusive-plus.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.app-deposit-warning {
  margin-top: 5rem;
}

.app-deposit-warning__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.8rem, 1.6561797753rem + 0.4494382022vw, 2.2rem);
  line-height: 150%;
  text-align: center;
  color: #3c2a5c;
  gap: 1rem;
}

.app-deposit-warning__text {
  margin-top: 1rem;
  margin-inline: auto;
  max-width: 68.5rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #3c2a5c;
}

.app-support {
  padding-top: 22rem;
}

.app-support__inner {
  position: relative;
}

.app-support__inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  width: 110%;
  background-image: url("../img/app/support-rectangle.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  aspect-ratio: 1242/756;
}

.app-support__wrapper {
  position: relative;
  border: 4px solid var(--clr-default-100);
  border-radius: 2.4rem;
  padding: clamp(3rem, 1.7415730337rem + 3.9325842697vw, 6.5rem) clamp(2rem, 0.9213483146rem + 3.3707865169vw, 5rem);
  background-image: url("../img/app/support-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.app-support__info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 50rem;
  gap: 2rem;
}

.app-support .title {
  margin: 0;
  text-align: left;
  color: var(--clr-default-100);
}

.app-support__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.app-support__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.app-support__list li {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
  gap: 2rem;
}

.app-support__list li:not(:first-child) {
  margin-top: 2rem;
}

.app-support__list li::before {
  content: "";
  display: flex;
  min-width: 3rem;
  min-height: 3rem;
  max-width: 3rem;
  max-height: 3rem;
  background-image: url("../img/app/linear-item-checkmark.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.app-support__list li span {
  font-weight: 700;
}

.app-support__img img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.app-support .btn-primary {
  width: 100%;
  max-width: 27.4rem;
}

.app-footer {
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  padding-bottom: 3rem;
}

.app-footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.app-footer-menu__list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-footer-menu__link {
  display: flex;
  padding: 1rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  color: #100724;
}

.app-footer .btn-secondary {
  border: 1px solid rgba(16, 7, 36, 0.2);
  box-shadow: inset 0 5px 6px 0 rgba(255, 255, 255, 0.35);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.6rem;
  color: #100724;
  backdrop-filter: blur(4px);
}

.gaming {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  background-image: url("../img/app/gaming-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gaming__block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8rem;
  gap: 5rem;
}

.gaming__item {
  position: relative;
  max-width: 36rem;
}

.gaming__num {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 7rem;
  line-height: 110%;
  color: #ffd400;
  opacity: 0.4;
  transform: translate(-50%, -50%);
}

.gaming__caption {
  position: relative;
  z-index: 1;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 3rem;
  line-height: 110%;
  color: #fff;
}

.gaming__text {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: #fff;
}

.bonus-hero {
  position: relative;
  padding-block: 9rem clamp(10rem, 0.6516853933rem + 29.2134831461vw, 36rem);
}

.bonus-hero-bg {
  margin-bottom: clamp(10rem, 3.1685393258rem + 21.3483146067vw, 29rem);
  background-image: url("../img/bonus/hero-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bonus-hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

.bonus-hero__title {
  max-width: 105rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(3.5rem, 2.6011235955rem + 2.808988764vw, 6rem);
  line-height: 110%;
  text-align: center;
  color: #fff;
}

.bonus-hero__text {
  max-width: 77rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.bonus-hero__img {
  position: absolute;
  left: 50%;
  bottom: -10rem;
  width: 100%;
  max-width: 120rem;
  transform: translate(-50%, 100%);
}

.bonus-hero__img img {
  padding-inline: 1.5rem;
  max-width: 100%;
}

.bonus-bonus {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.bonus-bonus__subtitle {
  margin-top: 2rem;
  margin-inline: auto;
  max-width: 58rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.bonus-bonus__block {
  display: grid;
  column-gap: 3rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 10rem;
  row-gap: clamp(10rem, 37.191011236rem + -22.4719101124vw, 30rem);
}

.bonus-bonus-item {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  background-color: #161834;
}

.bonus-bonus-item_1 .bonus-bonus-item__img {
  background-image: url("../img/bonus/bonus-bg-1.png");
}

.bonus-bonus-item_1 .bonus-bonus-item__img::after {
  background: linear-gradient(180deg, rgba(22, 24, 52, 0) 0%, #161834 100%);
}

.bonus-bonus-item_2 .bonus-bonus-item__img {
  background-image: url("../img/bonus/bonus-bg-2.png");
}

.bonus-bonus-item_2 .bonus-bonus-item__img::after {
  background: linear-gradient(180deg, rgba(22, 24, 52, 0) 0%, #161834 100%);
}

.bonus-bonus-item_3 .bonus-bonus-item__img {
  background-image: url("../img/bonus/bonus-bg-3.png");
}

.bonus-bonus-item_3 .bonus-bonus-item__img::after {
  background: linear-gradient(180deg, rgba(22, 24, 52, 0) 0%, #161834 100%);
}

.bonus-bonus-item_4 .bonus-bonus-item__img {
  background-image: url("../img/bonus/bonus-bg-4.png");
}

.bonus-bonus-item_4 .bonus-bonus-item__img::after {
  background: linear-gradient(180deg, rgba(22, 24, 52, 0) 0%, #161834 100%);
}

.bonus-bonus-item__img {
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 575/326;
}

.bonus-bonus-item__img img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
}

.bonus-bonus-item__img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  aspect-ratio: 575/164;
}

.bonus-bonus-item__info {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  padding: 0 clamp(2rem, 1.2808988764rem + 2.2471910112vw, 4rem) clamp(2rem, 1.2808988764rem + 2.2471910112vw, 4rem) clamp(2rem, 1.2808988764rem + 2.2471910112vw, 4rem);
}

.bonus-bonus-item__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 4rem;
  line-height: 110%;
  color: #fff;
}

.bonus-bonus-item__text {
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.bonus-bonus-item__btn {
  margin: 3rem clamp(2rem, 1.2808988764rem + 2.2471910112vw, 4rem) clamp(2rem, 1.2808988764rem + 2.2471910112vw, 4rem) clamp(2rem, 1.2808988764rem + 2.2471910112vw, 4rem);
}

.bonus-bonus-item .btn-primary {
  width: 100%;
  box-shadow: inset 0 5px 6px 0 rgba(255, 255, 255, 0.35), 0 6px 35px 0 rgba(10, 184, 164, 0.35);
}

.bonus-bonus__caption {
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 110%;
  text-align: center;
  color: #3c2a5c;
}

.bonus-spin {
  padding-top: clamp(8rem, 6.202247191rem + 5.6179775281vw, 13rem);
}

.bonus-spin__wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
}

.bonus-spin-item {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 1.6404494382rem + 1.1235955056vw, 3rem);
}

.bonus-spin-item_reverse {
  flex-direction: row-reverse;
}

.bonus-spin-item__img,
.bonus-spin-item__info {
  flex-grow: 1;
  flex-basis: 34%;
}

.bonus-spin-item__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(3.2rem, 2.9123595506rem + 0.8988764045vw, 4rem);
  line-height: 110%;
  color: #fff;
}

.bonus-spin-item__text {
  margin-top: 3rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: #fff;
}

.bonus-law {
  position: relative;
  overflow: hidden;
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  margin-inline: 1.5rem;
  border-radius: 2rem;
  padding-block: clamp(4rem, 2.9213483146rem + 3.3707865169vw, 7rem);
}

.bonus-law__wrapper {
  position: relative;
  z-index: 2;
}

.bonus-law__block {
  display: flex;
  margin-top: 5rem;
  gap: 3rem;
}

.bonus-law-linear {
  display: flex;
  flex-grow: 1;
  flex-basis: 34%;
  flex-direction: column;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  background: linear-gradient(180deg, #f4525c 0, rgba(52, 114, 169, 0) 78%);
}

.bonus-law-linear__inner {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  border-radius: clamp(1.3rem, 1.0123595506rem + 0.8988764045vw, 2.1rem);
  padding: clamp(1.5rem, 0.7808988764rem + 2.2471910112vw, 3.5rem);
  background-color: #fff;
}

.bonus-law-linear__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
  color: #f4525c;
}

.bonus-law-linear__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
}

.bonus-law .list-primary li::before {
  background-image: url("../img/bonus/list-ico-4.svg");
}

.bonus-win {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.bonus-win__wrapper {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.bonus-win__info {
  flex-basis: 50%;
}

.bonus-win__caption {
  margin-top: 3rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
}

.bonus-win__text {
  margin-top: 2.4rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
}

.bonus-win__text span {
  font-weight: 700;
}

.bonus-win .list-primary {
  margin-top: 2.4rem;
}

.bonus-win .btn-primary {
  margin-top: 4rem;
}

.bonus-vip {
  padding-top: 13rem;
  background-image: url("../img/bonus/vip-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bonus-vip__wrapper {
  display: flex;
  margin-top: 5rem;
  gap: clamp(2rem, 0.9213483146rem + 3.3707865169vw, 5rem);
}

.bonus-vip__info {
  display: flex;
  flex-grow: 1;
  flex-basis: 34%;
  flex-direction: column;
  gap: 3rem;
}

.bonus-vip__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: #fff;
}

.bonus-vip__text p {
  margin-top: 2rem;
}

.bonus-vip__table {
  display: flex;
  flex-grow: 1;
  flex-basis: 34%;
  flex-direction: column;
  gap: 3rem;
}

.bonus-cashback {
  padding-top: 22rem;
}

.bonus-cashback__inner {
  position: relative;
}

.bonus-cashback__inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  width: 110%;
  background-image: url("../img/bonus/cashback-rectangle.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  aspect-ratio: 1242/756;
}

.bonus-cashback__wrapper {
  position: relative;
  border: 4px solid var(--clr-default-100);
  border-radius: 2.4rem;
  padding: clamp(3rem, 1.7415730337rem + 3.9325842697vw, 6.5rem) clamp(2rem, 0.9213483146rem + 3.3707865169vw, 5rem);
  background-image: url("../img/bonus/cashback-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bonus-cashback__info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 50rem;
  gap: 2rem;
}

.bonus-cashback .title {
  margin: 0;
  text-align: left;
  color: var(--clr-default-100);
}

.bonus-cashback__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.bonus-cashback__text span {
  font-weight: 700;
}

.bonus-cashback__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 110%;
  color: #fff;
}

.bonus-cashback__list li {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
  gap: 2rem;
}

.bonus-cashback__list li:not(:first-child) {
  margin-top: 2rem;
}

.bonus-cashback__list li::before {
  content: "";
  display: flex;
  min-width: 3rem;
  min-height: 3rem;
  max-width: 3rem;
  max-height: 3rem;
  background-image: url("../img/bonus/linear-item-checkmark.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bonus-cashback__img img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.bonus-cashback .btn-primary {
  width: 100%;
  max-width: 27.4rem;
}

.bonus-deposit {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.bonus-deposit__block {
  display: flex;
  gap: 3rem;
}

.bonus-deposit__text {
  margin-top: 5rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  text-align: center;
  color: #3c2a5c;
}

.bonus-deposit .linear-item {
  flex-grow: 1;
  flex-basis: 34%;
  margin-top: 5rem;
  max-width: 100%;
}

.bonus-deposit .linear-item__list li::before {
  display: none;
}

.bonus-deposit .linear-item__num {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  min-width: 3.7rem;
  min-height: 3.7rem;
  max-width: 3.7rem;
  max-height: 3.7rem;
  box-shadow: 0 6px 35px 0 rgba(10, 184, 164, 0.35), inset 0 5px 6px 0 rgba(255, 255, 255, 0.35);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 150%;
  color: #fff;
  background: linear-gradient(136deg, #059383 0%, #06aa97 50.52%, #0ab8a4 100%);
}

.bonus-offer__wrapper {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
}

.bonus-offer__img,
.bonus-offer__info {
  flex-grow: 1;
  flex-basis: 34%;
}

.bonus-offer .title {
  margin-bottom: 4rem;
  text-align: left;
}

.bonus-offer__caption {
  margin-top: 3rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
  color: #3c2a5c;
}

.bonus-offer__text {
  margin-top: 2.4rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
}

.bonus-offer__text span {
  font-weight: 700;
}

.bonus-info {
  padding-block: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem) 11rem;
}

.bonus-info__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bonus-info__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #3c2a5c;
}

.bonus-info__text span {
  font-weight: 700;
}

.bonus-info__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.bonus-info__list li {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
  gap: 1rem;
}

.bonus-info__list li::before {
  content: "";
  display: flex;
  border-radius: 100%;
  min-width: 0.4rem;
  min-height: 0.4rem;
  max-width: 0.4rem;
  max-height: 0.4rem;
  background-color: #3c2a5c;
}

.bonus-footer {
  padding-block: clamp(7rem, 4.4831460674rem + 7.8651685393vw, 14rem) 5rem;
}

.bonus-footer__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bonus-footer-menu__list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bonus-footer-menu__link {
  display: flex;
  padding: 1rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  color: #100724;
}

.bonus-footer .btn-secondary {
  border: 1px solid rgba(16, 7, 36, 0.2);
  box-shadow: inset 0 5px 6px 0 rgba(255, 255, 255, 0.35);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.6rem;
  color: #100724;
  backdrop-filter: blur(4px);
}

.main {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  padding-bottom: 3rem;
}

.main_app {
  background-image: url("../img/app/main-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main_bonus {
  background-image: url("../img/bonus/main-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main_support p {
  text-align: center;
}

.main__caption {
  margin-top: 5rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 110%;
  color: #fff;
}

.main p {
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: #fff;
}

.main__flex {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main__flex .list-dot {
  margin-top: 0;
}

.main .table-overflow {
  margin-top: 3rem;
}

.advantages {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  background-image: url("../img/bonus/advantages-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.advantages__caption {
  margin-top: 5rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 110%;
  text-align: center;
  color: #fff;
}

.advantages .table-overflow {
  margin-top: 5rem;
}

.promo {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.promo__block {
  display: flex;
  align-items: center;
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
  gap: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
}

.promo__block-reverse {
  flex-direction: row-reverse;
}

.promo__info {
  flex-grow: 1;
}

.promo__img {
  min-width: 50rem;
}

.promo__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.6rem, 1.7370786517rem + 2.6966292135vw, 5rem);
  line-height: 110%;
  color: #fff;
}

.promo__text {
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: #fff;
}

.welcome {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.welcome_important {
  background-image: url("../img/bonus/important-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.welcome .table-overflow {
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
}

.welcome__text {
  margin-top: 3rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: #fff;
}

@media (max-width: 75em) {
  .cons__img img {
    display: none;
  }

  .cons-red {
    margin-top: 0;
  }

  .cons-column__wrapper {
    max-width: 100%;
  }

  .cons-column__block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .cons-column__img img {
    display: none;
  }

  .cons-column-red {
    margin-top: 0;
  }
}

@media (max-width: 75em) and (max-width: 46.875em) {
  .cons__img img {
    position: static;
    display: flex;
  }

  .cons-column__block {
    grid-template-columns: repeat(1, 1fr);
  }

  .cons-column__img img {
    position: static;
    display: flex;
  }
}

@media (max-width: 62em) {
  .table tr td:last-of-type {
    padding-right: 2rem;
  }
}

@media (max-width: 60em) {
  .law__block {
    flex-direction: column;
  }

  .blackjack__block {
    flex-direction: column;
  }

  .bonus-law__block {
    flex-direction: column;
  }
}

@media (max-width: 50em) {
  .linear-item {
    max-width: 100%;
  }

  .poker__wrapper {
    flex-direction: column;
  }

  .bonus-spin-item {
    flex-direction: column;
  }

  .bonus-offer__wrapper {
    flex-direction: column;
  }
}

@media (max-width: 48em) {
  .faq {
    padding-top: 8rem;
  }
}

@media (max-width: 36em) {
  .faq__title::before {
    right: 2rem;
  }

  .faq__item-body p {
    padding: 2rem;
  }
}

@media (max-width: 72.5em) {
  .menu__list {
    flex-direction: column;
    margin: auto;
    padding-block: 4rem;
  }

  .menu__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 3rem;
  }

  .menu {
    position: fixed;
    right: -100%;
    top: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    padding-bottom: 4rem;
    width: 100%;
    height: 100%;
    max-width: 32rem;
    background-color: #070d16;
    transition: right var(--transition);
  }

  .menu--active {
    right: 0;
    transition: right var(--transition);
  }

  .menu--active .menu__link {
    color: var(--clr-text-100);
  }

  .burger {
    position: relative;
    z-index: 15;
    display: block;
    width: 2.5rem;
    height: 2rem;
  }

  .burger::after,
  .burger::before,
  .burger span {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.4rem;
    background-color: #fff;
  }

  .burger::before {
    top: 0;
    transition: transform var(--transition), top var(--transition);
  }

  .burger::after {
    bottom: 0;
    transition: transform var(--transition), bottom var(--transition);
  }

  .burger span {
    top: 0.8rem;
    transition: transform var(--transition);
  }

  .burger--active::before {
    top: 0.8rem;
    transform: rotate(45deg);
    transition: transform var(--transition), top var(--transition);
  }

  .burger--active::after {
    bottom: 0.8rem;
    transform: rotate(-45deg);
    transition: transform var(--transition), bottom var(--transition);
  }

  .burger--active span {
    transform: scale(0);
    transition: transform var(--transition);
  }

  .footer-menu {
    display: none;
  }

  .app-footer-menu {
    display: none;
  }

  .bonus-footer-menu {
    display: none;
  }
}

@media (max-width: 68.75em) {
  .hero {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .hero__title {
    max-width: 100%;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__img {
    position: static;
    margin-inline: auto;
    transform: none;
  }

  .hero__img img {
    padding-inline: 1.5rem;
    max-width: 100%;
  }

  .support {
    padding-top: 60rem;
  }

  .support__info {
    margin-left: 0;
    max-width: 100%;
  }

  .support__img img {
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
  }

  .app-hero {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .app-hero__title {
    max-width: 100%;
  }

  .app-hero__text {
    max-width: 100%;
  }

  .app-hero__img {
    position: static;
    margin-inline: auto;
    transform: none;
  }

  .app-hero__img img {
    padding-inline: 1.5rem;
    max-width: 100%;
  }

  .app-support {
    padding-top: 70rem;
  }

  .app-support__info {
    max-width: 100%;
  }

  .app-support__img img {
    right: 50%;
    bottom: 100%;
    transform: translateX(50%);
  }

  .bonus-cashback {
    padding-top: 60rem;
  }

  .bonus-cashback__info {
    margin-left: 0;
    max-width: 100%;
  }

  .bonus-cashback__img img {
    right: 50%;
    bottom: 100%;
    transform: translateX(50%);
  }
}

@media (max-width: 68.75em) and (max-width: 37.5em) {
  .support {
    padding-top: clamp(25rem, -9.1573033708rem + 106.7415730337vw, 120rem);
  }

  .app-support {
    padding-top: clamp(35rem, 4.4382022472rem + 95.5056179775vw, 120rem);
  }

  .bonus-cashback {
    padding-top: clamp(30rem, -2.3595505618rem + 101.1235955056vw, 120rem);
  }
}

@media (max-width: 65.625em) {
  .registration-cons .cons-column__block {
    grid-template-columns: repeat(1, 1fr);
  }

  .bonus .list-primary {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews__block {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium__block {
    grid-template-columns: repeat(1, 1fr);
  }

  .free-block {
    grid-template-columns: repeat(2, 1fr);
  }

  .club__block {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 65.625em) and (max-width: 43.75em) {
  .bonus .list-primary {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__block {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 65.625em) and (max-width: 43.75em) and (max-width: 31.25em) {
  .bonus .list-primary {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 65.625em) and (max-width: 46.875em) {
  .free-block {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 62.5em) {
  .support__inner::before {
    display: none;
  }

  .joust__block {
    flex-direction: column-reverse;
    align-items: inherit;
  }

  .app-support__inner::before {
    display: none;
  }

  .bonus-cashback__inner::before {
    display: none;
  }

  .promo__block {
    flex-direction: column-reverse;
  }
}

@media (max-width: 59.375em) {
  .tournament_casino .tournament__wrapper {
    flex-direction: column;
  }

  .tournament__wrapper {
    flex-direction: column-reverse;
  }

  .tournament__info {
    max-width: 100%;
  }
}

@media (max-width: 56.25em) {
  .table {
    width: 85.5rem;
  }

  .text__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .bonus-win__wrapper {
    flex-direction: column-reverse;
  }

  .bonus-win_reverse .bonus-win__wrapper {
    flex-direction: column;
  }

  .bonus-win__info {
    flex-basis: 100%;
  }

  .bonus-vip__wrapper {
    flex-direction: column-reverse;
  }
}

@media (max-width: 50.625em) {
  .exclusive__wrapper {
    flex-direction: column-reverse;
  }
}

@media (max-width: 47.9375em) {
  .faq__item:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 46.875em) {
  .cons__block {
    grid-template-columns: repeat(1, 1fr);
  }

  .free__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 43.75em) {
  .app__block {
    flex-direction: column;
  }

  .deposit__block {
    grid-template-columns: repeat(1, 1fr);
  }

  .prize__block {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 10rem;
  }

  .prize-item__img img {
    max-width: 80%;
  }

  .app-app__block {
    flex-direction: column;
  }

  .app-deposit__block {
    flex-direction: column;
  }

  .bonus-bonus__block {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 10rem;
  }

  .bonus-bonus-item__img img {
    max-width: 80%;
  }
}

@media (max-width: 42.5em) {
  .bonus-deposit__block {
    flex-direction: column;
  }
}

@media (max-width: 41.25em) {
  .live__block {
    grid-template-columns: repeat(1, 1fr);
  }

  .live-item {
    margin-inline: auto;
  }
}

@media (max-width: 40.625em) {
  .registration-item {
    flex-direction: column;
  }
}

@media (max-width: 39.0625em) {
  .bonus-info__list {
    flex-direction: column;
  }
}

@media (max-width: 37.5em) {
  .joust .table {
    width: 60rem;
  }

  .bonus-vip .table {
    width: 50rem;
  }

  .promo__img {
    min-width: 100%;
  }
}

@media (max-width: 31.25em) {
  .registration__block {
    flex-direction: column;
  }
}

@media (max-width: 29.375em) {
  .gaming__num {
    transform: translate(0, -50%);
  }
}

@media (max-width: 28.125em) {
  .footer__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .app-footer__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .bonus-footer__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
/*# sourceMappingURL=style.css.map */


.header {
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: background-color 0.3s ease, box-shadow 0.3s ease;
  -moz-transition: background-color 0.3s ease, box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  min-height: 97px;
}

.header--bg {
  background-color: rgba(14, 0, 33, 0.7);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
}

.hero-bg, .app-hero-bg, .bonus-hero-bg {
  padding-top: 97px;
}

.menu .header__btn, .menu .header__btn2 {
  display: none;
}

.arrow-top {
  display: block;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 500;
  width: 40px;
  height: 40px;
  background-color: rgba(14, 0, 33, 0.7);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 -webkit-border-radius: 5px;
 -moz-border-radius: 5px;
 border-radius: 5px;
 padding: 5px;
}

@media (max-width: 72.5em) {
  .burger {
    z-index: 100000;
  }

  .burger--active::after, .burger--active::before, .burger--active span {
    background-color: #000 !important;
}
  .menu {
    z-index: 9999;
    height: 100%;
    min-height: 100vh;
    overflow: auto;
    background: #fdf8ff;
  }

  .header .btn-secondary {
      margin-bottom: 0;
      border: none;
      color: #fff;
  }
}

@media (max-width: 700px) {
  .header__block .header__btn, .header__block .header__btn2 {
    display: none;
  }
  .menu .header__btn, .menu .header__btn2 {
    display: block;
    min-width: 200px;
  }

  .header .btn-secondary {
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 7, 36, 0.2);
    color: #100724;
  }

  .header {
    min-height: 80px;
  }

  .hero-bg, .app-hero-bg, .bonus-hero-bg {
    padding-top: 80px;
  }

  .arrow-top {
    width: 35px;
    height: 35px;
    bottom: 10px;
    right: 10px;
  }
}
