@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
  color: black;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  letter-spacing: normal;
  white-space: nowrap;
  text-transform: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

fieldset,
img {
  border: 0;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-size: 100%;
  border: none;
}

input,
button,
textarea,
select {
  outline: none;
}

a,
input[type=submit],
button,
a:before,
a:after,
button:before,
button:after,
a > *,
button > * {
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

ol,
ul {
  list-style: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

/* merriweather-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Merriweather Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/merriweather-sans-v27-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* merriweather-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Merriweather Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/merriweather-sans-v27-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --color-blue: #181e29;
  --color-dark-blue: #181e29;
  --color-light-blue: #242d3d;
  --color-yellow: #fcc211;
  --color-white: #ffffff;
  --color-white-btn: #fff5d6;
  --color-black-btn: #23293a;
  --color-red: #e93e3a;
  --color-black: #05071a;
  --color-gray: #4c5571;
  --color-gray-alt: rgba(255, 245, 214, 0.6);
  --color-gray-black: #404e5b;
  --font-family-base: "Merriweather Sans", sans-serif;
  --container-width: 1440px;
  --container-padding-x: 20px;
  --section-padding-y: 50px;
  --transition-duration: 0.3s;
}

/* Main */
.main {
  position: relative;
  padding: 100px 20px 0 20px;
}

.main__wrap {
  display: flex;
}

.main__content {
  position: relative;
  overflow: hidden;
  flex: 1 1 calc(100% - 260px - 10px);
  margin-left: 260px;
}

.sidebar__links-main {
  display: none;
}

.content__section {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  margin-bottom: 40px;
}
.content__section:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .content__section {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}

.content__section > *,
.cover > * {
  display: block;
  position: relative;
}

.content__section__row {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .content__section__row {
    flex-direction: column;
  }
}

.content__section__row > .content__section {
  flex: 1;
  margin-bottom: 0;
}

.page__container {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.content__main__wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.content__wrapper {
  flex-grow: 1;
}

/* Content */
.cover {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.cover {
  padding-left: 20px;
  padding-right: 20px;
}

.content .scroll {
  position: absolute;
  width: 0;
  height: 0;
  top: -74px;
  left: 0;
}

.background {
  display: block !important;
  position: absolute !important;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.background img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-base);
  background-color: var(--color-black);
  color: var(--color-white);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  min-height: 100vh;
  overflow-x: hidden;
}

.btn {
  display: inline-block;
  min-width: 190px;
  height: 50px;
  padding: 16px 32px;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 700;
  line-height: 1; /* 100% */
  border: none;
  cursor: pointer;
  clip-path: path("M7.71379 6.43106C8.46167 2.69167 11.745 0 15.5584 0H179.242C184.29 0 188.076 4.61859 187.086 9.56893L180.286 43.5689C179.538 47.3083 176.255 50 172.442 50H8.75843C3.71006 50 -0.0762811 45.3814 0.913786 40.4311L7.71379 6.43106Z");
  transition: var(--transition-duration) ease-in-out;
  background: var(--color-red);
}
.btn:hover {
  transform: scale(1.1);
  box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.6);
}

.headline {
  color: var(--color-white-btn);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}
@media (max-width: 767px) {
  .headline {
    text-align: left;
  }
}

.paragraph {
  position: relative;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 767px) {
  .paragraph {
    text-align: left;
  }
}

.fog {
  color: var(--color-white-btn);
}

.global__tittle {
  position: relative;
  margin-bottom: 20px;
  padding: 16px;
  color: var(--color-black);
  font-family: var(--font-family-base);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 12px;
  background: var(--color-yellow);
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 1023px) {
  .global__tittle {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .global__tittle {
    text-align: center;
    font-size: 21px;
  }
}

.global__subtittle {
  position: relative;
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 767px) {
  .global__subtittle {
    text-align: center;
    font-size: 22px;
  }
}

.global__pretittle {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 767px) {
  .global__pretittle {
    text-align: center;
    font-size: 18px;
  }
}

a,
button,
input,
textarea,
svg * {
  transition: var(--transition-duration);
}

a {
  text-decoration: none;
}

a:focus-visible {
  outline: none;
  box-shadow: 0 0 2px 2px var(--color-gray);
}

@media (max-width: 1280px) {
  .background__fill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 1280px) {
  .background__fill {
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    background: rgba(5, 7, 26, 0.8);
    padding: 10px;
    border-radius: 12px;
  }
}

::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar-thumb {
  display: none;
}

/* Header */
.header {
  background: var(--color-black);
  flex-direction: row;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 80px;
  overflow: visible;
}
@media (max-width: 767px) {
  .header {
    padding: 0;
  }
}

.logo {
  display: inline-block;
  background: var(--color-black);
  width: 240px;
  border-radius: 16px 16px 0 0;
  margin-top: 8px;
  padding-top: 4px;
  background: var(--color-black-btn);
}
@media (max-width: 1200px) {
  .logo {
    background: none;
    border-radius: 0;
    width: 120px;
  }
}

.logo img {
  display: block;
  max-width: 260px;
}
@media (max-width: 767px) {
  .logo img {
    max-width: 120px;
  }
}

.logo__background {
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .logo__background {
    margin: 0;
  }
}

.menu-button,
.header__menu .header__button {
  display: none;
}

.header__menu {
  margin: 0 auto 0 60px;
  background-color: var(--color-black);
}

.header__menu ul {
  display: flex;
  align-items: center;
}

.header__menu ul li + li {
  position: relative;
  padding-left: 32px;
}

.header__menu ul a {
  font-family: var(--font-family-base);
  color: var(--color-white-btn);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.28;
  text-transform: capitalize;
  transition: var(--transition-duration) ease;
}
.header__menu ul a:hover {
  color: var(--color-yellow);
}

.show {
  background-color: var(--color-black);
}

.header__login {
  padding: 13px 40px;
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border: none;
  color: var(--color-white-btn);
  background-color: var(--color-black-btn);
  cursor: pointer;
  transition: var(--transition-duration);
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 153 42' fill='none'%3E%3Cpath d='M142.237 40.0479H10.5037C5.43707 40.0479 1.13041 36.2861 1.87774 32.5148L6.47574 9.49674C7.22307 5.72547 13.0371 1.9542 18.1037 1.9542H135.904C140.97 1.9542 146.67 5.73499 147.304 9.51579L151.116 32.4958C151.75 36.2766 147.304 40.0479 142.237 40.0479Z' fill='%2323293a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 9px;
}
.header__login:hover {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .header__login {
    margin-right: 0;
    padding: 13px 37px;
  }
}

.header__signup {
  padding: 13px 40px;
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  background-color: var(--color-yellow);
  color: var(--color-black);
  border: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='166' height='42' viewBox='0 0 166 42' fill='none'%3E%3Cpath d='M10.0611 1.95215H155.94C160.97 1.95215 165.246 5.71411 164.504 9.4856L159.939 32.505C159.197 36.2765 153.425 40.048 148.394 40.048H16.349C11.3186 40.048 5.65956 36.267 5.03077 32.4859L1.24547 9.50464C0.61668 5.72363 5.03077 1.95215 10.0611 1.95215Z' fill='%23fcc211'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: var(--transition-duration);
}
.header__signup:hover {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .header__signup {
    padding: 13px 36px;
  }
}

/* Languages */
.header__language {
  text-transform: uppercase;
  color: #fec07e;
  line-height: 1.46667;
  display: flex;
  align-items: center;
  margin-left: 24px;
}

.header__language img {
  display: block;
  width: 24px;
  height: 24px;
  max-width: 24px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 6px;
}

.main__buttons {
  display: none;
}

/* HERO */
.hero {
  border-radius: 12px;
  padding: 0 0 0 30px;
  min-height: 480px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .hero {
    align-items: center;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .hero .background img {
    -o-object-position: 84%;
       object-position: 84%;
    opacity: 1;
  }
}
.hero__pretittle {
  margin-bottom: 8px;
  display: flex;
}
.hero__pretittle__text, .hero__pretittle__number__first, .hero__pretittle__number__second, .hero__pretittle__separation {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}
.hero__pretittle__text {
  margin-right: 16px;
}
.hero__tittle {
  margin-bottom: 8px;
  max-width: 650px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .hero__tittle {
    font-size: 4.2vw;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero__tittle {
    font-size: 24px;
    text-align: center;
  }
}
.hero__subtittle {
  margin-bottom: 24px;
  max-width: 640px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6; /* 22.4px */
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 1023px) {
  .hero {
    text-align: center;
  }
}
.hero__arrow {
  display: inline-block;
  margin: auto 15px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: rotate(45deg);
  transition: var(--transition-duration) ease;
}
.hero__button {
  margin: 0;
}

/* REGULATION */
@media (max-width: 1023px) {
  .regulation__tittle {
    text-align: center;
  }
}
.regulation__item {
  margin-bottom: 20px;
}
.regulation__list {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 16px;
}
@media (max-width: 767px) {
  .regulation__list {
    align-items: baseline;
  }
}
.regulation__list:not(:last-child) {
  margin-bottom: 12px;
}
.regulation__point {
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--color-yellow);
  border-radius: 100%;
  flex-shrink: 0;
}
.regulation .gap {
  gap: 20px;
}
.regulation__text:not(:last-child) {
  margin-bottom: 20px;
}
.regulation__text > span {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 0 8px;
}
.regulation__subtittle {
  margin-bottom: 16px;
}
.regulation__subtittle:last-of-type {
  margin-bottom: 20px;
}
.regulation__table-wrap {
  position: relative;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-radius: 12px;
  margin-bottom: 20px;
}
.regulation__table {
  position: relative;
  min-width: 800px;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.regulation__table::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;
  border: 1px solid var(--color-gray-black);
  pointer-events: none;
}
.regulation__table th,
.regulation__table td {
  box-sizing: border-box;
  padding: 16px;
  vertical-align: top;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
}
.regulation__table td {
  padding: 12px 16px;
}
.regulation__table__item {
  background: var(--color-black);
}
.regulation__table__body {
  width: 100%;
}
.regulation__table__sub {
  background-color: var(--color-black-btn);
  border-bottom: 1px solid var(--color-gray-black);
}
.regulation__table__sub:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}
.regulation__table thead tr > th:nth-child(1),
.regulation__table tbody tr > td:nth-child(1) {
  width: 30%;
  min-width: 260px;
}
.regulation__table thead tr > th:nth-child(2),
.regulation__table tbody tr > td:nth-child(2) {
  width: 70%;
  min-width: 500px;
}
.regulation__thead {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 767px) {
  .regulation__thead {
    font-size: 18px;
  }
}
.regulation__tread {
  word-wrap: break-word;
}
.regulation__unorder__item {
  width: 100%;
}
.regulation__unorder__list {
  display: flex;
  margin-bottom: 12px;
  padding: 12px 0;
  align-items: stretch;
  border-radius: 12px;
  border: 1px solid var(--color-gray-black);
  background: var(--color-black-btn);
  position: relative;
}
.regulation__unorder__list:last-child {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .regulation__unorder__list {
    padding: 16px;
    padding-left: 56px;
    height: auto;
    flex-direction: column;
  }
}
.regulation__unorder__point {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px 0 0 12px;
  background: var(--color-black);
  z-index: 1;
}
.regulation__unorder__point::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: block;
}
.regulation__unorder__text {
  flex: 1;
  padding: 0 16px 0 56px;
  display: flex;
  align-items: left;
  margin: 0;
}
@media (max-width: 767px) {
  .regulation__unorder__text {
    padding: 0;
    margin: 0;
  }
}
.regulation__double__pros, .regulation__double__cons {
  flex: 1 0 0;
}
.regulation__double__pros__item, .regulation__double__cons__item {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-gray-black);
}
.regulation__double__pros__square, .regulation__double__cons__square {
  display: flex;
  margin-right: 16px;
  width: 40px;
  height: 40px;
  padding: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12.5px;
  border-radius: 8px;
}
.regulation__double__pros__header, .regulation__double__cons__header {
  font-size: 20px;
}
.regulation__double__pros__list, .regulation__double__cons__list {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .regulation__double__pros__list > img, .regulation__double__cons__list > img {
    width: 28px;
    height: 28px;
  }
}
.regulation__double__pros__list > p, .regulation__double__cons__list > p {
  padding-left: 12px;
}
.regulation__double__pros__list:not(:last-child), .regulation__double__cons__list:not(:last-child) {
  margin-bottom: 16px;
}

/* Sidebar */
.sidebar {
  width: 240px;
  position: fixed;
  top: 80px;
  left: 20px;
  height: calc(100vh - 80px);
  padding-bottom: 20px;
  overflow-y: auto;
  z-index: 10;
  gap: 20px;
}

.sidebar__wrap {
  border-radius: 0 0 6px 6px;
  background: var(--color-black-btn);
}

.sidebar__item {
  padding: 20px 4px 0 4px;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sidebar__button {
  position: relative;
  min-height: 52px;
  padding: 16px 16px 16px 70px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.46667;
  border-radius: 6px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  background: linear-gradient(180deg, #f0ce58 0%, #c25630 65%);
  transition: var(--transition-duration);
}
.sidebar__button:hover {
  transform: scale(1.02);
}

.sidebar__button-wheel {
  display: block;
  margin-bottom: 8px;
  margin-top: 0;
}

.sidebar__button img {
  position: absolute;
}

.sidebar__button-mission {
  display: block;
  margin: 0 auto;
  margin-bottom: 12px;
}

.sidebar__button-mission img {
  max-width: 40px;
  left: 8px;
  top: 6px;
}

.sidebar__button-wheel img {
  max-width: 45px;
  left: 0;
  bottom: 0;
}

.sidebar__menu ul {
  background: var(--color-black-btn);
  padding: 0 16px;
}

.sidebar__menu li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.sidebar__menu li a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--color-white-btn);
  transition: var(--transition-duration) ease;
}

.sidebar__menu li a:hover {
  color: var(--color-yellow);
}

.sidebar__menu li a svg {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  color: currentColor;
}

.sidebar__menu li span {
  color: var(--color-white-btn);
  font-family: var(--font-family-base);
  padding: 14px 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  transition: var(--transition-duration) ease;
}

.sidebar__menu li a:hover span {
  color: var(--color-yellow);
}

.sidebar__menu li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.sidebar__menu li:hover::before {
  left: 100%;
}

.message__text {
  display: flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 21px;
  top: 4px;
  border-radius: 50px;
  background: var(--color-red);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  text-transform: capitalize;
  z-index: 2000;
}

.application__button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 74px;
  border-radius: 6px;
  overflow: hidden;
  padding: 22px 26px 22px 16px;
  border-radius: 6px;
  box-shadow: 0 0 0 0 #121720, 0 1px 0 0 rgba(255, 255, 255, 0.3) inset;
  background: linear-gradient(#4c5571 0%, #4c5571 70%, #2a3450 100%);
}

.application__button span {
  display: block;
  max-width: 123px;
}

.application__button span:first-of-type {
  position: absolute;
  top: 14px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.46667;
  text-transform: capitalize;
}

.application__button span:last-of-type {
  position: absolute;
  top: 27px;
  color: var(--color-gray-alt);
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  margin-top: 8px;
}

.application__button img {
  position: absolute;
  top: 0;
  right: 24px;
  height: 65px;
}

.sidebar__links {
  background: var(--color-black);
  overflow: hidden;
}

.sidebar__links-wrapper {
  margin-bottom: 20px;
}

.sidebar__links-button {
  font-family: var(--font-family-base);
  color: var(--color-yellow);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.46667;
  text-align: left;
  position: relative;
  white-space: normal;
  width: 100%;
  padding: 20px 58px 8px 16px;
  overflow: hidden;
}

.sidebar__links-button:before {
  content: "";
  background: url("./../images/index/aside/Arrow.svg");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 12px;
  height: 12px;
}

.sidebar__links-button.active:before {
  transform: rotateX(180deg);
}

.sidebar__links-list {
  padding: 12px 16px;
}

.sidebar__links-list li + li {
  margin-top: 12px;
}

.sidebar__links-list a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6; /* 22.4px */
  transition: var(--transition-duration) ease;
}
.sidebar__links-list a:hover {
  color: var(--color-yellow);
  text-shadow: 0 0.3px var(--color-yellow), 0.3px 0 var(--color-yellow);
}

/* BONUS */
.bonus {
  min-height: 368px;
  padding-left: 120px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .bonus {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.bonus__pretittle {
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.bonus__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 480px) {
  .bonus__items {
    font-size: 22px;
  }
}
.bonus__items > span {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .bonus__items > span {
    font-size: 28px;
  }
}
.bonus__pretext {
  margin-bottom: 24px;
}
.bonus__pretext > p {
  position: relative;
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.bonus__pretext__button {
  margin: 0;
}
@media (max-width: 767px) {
  .bonus .background img {
    -o-object-position: 79%;
       object-position: 79%;
    opacity: 1;
  }
}

/* REGISTER */
@media (max-width: 767px) {
  .register {
    text-align: center;
  }
}
.register__text {
  color: var(--color-white-btn);
}
.register__text:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .register .background img {
    -o-object-position: 83%;
       object-position: 83%;
    opacity: 0.4;
  }
}
.register .headline {
  margin-bottom: 12px;
}
.register__subtittle {
  margin-bottom: 16px;
}
.register__items {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .register__items {
    padding: 10px;
  }
}
.register__items__list {
  position: relative;
  display: flex;
  align-items: baseline;
  margin-bottom: 16px;
  border-radius: 12px;
  width: 65%;
}
@media (max-width: 1023px) {
  .register__items__list {
    width: 100%;
  }
}
.register__items__number {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 40px;
  background: linear-gradient(0deg, #fb8a00 0%, #fc2626 100%);
  color: var(--color-white-btn);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .register__items__number {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}
.register__items__container {
  padding: 12px 0 0 16px;
}
@media (max-width: 767px) {
  .register__items__text {
    text-align: left;
  }
}
.register__items__subtext {
  display: flex;
  align-items: center;
  padding-left: 16px;
}
.register__items__subtext:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .register__items__subtext {
    padding: 0;
    text-align: left;
  }
}
.register__pointer {
  margin-right: 12px;
  display: block;
  position: relative;
  padding: 3px;
  background-color: var(--color-yellow);
  border-radius: 100%;
  background-color: var(--color-yellow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='166' height='42' viewBox='0 0 6 6' fill='none'%3E%3Cpath d='M6 3C6 4.65685 4.65685 6 3 6C1.34315 6 0 4.65685 0 3C0 1.34315 1.34315 0 3 0C4.65685 0 6 1.34315 6 3Z' fill='%23fcc211'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}
.register__text__fog {
  color: var(--color-white-btn);
  margin-bottom: 20px;
}
.register__second__items {
  padding: 20px 0;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .register__second__items .background img {
    -o-object-position: 75%;
       object-position: 75%;
    opacity: 0.4;
  }
}
@media (max-width: 767px) {
  .register__second__items {
    padding: 10px;
  }
}
.register__second__items .headline {
  margin-bottom: 0;
}
.register__second__items__list {
  position: relative;
  display: flex;
  align-items: center;
}
.register__second__items__list:not(:last-child) {
  margin-bottom: 16px;
}
.register__second__items__number {
  display: flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 40px;
  background: linear-gradient(0deg, #fb8a00 0%, #fc2626 100%);
  color: var(--color-white-btn);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .register__second__items__number {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}
.register__second__items__text {
  padding: 12px 16px 16px 16px;
}
@media (max-width: 767px) {
  .register__second__items__text {
    text-align: left;
  }
}

/* APP */
.app__text__fog {
  color: var(--color-white-btn);
  margin-bottom: 20px;
}
.app__subtittle {
  margin-bottom: 20px;
}
.app__pretittle {
  margin-bottom: 12px;
}
.app__pretittle:last-child {
  margin-bottom: 16px;
}
.app__container {
  padding: 20px 0;
  border-radius: 12px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .app__container {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .app__container .background img {
    -o-object-position: 82%;
       object-position: 82%;
    opacity: 0.4;
  }
}
.app__items__subtext {
  display: flex;
  align-items: center;
  padding-left: 16px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .app__items__subtext {
    padding: 0;
    text-align: left;
  }
}
.app .margin {
  margin-bottom: 20px;
}
.app__pointer {
  margin-right: 8px;
  display: block;
  position: relative;
  width: 6px;
  height: 6px;
  background-color: var(--color-yellow);
  border-radius: 100%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .app__items {
    padding: 10px;
  }
}
.app__items__list {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .app__items__list {
    width: 100%;
  }
}
.app__items__number {
  display: flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 40px;
  background: linear-gradient(0deg, #fb8a00 0%, #fc2626 100%);
  color: var(--color-white-btn);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .app__items__number {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}
.app__items__text {
  padding: 12px 16px 16px 16px;
}
@media (max-width: 767px) {
  .app__items__text {
    text-align: left;
  }
}
.app__double__container {
  padding: 0;
}
.app .width {
  width: 100%;
}

/* DOWNLOAD */
.download {
  padding: 120px 116px;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .download {
    padding: 40px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .download .background img {
    -o-object-position: 50%;
       object-position: 50%;
    opacity: 1;
  }
}
.download__container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .download__container {
    display: block;
  }
}
.download__button__apple, .download__button__android {
  display: flex;
  width: 250px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  text-align: center;
  background: var(--color-red);
  transition: var(--transition-duration);
  position: relative;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 767px) {
  .download__button__apple, .download__button__android {
    margin-bottom: 20px;
  }
  .download__button__apple:last-child, .download__button__android:last-child {
    margin-bottom: 0;
  }
}
.download__text {
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}
.download__button__apple:hover {
  box-shadow: var(--color-red) 0px 5px 15px;
}
.download__button__android {
  background-color: var(--color-yellow);
}
.download__button__android:hover {
  box-shadow: var(--color-yellow) 0px 5px 15px;
}
.download__image {
  margin-right: 16px;
}

/* PROMOTION */
@media (max-width: 767px) {
  .promotion {
    text-align: center;
  }
}
.promotion .margin {
  margin-bottom: 20px;
}
.promotion__margin {
  margin-left: 0px;
}
.promotion__text__fog {
  color: var(--color-white-btn);
  margin-bottom: 20px;
}
.promotion__subtittle {
  margin-bottom: 12px;
}
.promotion__cube {
  position: relative;
  padding: 0;
  margin-bottom: 20px;
}
.promotion__cube__subtittle {
  padding: 16px 0;
  display: flex;
  align-items: center;
  background: var(--color-black);
  border-bottom: 1px solid var(--stroke-blue, #404e5b);
}
.promotion__cube__subtittle > img {
  margin-right: 12px;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.promotion__cube__text {
  padding: 16px 0;
}
@media (max-width: 767px) {
  .promotion__cube__text {
    padding: 10px;
    height: auto;
  }
}

/* VIP */
.vip {
  /* ===== Scrollable wrapper  ===== */
  /* ===== Таблиця ===== */
}
@media (max-width: 767px) {
  .vip {
    text-align: center;
  }
}
.vip__text__fog {
  color: var(--color-white-btn);
  margin-bottom: 20px;
}
.vip__subtittle {
  margin-bottom: 16px;
}
.vip .margin {
  margin-bottom: 20px;
}
.vip__margin {
  margin-left: 0;
}
.vip__cube {
  position: relative;
  padding: 0;
  margin-bottom: 20px;
}
.vip__cube__subtittle {
  padding: 16px 0;
  display: flex;
  align-items: center;
  background: var(--color-black);
  border-bottom: 1px solid var(--stroke-blue, #404e5b);
}
.vip__cube__subtittle > img {
  margin-right: 12px;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.vip__cube__text {
  padding: 16px 0;
}
@media (max-width: 767px) {
  .vip__cube__text {
    padding: 10px;
    height: auto;
  }
}
.vip .vip__table-wrapper,
.vip .table {
  display: block;
  max-width: 100%;
  min-width: 0;
  overflow: auto;
  margin-bottom: 20px;
}
.vip .vip__table {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  table-layout: fixed;
  background-clip: padding-box;
}
.vip .vip__table::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;
  border: 1px solid var(--color-gray-black);
  pointer-events: none;
  z-index: 1;
}
.vip .vip__table__item {
  background-color: var(--color-black);
}
.vip .vip__table__body {
  background-color: var(--color-black-btn);
}
.vip .vip__table th,
.vip .vip__table td {
  box-sizing: border-box;
  white-space: nowrap;
  padding: 16px;
  border: none;
  border-bottom: 1px solid var(--color-gray-black);
  text-align: left;
}
.vip .vip__table td {
  padding: 12px 16px;
}
.vip .vip__table tbody tr:last-child td {
  border-bottom: none;
}
.vip .vip__table thead th,
.vip .vip__table tbody td {
  width: 33.3333333333%;
}
.vip .vip__thead {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .vip .vip__thead {
    font-size: 18px;
  }
}
.vip__background__image {
  background-image: url(./../../image/index/hero/Hero.webp);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  padding: 72px 30px;
  min-height: 480px;
}
.vip__image {
  flex: 1;
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* BONUS */
.deposit {
  min-height: 358px;
  padding-left: 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .deposit {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .deposit .background img {
    -o-object-position: 80%;
       object-position: 80%;
    opacity: 1;
  }
}
.deposit__pretittle {
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.deposit__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 480px) {
  .deposit__items {
    font-size: 24px;
  }
}
.deposit__items > span {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .deposit__items > span {
    font-size: 28px;
  }
}
.deposit__pretext {
  margin-bottom: 22px;
}
.deposit__pretext > p {
  position: relative;
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.deposit__button {
  margin: 0;
}

/* TOURNAMENT */
@media (max-width: 767px) {
  .tournament {
    text-align: center;
  }
}
.tournament__text__fog {
  color: var(--color-white-btn);
  margin-bottom: 20px;
}
.tournament__subtittle {
  margin-bottom: 12px;
}
.tournament__pretittle {
  margin-bottom: 12px;
}
.tournament__table-wrap {
  position: relative;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  margin-bottom: 20px;
}
.tournament__table {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  table-layout: fixed;
  background: transparent;
}
.tournament__table::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;
  border: 1px solid var(--color-gray-black);
  z-index: 2;
  pointer-events: none;
}
.tournament__table thead {
  background: var(--color-black);
}
.tournament__table tbody {
  background: var(--color-black-btn);
}
.tournament__table th,
.tournament__table td {
  width: 25%;
  padding: 16px;
  text-align: left;
  vertical-align: top;
  box-sizing: border-box;
  border-bottom: 1px solid var(--color-gray-black);
}
.tournament__table td {
  padding: 12px 16px;
}
.tournament__table .tournament__thead {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .tournament__table .tournament__thead {
    font-size: 18px;
  }
}
.tournament__table tbody tr:last-child td {
  border-bottom: none;
}
.tournament__unorder__list {
  position: relative;
  display: flex;
  margin-bottom: 16px;
  align-items: center;
}
.tournament__unorder__list > img {
  margin-right: 12px;
}
@media (max-width: 767px) {
  .tournament__unorder__list > img {
    width: 28px;
    height: 28px;
  }
}
.tournament__unorder__list:last-child {
  margin-bottom: 20px;
}
.tournament__unorder__text {
  flex: 1;
  padding: 14px 0;
  display: flex;
  align-items: center;
  margin: 0;
}
@media (max-width: 767px) {
  .tournament__unorder__text {
    text-align: left;
  }
}
.tournament__unorder__point {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px 0 0 12px;
  background: var(--color-black);
  z-index: 1;
}

/* ONLINE */
@media (max-width: 767px) {
  .online {
    text-align: center;
  }
}
.online__text__fog {
  color: var(--color-white-btn);
  margin-bottom: 20px;
}
.online__subtittle {
  margin-bottom: 20px;
}
.online__table-wrap {
  position: relative;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}
.online__table {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  table-layout: fixed;
  background: transparent;
  /* 6 рівних колонок */
}
.online__table::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;
  border: 1px solid var(--color-gray-black);
  z-index: 2;
  pointer-events: none;
}
.online__table thead {
  background: var(--color-black);
}
.online__table tbody {
  background: var(--color-black-btn);
}
.online__table th,
.online__table td {
  width: 16.6666666667%;
  padding: 16px;
  text-align: left;
  vertical-align: top;
  box-sizing: border-box;
  border-bottom: 1px solid var(--color-gray-black);
  /* white-space: nowrap; */
}
.online__table td {
  padding: 12px 16px;
}
.online__table .online__thead {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .online__table .online__thead {
    font-size: 18px;
  }
}
.online__table tbody tr:last-child td {
  border-bottom: none;
}

/* GAMES */
.games {
  /* Таблиця */
}
@media (max-width: 767px) {
  .games {
    text-align: center;
  }
}
.games__text__fog {
  color: var(--color-white-btn);
  margin-bottom: 20px;
}
.games__table-wrap {
  position: relative;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-radius: 12px;
}
.games__thead {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 767px) {
  .games__thead {
    font-size: 18px;
  }
}
.games__table {
  position: relative;
  width: max(100%, 1112px);
  min-width: 1112px;
  border-collapse: collapse;
  table-layout: fixed;
}
.games__table::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;
  border: 1px solid var(--color-gray-black);
  pointer-events: none;
}
.games__table th,
.games__table td {
  box-sizing: border-box;
  padding: 16px;
  vertical-align: top;
  text-align: left;
  overflow-wrap: anywhere;
  white-space: normal;
}
.games__table td {
  padding: 12px 16px;
}
.games__table__item {
  background: var(--color-black);
}
.games__table__sub {
  background-color: var(--color-black-btn);
  border-bottom: 1px solid var(--color-gray-black);
}
.games__table__sub:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}
.games__table thead tr > th:nth-child(1),
.games__table tbody tr > td:nth-child(1) {
  width: 20%;
}
.games__table thead tr > th:nth-child(2),
.games__table tbody tr > td:nth-child(2) {
  width: 40%;
}
.games__table thead tr > th:nth-child(3),
.games__table tbody tr > td:nth-child(3) {
  width: 40%;
}
.games__table tbody tr > td:nth-child(2) ul,
.games__table tbody tr > td:nth-child(3) ul {
  display: block;
  width: 406px;
  max-width: none;
  margin: 0;
}
.games__table tbody tr > td:nth-child(2) li,
.games__table tbody tr > td:nth-child(3) li {
  line-height: 1.5;
}
@media (max-width: 420px) {
  .games__table {
    min-width: 1016px; /* 406 / 0.4 ≈ 1015 */
    width: max(100%, 1016px);
  }
}

/* LIVE */
@media (max-width: 767px) {
  .live {
    text-align: center;
  }
}
.live__subtittle {
  margin-bottom: 20px;
}
.live__unorder__list {
  position: relative;
  margin-bottom: 12px;
  border-radius: 12px;
  padding: 12px 16px 12px 56px;
  border: 1px solid var(--color-gray-black);
  background: var(--color-black-btn);
}
.live__unorder__list:last-child {
  margin-bottom: 20px;
}
.live__unorder__point {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px 0 0 12px;
  background: var(--color-black);
  z-index: 1;
}
.live__unorder__point::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: block;
}
.live__unorder__text {
  flex-wrap: wrap;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 767px) {
  .live__unorder__text {
    text-align: left;
  }
}
.live__line {
  padding: 0 12px;
}
.live__unorder__change {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.live .hidden {
  display: none;
}
@media (max-width: 767px) {
  .live .hidden {
    display: block;
  }
}
.live .margin {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .live .margin {
    margin: 0;
  }
}
.live__image {
  flex: 1;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.live__text__fog {
  color: var(--color-white-btn);
  margin-bottom: 20px;
}
.live .line {
  padding: 0 12px;
}

/* LICENSE */
@media (max-width: 767px) {
  .license {
    text-align: center;
  }
}
.license__text__fog {
  color: var(--color-white-btn);
}
.license__text__fog:not(:last-child) {
  margin-bottom: 20px;
}

/* WITHDRAW */
@media (max-width: 767px) {
  .withdraw {
    text-align: center;
  }
}
.withdraw__text__fog {
  color: var(--color-white-btn);
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .withdraw .background img {
    -o-object-position: 82%;
       object-position: 82%;
    opacity: 0.4;
  }
}
.withdraw__unorder__item {
  margin-bottom: 20px;
}
.withdraw__unorder__list {
  display: flex;
  margin-bottom: 12px;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .withdraw__unorder__list > img {
    width: 28px;
    height: 28px;
    margin-right: 12px;
  }
}
.withdraw__unorder__list:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .withdraw__unorder__list {
    align-items: center;
  }
}
.withdraw__unorder__text {
  padding: 12px 16px;
  margin: 0;
  display: inline;
}
@media (max-width: 767px) {
  .withdraw__unorder__text {
    padding: 0;
    display: block;
  }
}
.withdraw__line {
  padding: 0 12px;
}
.withdraw__unorder__change {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.withdraw__unorder__change > img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .withdraw__unorder__change {
    margin: 0;
  }
}
.withdraw__unorder__undertext {
  margin: 0;
  margin-left: 12px;
  display: inline;
}
@media (max-width: 767px) {
  .withdraw__unorder__undertext {
    margin: 0;
    display: block;
    text-align: center;
  }
}
.withdraw__subtittle {
  margin-bottom: 12px;
}
.withdraw__item {
  margin-bottom: 20px;
}
.withdraw__list {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 16px;
}
@media (max-width: 767px) {
  .withdraw__list {
    align-items: baseline;
  }
}
.withdraw__list:not(:last-child) {
  margin-bottom: 12px;
}
.withdraw__point {
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--color-yellow);
  border-radius: 100%;
  flex-shrink: 0;
}
.withdraw__text > span {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 0 8px;
}

/* HIGHROLLER */
.highroller {
  min-height: 358px;
  padding-left: 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .highroller {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .highroller .background img {
    -o-object-position: 85%;
       object-position: 85%;
    opacity: 1;
  }
}
.highroller__pretittle {
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.highroller__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 24px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 480px) {
  .highroller__items {
    font-size: 22px;
  }
}
.highroller__items > span {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .highroller__items > span {
    font-size: 28px;
  }
}
.highroller__button {
  margin: 0;
}

/* SUPPORT */
@media (max-width: 767px) {
  .support {
    text-align: center;
  }
}
.support__text__fog {
  color: var(--color-white-btn);
}
.support__text__fog:not(:last-child) {
  margin-bottom: 20px;
}

/* REVIEWS */
@media (max-width: 767px) {
  .reviews {
    text-align: center;
  }
}
.reviews .margin {
  margin-bottom: 0;
}
.reviews__cube {
  position: relative;
  padding: 0;
}
.reviews__cube__header {
  display: flex;
  padding: 16px 0;
  align-items: center;
  border-bottom: 1px solid var(--stroke-blue, #404e5b);
}
.reviews__cube__subtittle {
  width: 200px;
}
@media (max-width: 767px) {
  .reviews__cube__subtittle {
    width: auto;
    margin-right: auto;
  }
}
.reviews__cube__star {
  display: block;
}
.reviews__cube__container {
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
}
.reviews__cube__container > img {
  padding-right: 10px;
}
@media (max-width: 1023px) {
  .reviews__cube__text {
    padding: 10px;
    height: auto;
  }
}

/* ASKED */
@media (max-width: 767px) {
  .asked {
    text-align: center;
  }
}
.asked__content-wrapper {
  max-height: none;
  overflow: visible;
}
.asked__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
.asked__list {
  border-radius: 12px;
  border: 1px solid var(--color-gray-black);
  margin-bottom: 20px;
  overflow: hidden;
}
.asked__list:last-child {
  margin-bottom: 0;
}
.asked__pretittle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  padding: 16px;
  margin: 0;
  transition: background-color 0.3s ease;
}
.asked__pretittle:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.asked__arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: rotate(135deg);
  transition: transform 0.4s ease-in-out;
  flex-shrink: 0;
  margin-left: 15px;
}
.asked__list.is-open .asked__pretittle {
  background-color: rgba(255, 255, 255, 0.05);
}
.asked__list.is-open .asked__arrow {
  transform: rotate(-45deg);
}
.asked__content {
  background: var(--color-black-btn);
}
.asked__text__fog {
  color: var(--color-white-btn);
  padding: 16px;
}

/* GRADE */
.grade__table-wrap {
  position: relative;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-radius: 12px;
}
.grade__table {
  position: relative;
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  table-layout: fixed;
}
.grade__table::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;
  border: 1px solid var(--color-gray-black);
  pointer-events: none;
}
.grade__table th,
.grade__table td {
  box-sizing: border-box;
  padding: 16px;
  vertical-align: top;
  text-align: left;
  overflow-wrap: anywhere;
  white-space: normal;
}
.grade__table td {
  padding: 12px 16px;
}
.grade__table__item {
  background: var(--color-black);
}
.grade__table__body {
  width: 100%;
}
.grade__table__sub {
  background-color: var(--color-black-btn);
  border-bottom: 1px solid var(--color-gray-black);
}
.grade__table__sub:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}
.grade__thead {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 767px) {
  .grade__thead {
    font-size: 18px;
  }
}
.grade__tread {
  word-wrap: break-word;
}
.grade .grade__table thead tr > th:nth-child(1),
.grade .grade__table tbody tr > td:nth-child(1) {
  width: 33.3333%;
}
.grade .grade__table thead tr > th:nth-child(2),
.grade .grade__table tbody tr > td:nth-child(2) {
  width: 33.3333%;
}
.grade .grade__table thead tr > th:nth-child(3),
.grade .grade__table tbody tr > td:nth-child(3) {
  width: 33.3333%;
}
.grade__star {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.grade__star img {
  display: block;
}
.grade__star {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
@media (max-width: 767px) {
  .grade__star {
    justify-content: center;
  }
}
.grade__star img {
  width: 26px;
  height: 24px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .grade__star img {
    width: 14px;
    height: 14px;
  }
}

/* CONCLUSION */
.conclusion__text__fog {
  color: var(--color-white-btn);
}
.conclusion__text__fog:not(:last-child) {
  margin-bottom: 12px;
}
.conclusion__items {
  display: flex;
}
@media (max-width: 767px) {
  .conclusion__items {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.conclusion__image {
  margin-right: 16px;
  width: 138px;
}
@media (max-width: 767px) {
  .conclusion__image {
    margin: 0;
  }
}
.conclusion__subtittle {
  margin-bottom: 12px;
}

.main__top {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -100;
}

.main__arrowtop {
  position: absolute;
  right: 20px;
  bottom: -120px;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.main__arrowtop {
  height: 95%;
}

.main__arrowtop a {
  position: sticky;
  z-index: 3;
  bottom: 10px;
  right: 0;
}

.main__arrowtop a:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  margin-top: 8px;
  padding: 33px 20px 33px 280px;
}
.footer__background {
  border-radius: 12px;
  background: var(--color-black-btn);
  padding: 32px;
}
@media (max-width: 767px) {
  .footer__background {
    padding: 32px 10px;
  }
}
.footer__country__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.footer__country__list {
  display: flex;
  margin: 0 12px 12px 0;
  padding: 7px;
  border-radius: 8px;
  border: 1px solid var(--stroke-blue, #404e5b);
  background: var(--color-black-btn);
  cursor: pointer;
}
.footer__country__image {
  margin-right: 8px;
}
.footer__line {
  display: block;
  border: 1px solid var(--color-gray-black);
}
.footer__links__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 30px;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .footer__links__items {
    flex-direction: column;
    padding: 20px 0;
    gap: 10px;
  }
}
.footer__links__list {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__links__list {
    margin-bottom: 10px;
  }
}
.footer__links__fog {
  color: var(--color-white-btn);
  transition: var(--transition-duration) ease;
}
.footer__links__fog:hover {
  color: var(--color-yellow);
}
.footer__icon__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  gap: 8px 8px;
}
.footer__icon__item > li {
  transition: var(--transition-duration) ease;
}
.footer__icon__item > li:hover {
  transform: scale(1.1);
}
.footer__icon__item > li > img {
  display: block;
}
.footer__last__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
@media (max-width: 480px) {
  .footer__last__container {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .footer__last__text {
    margin-bottom: 10px;
    text-align: center;
  }
}

.heroBonuses {
  border-radius: 12px;
  padding: 72px 30px;
  min-height: 480px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1280px) {
  .heroBonuses {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .heroBonuses .background img {
    -o-object-position: 82%;
       object-position: 82%;
    opacity: 1;
  }
}
.heroBonuses__button {
  margin: 0;
}

/* PROMOTIONS */
@media (max-width: 767px) {
  .promotions {
    text-align: center;
  }
}
.promotions__text__fog {
  color: var(--color-white-btn);
}
.promotions__text__fog:not(:last-child) {
  margin-bottom: 12px;
}

/* WELCOME */
@media (max-width: 767px) {
  .welcome {
    text-align: center;
  }
}
.welcome__cube {
  flex: 1;
}
.welcome .margin {
  margin-bottom: 0;
}
.welcome__text__fog {
  color: var(--color-white-btn);
}
.welcome__text__fog > span {
  color: var(--color-yellow);
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
}
.welcome__text__fog:not(:last-child) {
  margin-bottom: 20px;
}
.welcome__subtittle {
  margin-bottom: 20px;
}
.welcome__background {
  margin-bottom: 20px;
}
@media (max-width: 1280px) {
  .welcome__background {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .welcome__background {
    padding: 10px;
  }
}
.welcome__items__container {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}
@media (max-width: 1280px) {
  .welcome__items__container {
    flex-direction: column;
    width: 80%;
    align-items: center;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .welcome__items__container {
    width: 100%;
  }
}
@media (max-width: 1280px) {
  .welcome__cube {
    padding: 16px;
    width: 100%;
  }
}
.welcome__pretittle {
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-gray-black);
}
.welcome__pretittle > img {
  width: 28px;
  height: 28px;
  aspect-ratio: 1/1;
  margin-right: 12px;
}
.welcome__items {
  padding-top: 16px;
}
.welcome__list {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}
.welcome__list:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .welcome__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.welcome__point {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
.welcome__text__tittle {
  display: flex;
  align-items: center;
  margin-right: 12px;
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 767px) {
  .welcome__text__tittle {
    margin: 0;
    margin-bottom: 10px;
  }
}
.welcome__text__pretittle {
  width: 55%;
}
@media (max-width: 767px) {
  .welcome__text__pretittle {
    text-align: center;
    width: 100%;
  }
}
.welcome__unorder__list {
  position: relative;
  display: flex;
  margin-bottom: 12px;
  align-items: stretch;
  border-radius: 12px;
  padding: 12px 16px 12px 56px;
  border: 1px solid var(--color-gray-black);
  background: var(--color-black-btn);
}
.welcome__unorder__list:last-child {
  margin-bottom: 20px;
}
.welcome__unorder__point {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px 0 0 12px;
  background: var(--color-black);
  z-index: 1;
}
.welcome__unorder__point::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: block;
}
.welcome__unorder__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .welcome__unorder__text {
    text-align: left;
  }
}
.welcome__unorder__change {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 8px;
}
.welcome__double__pros__list {
  padding: 0 16px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}
.welcome__double__pros__list:last-child {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .welcome__double__pros__list {
    padding: 0 12px;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
  }
  .welcome__double__pros__list:last-child {
    margin-bottom: 16px;
  }
}
.welcome__container__items {
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .welcome__container__items {
    margin-right: 0;
    margin-bottom: 8px;
    white-space: normal;
    flex-shrink: 0;
  }
}
.welcome__point {
  margin-right: 8px;
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--color-yellow);
  border-radius: 50px;
}
@media (max-width: 767px) {
  .welcome__point {
    margin-right: 6px;
    width: 5px;
    height: 5px;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .welcome__text__fog {
    font-size: 14px;
    line-height: 1.4;
  }
  .welcome__text__fog span {
    font-weight: 400;
    color: var(--color-yellow);
  }
}
@media (max-width: 767px) {
  .welcome__double__pros__items {
    padding: 0;
    margin: 0;
  }
}

/* RELOAD */
@media (max-width: 767px) {
  .reload {
    text-align: center;
  }
}
.reload__text__fog {
  color: var(--color-white-btn);
}
.reload__text__fog:not(:last-child) {
  margin-bottom: 20px;
}
.reload .margin {
  margin-bottom: 20px;
}
.reload .little {
  margin-bottom: 12px;
}
.reload__subtittle {
  margin-bottom: 12px;
}
.reload__unorder__list {
  display: flex;
  margin-bottom: 12px;
  align-items: stretch;
  position: relative;
}
.reload__unorder__list > img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .reload__unorder__list > img {
    width: 28px;
    height: 28px;
  }
}
.reload__unorder__list:last-child {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .reload__unorder__list {
    height: auto;
    align-items: center;
  }
}
.reload__unorder__text {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 14px 12px;
  margin: 0;
}
@media (max-width: 767px) {
  .reload__unorder__text {
    text-align: left;
  }
}

/* CASINO */
.casino {
  min-height: 358px;
  padding-left: 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .casino {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .casino .background img {
    -o-object-position: 85%;
       object-position: 85%;
    opacity: 1;
  }
}
.casino__pretittle {
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.casino__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 24px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 480px) {
  .casino__items {
    font-size: 22px;
  }
}
.casino__items > span {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .casino__items > span {
    font-size: 28px;
  }
}
.casino__button {
  margin: 0;
}

/* SLOT */
@media (max-width: 767px) {
  .slot {
    text-align: center;
  }
}
.slot__text__fog {
  color: var(--color-white-btn);
}
.slot__text__fog:not(:last-child) {
  margin-bottom: 20px;
}
.slot__subtittle:not(:last-child) {
  margin-bottom: 12px;
}
.slot__pretittle {
  margin-bottom: 12px;
}
.slot__unorder__list {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  align-items: stretch;
  position: relative;
}
.slot__unorder__list > img {
  width: 48px;
  height: 48px;
}
@media (max-width: 767px) {
  .slot__unorder__list > img {
    width: 28px;
    height: 28px;
  }
}
.slot__unorder__list:last-child {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .slot__unorder__list {
    height: auto;
    align-items: center;
  }
}
.slot__unorder__text {
  flex: 1;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 14px 12px;
}
@media (max-width: 767px) {
  .slot__unorder__text {
    text-align: left;
  }
}
.slot__unorder__point {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px 0 0 12px;
  background: var(--color-black);
  z-index: 1;
}
.slot__unorder__point::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: block;
}

/* PROGRAM */
@media (max-width: 767px) {
  .program {
    text-align: center;
  }
}
.program__text__fog {
  color: var(--color-white-btn);
}
.program__text__fog:not(:last-child) {
  margin-bottom: 20px;
}
.program__subtittle:not(:last-child) {
  margin-bottom: 12px;
}
.program__pretittle {
  margin-bottom: 12px;
}
.program__unorder__list {
  display: flex;
  margin-bottom: 12px;
  align-items: stretch;
  position: relative;
}
.program__unorder__list > img {
  width: 48px;
  height: 48px;
}
@media (max-width: 767px) {
  .program__unorder__list > img {
    width: 28px;
    height: 28px;
  }
}
.program__unorder__list:last-child {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .program__unorder__list {
    height: auto;
    align-items: center;
  }
}
.program__unorder__text {
  flex: 1;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 14px 12px;
}
@media (max-width: 767px) {
  .program__unorder__text {
    text-align: left;
  }
}
.program__table-wrap {
  position: relative;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-radius: 12px;
  margin-bottom: 20px;
}
.program__table {
  position: relative;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 800px;
  width: 100%;
}
.program__table::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;
  border: 1px solid var(--color-gray-black);
  pointer-events: none;
}
.program__table th,
.program__table td {
  box-sizing: border-box;
  padding: 16px;
  vertical-align: top;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
}
.program__table td {
  padding: 12px 16px;
}
.program__table__item {
  background: var(--color-black);
}
.program__table__body {
  width: 100%;
}
.program__table__sub {
  background: var(--color-black-btn);
  border-bottom: 1px solid var(--color-gray-black);
}
.program__table__sub:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}
.program__table thead tr > th:nth-child(1),
.program__table thead tr > th:nth-child(2),
.program__table thead tr > th:nth-child(3),
.program__table tbody tr > td:nth-child(1),
.program__table tbody tr > td:nth-child(2),
.program__table tbody tr > td:nth-child(3) {
  width: 33.333%;
}
.program__thead {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 767px) {
  .program__thead {
    font-size: 18px;
  }
}
.program__tread {
  word-wrap: break-word;
}

/* CASHBACK */
@media (max-width: 767px) {
  .cashback {
    text-align: center;
  }
}
.cashback__cube {
  flex: 1;
}
.cashback__text__fog {
  color: var(--color-white-btn);
}
.cashback__text__fog:not(:last-child) {
  margin-bottom: 20px;
}
.cashback__subtittle {
  margin-bottom: 20px;
}
.cashback__pretittle {
  margin-bottom: 12px;
}
.cashback__items {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
}
.cashback__items__list {
  position: relative;
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .cashback__items__list > img {
    width: 28px;
    height: 28px;
  }
}
.cashback__items__list:not(:last-child) {
  margin-bottom: 16px;
}
.cashback__items__container {
  padding: 12px 0 0 16px;
}
.cashback__items__text {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cashback__items__text {
    text-align: left;
  }
}
.cashback__items__subtext {
  display: flex;
  align-items: center;
  padding-left: 16px;
}
.cashback__items__subtext:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cashback__items__subtext {
    padding: 0;
    text-align: left;
  }
}
.cashback__pointer {
  margin-right: 12px;
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background-color: var(--color-yellow);
  border-radius: 50px;
}

/* WEDNESDAY */
.wednesday {
  min-height: 358px;
  padding-left: 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .wednesday {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .wednesday .background img {
    -o-object-position: 82%;
       object-position: 82%;
    opacity: 1;
  }
}
.wednesday__pretittle {
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.wednesday__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 480px) {
  .wednesday__items {
    font-size: 22px;
  }
}
.wednesday__items > span {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .wednesday__items > span {
    font-size: 28px;
  }
}
.wednesday__pretext {
  margin-bottom: 24px;
}
.wednesday__pretext > p {
  position: relative;
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.wednesday__button {
  margin: 0;
}

/* GLORY */
@media (max-width: 767px) {
  .glory {
    text-align: center;
  }
}
.glory__text__fog {
  color: var(--color-white-btn);
}
.glory__text__fog:not(:last-child) {
  margin-bottom: 20px;
}
.glory__subtittle {
  margin-bottom: 12px;
}
.glory__subtittle:last-of-type {
  margin-bottom: 20px;
}
.glory__pretittle {
  margin-bottom: 12px;
}
.glory__unorder__list {
  display: flex;
  margin-bottom: 12px;
  align-items: stretch;
  position: relative;
}
@media (max-width: 767px) {
  .glory__unorder__list > img {
    width: 28px;
    height: 28px;
  }
}
.glory__unorder__list:last-child {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .glory__unorder__list {
    align-items: center;
  }
}
.glory__unorder__text {
  flex: 1;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 14px 12px;
}
@media (max-width: 767px) {
  .glory__unorder__text {
    text-align: left;
  }
}
.glory__image {
  flex: 1;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.glory__items {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
}
.glory__items__list {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .glory__items__list {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .glory__items__list > img {
    width: 28px;
    height: 28px;
  }
}
.glory__items__list:not(:last-child) {
  margin-bottom: 16px;
}
.glory__items__container {
  padding: 12px 0 0 16px;
}
.glory__items__text {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .glory__items__text {
    text-align: left;
  }
}
.glory__items__subtext {
  display: flex;
  align-items: center;
  padding-left: 16px;
}
.glory__items__subtext:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .glory__items__subtext {
    padding: 0;
    text-align: left;
  }
}
.glory__pointer {
  margin-right: 12px;
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background-color: var(--color-yellow);
  border-radius: 50px;
}

/* LIMITED */
@media (max-width: 767px) {
  .limited {
    text-align: center;
  }
}
.limited__text__fog {
  color: var(--color-white-btn);
  position: relative;
  margin-bottom: 20px;
}
.limited__subtittle {
  margin-bottom: 12px;
  position: relative;
}
.limited__pretittle {
  margin-bottom: 12px;
}
.limited__margin {
  margin-bottom: 12px;
}
.limited__items {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
}
.limited__items__list {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .limited__items__list {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .limited__items__list > img {
    width: 28px;
    height: 28px;
  }
}
.limited__items__list:not(:last-child) {
  margin-bottom: 16px;
}
.limited__items__container {
  padding: 12px 0 0 16px;
}
.limited__items__text {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .limited__items__text {
    text-align: left;
  }
}
.limited__items__subtext {
  display: flex;
  align-items: center;
  padding-left: 16px;
}
.limited__items__subtext:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .limited__items__subtext {
    padding: 0;
    text-align: left;
  }
}
.limited__pointer {
  margin-right: 12px;
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background-color: var(--color-yellow);
  border-radius: 50px;
}
.limited__unorder__list {
  display: flex;
  margin-bottom: 12px;
  align-items: stretch;
  position: relative;
}
@media (max-width: 767px) {
  .limited__unorder__list > img {
    width: 28px;
    height: 28px;
  }
}
.limited__unorder__list:last-child {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .limited__unorder__list {
    align-items: center;
  }
}
.limited__unorder__text {
  flex: 1;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 14px 12px;
}
@media (max-width: 767px) {
  .limited__unorder__text {
    text-align: left;
  }
}

/* PLAY */
@media (max-width: 767px) {
  .play {
    text-align: center;
  }
}
.play__text__fog {
  color: var(--color-white-btn);
  margin-bottom: 12px;
}
.play__text__fog:last-of-type {
  margin-bottom: 0;
}
.play__subtittle {
  margin-bottom: 12px;
}
.play__unorder__list {
  position: relative;
  display: flex;
  margin-bottom: 12px;
  align-items: stretch;
  border-radius: 12px;
  padding: 12px 16px 12px 56px;
  border: 1px solid var(--color-gray-black);
  background: var(--color-black-btn);
}
.play__unorder__list:last-child {
  margin-bottom: 20px;
}
.play__unorder__point {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px 0 0 12px;
  background: var(--color-black);
  z-index: 1;
}
.play__unorder__point::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: block;
}
.play__unorder__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .play__unorder__text {
    text-align: left;
  }
}
.play__unorder__change {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ENJOY */
.enjoy {
  min-height: 358px;
  padding-left: 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .enjoy {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .enjoy .background img {
    -o-object-position: 83%;
       object-position: 83%;
    opacity: 1;
  }
}
.enjoy__subtittle {
  font-size: 32px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .enjoy__subtittle {
    font-size: 24px;
  }
}
.enjoy__button {
  margin: 0;
}

/* heroAPP */
.heroApp {
  border-radius: 12px;
  padding: 72px 30px;
  min-height: 480px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1280px) {
  .heroApp {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .heroApp .background img {
    -o-object-position: 78%;
       object-position: 78%;
    opacity: 1;
  }
}
.heroApp__button {
  margin: 0;
}

/* casinoAPP */
@media (max-width: 767px) {
  .casinoApp {
    text-align: center;
  }
}
.casinoApp__text__fog {
  color: var(--color-white-btn);
}
.casinoApp__text__fog:not(:last-child) {
  margin-bottom: 20px;
}

/* INSTALL */
.install__text__fog {
  color: var(--color-white-btn);
  margin-bottom: 20px;
}
.install__subtittle {
  margin-bottom: 20px;
}
.install__double__item {
  margin-bottom: 20px;
}
.install__pretittle {
  margin-bottom: 20px;
}
.install .border {
  border-bottom: 1px solid var(--color-gray-black);
  padding: 16px 0;
}
.install__container {
  padding: 20px 0;
  border-radius: 12px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .install__container {
    padding: 0;
  }
}
.install .marginInstall {
  margin-bottom: 40px;
}
.install__items__subtext {
  display: flex;
  align-items: center;
  padding-left: 16px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .install__items__subtext {
    padding: 0;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .install__items {
    padding: 10px;
  }
}
.install__items__list {
  position: relative;
  display: flex;
  margin-bottom: 20px;
}
.install__items__list:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .install__items__list {
    align-items: center;
    width: 100%;
  }
}
.install__items__number {
  display: flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 40px;
  background: linear-gradient(0deg, #fb8a00 0%, #fc2626 100%);
  color: var(--color-white-btn);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .install__items__number {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}
.install__items__text {
  padding: 12px 16px 16px 16px;
}
@media (max-width: 767px) {
  .install__items__text {
    text-align: left;
  }
}
.install__double__container {
  padding: 0;
}
.install .width {
  width: 100%;
}
@media (max-width: 767px) {
  .install .download__button__apple,
  .install .download__button__android {
    margin: 0 auto;
  }
}

/* BENEFITS */
@media (max-width: 767px) {
  .benefits {
    text-align: center;
  }
}
.benefits__text__fog {
  color: var(--color-white-btn);
}
.benefits__text__fog:not(:last-child) {
  margin-bottom: 20px;
}
.benefits__items {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
}
.benefits__items__list {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .benefits__items__list > img {
    width: 28px;
    height: 28px;
  }
}
.benefits__items__list:not(:last-child) {
  margin-bottom: 16px;
}
.benefits__items__container {
  padding: 12px 0 0 16px;
}
.benefits__items__text {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .benefits__items__text {
    text-align: left;
  }
}
.benefits__items__subtext {
  display: flex;
  align-items: baseline;
  padding-left: 16px;
}
.benefits__items__subtext .center {
  align-items: center;
}
.benefits__items__subtext:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .benefits__items__subtext {
    padding: 0;
    text-align: left;
  }
}
.benefits__pointer {
  margin-right: 12px;
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background-color: var(--color-yellow);
  border-radius: 50px;
}

/* DEVICE */
@media (max-width: 767px) {
  .device {
    text-align: center;
  }
}
.device__text__fog {
  color: var(--color-white-btn);
  margin-bottom: 20px;
}
.device__text__fog > span {
  color: var(--color-yellow);
  padding-right: 8px;
}
.device__pretittle {
  margin-bottom: 20px;
}
.device .margin {
  margin-bottom: 0;
}
.device .border {
  border-bottom: 1px solid var(--color-gray-black);
  padding: 16px 0;
}
.device__margin {
  margin-bottom: 12px;
}
.device__subtittle {
  margin-bottom: 12px;
}
.device__subtittle:last-of-type {
  margin-bottom: 20px;
}
.device__double__pros__items {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .device__double__pros__items {
    padding: 0;
  }
}
.device__unorder__list {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  align-items: stretch;
  position: relative;
}
.device__unorder__list > img {
  width: 48px;
  height: 48px;
}
@media (max-width: 767px) {
  .device__unorder__list > img {
    width: 28px;
    height: 28px;
  }
}
.device__unorder__list:last-child {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .device__unorder__list {
    height: auto;
    align-items: center;
  }
}
.device__unorder__text {
  flex: 1;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 14px 12px;
}
@media (max-width: 767px) {
  .device__unorder__text {
    text-align: left;
  }
}

/* VERSION */
@media (max-width: 767px) {
  .version {
    text-align: center;
  }
}
.version__text__fog {
  color: var(--color-white-btn);
  margin-bottom: 20px;
}

/* RESPONSIBLE */
@media (max-width: 767px) {
  .responsible__tittle {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .responsible {
    text-align: center;
  }
}
.responsible__text__fog {
  color: var(--color-white-btn);
}
.responsible__text__fog:not(:last-child) {
  margin-bottom: 20px;
}/*# sourceMappingURL=style.css.map */