@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: #2e394d;
  --color-yellow: #fcc211;
  --color-white: #ffffff;
  --color-white-btn: #fff5d6;
  --color-black-btn: #23293a;
  --color-red: #e93e3a;
  --color-red-alt: #4e0101;
  --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;
}
@media (max-width: 1200px) {
  .main {
    padding: 100px 0 0 0;
  }
}

.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;
  padding: 20px;
  background-color: var(--color-black-btn);
}
@media (max-width: 767px) {
  .content__section {
    padding: 10px;
  }
}

.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 {
  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-color: var(--color-black);
  border-radius: 12px;
}
@media (max-width: 1200px) {
  .background {
    border-radius: 0;
  }
}

.background img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .background img {
    border-radius: 0;
  }
}

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

* {
  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-flex;
  justify-content: center;
  width: 190px;
  height: 50px;
  padding: 16px 32px;
  text-align: center;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border: none;
  cursor: pointer;
  background: var(--color-red);
  clip-path: path("M10.3202 0.5H179.944C185.793 0.5 190.765 5.43744 189.902 10.3874L184.594 40.5995C183.731 45.5495 177.02 50.4994 171.17 50.4994H17.6316C11.7825 50.4994 5.20226 45.537 4.47112 40.5745L0.0696747 10.4124C-0.661463 5.44994 4.47112 0.5 10.3202 0.5Z");
  transition: transform var(--transition-duration) ease-out, box-shadow var(--transition-duration) ease-out;
}

.btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 8px 15px rgba(233, 62, 58, 0.4);
}

.headline {
  color: var(--color-white);
  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;
  }
}

p,
span {
  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;
}
@media (max-width: 767px) {
  p,
  span {
    text-align: left;
  }
}

.up,
.down {
  display: block;
  height: 70px;
  width: 100%;
}
@media (max-width: 1023px) {
  .up,
  .down {
    height: 50px;
  }
}
@media (max-width: 767px) {
  .up,
  .down {
    height: 30px;
  }
}

h2 {
  position: relative;
  margin-bottom: 20px;
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  word-break: normal;
}
@media (max-width: 1023px) {
  h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 22px;
  }
}

h3 {
  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;
  word-break: normal;
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  word-break: normal;
}
@media (max-width: 767px) {
  h4 {
    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.6);
    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;
  height: auto;
  margin-top: 0;
  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;
  background: var(--color-black-btn);
  padding-top: 4px;
  margin-top: 8px;
}
@media (max-width: 1200px) {
  .logo {
    background: none;
    border-radius: 0;
    width: 120px;
    padding-top: 0;
    margin-top: 0;
  }
}

.logo img {
  display: block;
  max-width: 260px;
}

.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 40px;
  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);
  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 122 42' fill='none'%3E%3Cpath d='M113.303 40.0479H8.4368C4.40346 40.0479 0.975128 36.2861 1.57005 32.5148L5.23029 9.49674C5.82521 5.72547 10.4535 1.9542 14.4868 1.9542H108.262C112.295 1.9542 116.833 5.73499 117.337 9.51579L120.372 32.4958C120.876 36.2766 117.337 40.0479 113.303 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 40px;
    font-size: 12px;
  }
}

.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'  viewBox='0 0 134 42' fill='none'%3E%3Cpath d='M9.06058 1.95215H125.939C129.97 1.95215 133.395 5.71411 132.801 9.4856L129.143 32.505C128.549 36.2765 123.924 40.048 119.894 40.048H14.0985C10.0682 40.048 5.53406 36.267 5.03028 32.4859L1.99747 9.50464C1.49368 5.72363 5.03028 1.95215 9.06058 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 {
    margin-right: 0;
    padding: 13px 40px;
    font-size: 12px;
    display: block;
  }
}

/* Languages */
.header__language {
  text-transform: uppercase;
  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-PRIME */
.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: 1200px) {
  .hero {
    border-radius: 0;
  }
}
@media (max-width: 1280px) {
  .hero {
    align-items: center;
    text-align: center;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .hero .background img {
    -o-object-position: 92%;
       object-position: 92%;
    opacity: 1;
  }
}
.hero > div > div {
  margin-bottom: 8px;
  display: flex;
}
.hero > div > div > span {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}
.hero > div > div > span:first-child {
  margin-right: 12px;
}
.hero__tittle {
  margin-bottom: 8px;
  max-width: 720px;
  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: 32px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero__tittle {
    font-size: 28px;
    text-align: center;
  }
}
.hero > div > p {
  margin-bottom: 24px;
  max-width: 610px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 1023px) {
  .hero > div > p {
    text-align: center;
  }
}

/* REGULATION */
@media (max-width: 1023px) {
  .regulation__tittle {
    text-align: left;
  }
}
.regulation > p:not(:last-child) {
  margin-bottom: 20px;
}
.regulation > h3 {
  margin-bottom: 20px;
}
.regulation > h4 {
  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;
}
.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;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  border-bottom: 1px solid var(--color-gray-black);
}
.regulation table thead {
  background: var(--color-black);
}
.regulation table tbody {
  background-color: var(--color-black-btn);
}
.regulation table tr {
  border-bottom: 1px solid var(--color-gray-black);
}
.regulation table tr:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}
.regulation table th {
  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 table th {
    font-size: 18px;
  }
}
.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 > img {
  flex: 1;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

/* 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;
}
@media (max-width: 767px) {
  .sidebar__item {
    padding: 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 > span {
  font-weight: 700;
}

.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 {
  left: 8px;
  top: 6px;
}

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

.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: 20px;
  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: 34px;
  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;
  padding: 0;
}

.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;
  background: none;
}
@media (max-width: 1200px) {
  .bonus {
    border-radius: 0;
  }
}
@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;
    text-align: center;
  }
}
.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;
  line-height: normal;
}
@media (max-width: 480px) {
  .bonus__items > span {
    font-size: 28px;
    text-align: center;
  }
}
.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;
  line-height: normal;
}
@media (max-width: 1023px) {
  .bonus__pretext > p {
    text-align: center;
  }
}
.bonus__pretext__button {
  margin: 0;
}
@media (max-width: 767px) {
  .bonus .background img {
    -o-object-position: 77%;
       object-position: 77%;
    opacity: 1;
  }
}

/* REGISTER */
@media (max-width: 767px) {
  .register {
    text-align: left;
  }
}
.register > p {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .register .background img {
    -o-object-position: 86%;
       object-position: 86%;
    opacity: 0.4;
  }
}
.register .mb20 {
  margin-bottom: 20px;
}
.register .m0 {
  margin: 0;
}
.register > h3 {
  margin-bottom: 16px;
}
.register .content__section__row {
  display: flex;
  align-items: center;
}
.register__cube {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.register__cube > h3 {
  margin-bottom: 16px;
}
.register__cube > p {
  margin-bottom: 20px;
}
.register__cube > ul:first-of-type {
  counter-reset: my-list-counter;
}
.register__cube > ul:first-of-type > li {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-black);
}
.register__cube > ul:first-of-type > li:last-child {
  margin-bottom: 20px;
}
.register__cube > ul:first-of-type > li::before {
  content: counter(my-list-counter);
  counter-increment: my-list-counter;
  display: flex;
  width: 30px;
  height: 30px;
  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);
  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__cube > ul:first-of-type > li::before {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}
.register__cube > ul:first-of-type > li > p {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  position: relative;
}
@media (max-width: 767px) {
  .register__cube > ul:first-of-type > li > p {
    text-align: left;
  }
}
.register__cube > ul:first-of-type > li > p > span:first-of-type {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 4px;
}
.register__cube > ul:first-of-type > li > p > span:last-of-type {
  padding-left: 30px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.register__cube > ul:first-of-type > li > p > span:last-of-type::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  margin-left: 12px;
  width: 6px;
  height: 6px;
  background-color: var(--color-white);
  border-radius: 100%;
  flex-shrink: 0;
}
.register__cube > ul {
  counter-reset: my-list-counter;
}
.register__cube > ul > li {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-black);
}
.register__cube > ul > li::before {
  content: counter(my-list-counter);
  counter-increment: my-list-counter;
  display: flex;
  width: 30px;
  height: 30px;
  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);
  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__cube > ul > li::before {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}
.register__cube > ul > li > p {
  padding: 0 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-yellow);
}
@media (max-width: 767px) {
  .register__cube > ul > li > p {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .register__cube > img {
    margin: 10px 0;
  }
}

/* APP */
.app > h2 {
  margin-bottom: 12px;
}
.app > p {
  margin-bottom: 12px;
}
.app > p:last-of-type {
  margin-bottom: 0;
}

/* DOWNLOAD */
.download {
  padding: 120px 116px;
  border-radius: 12px;
  background: none;
}
@media (max-width: 1200px) {
  .download {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .download {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .download .background img {
    -o-object-position: 47%;
       object-position: 47%;
    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: 240px;
  height: 68px;
  padding: 16px 32px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 100px;
  text-align: center;
  background: var(--color-red);
  transition: var(--transition-duration);
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
@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__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: left;
  }
}
.promotion .mb20 {
  margin-bottom: 20px;
}
.promotion > p {
  margin-bottom: 20px;
}
.promotion > h3 {
  margin-bottom: 12px;
}
.promotion__cube {
  position: relative;
  border-radius: 12px;
  background: var(--color-light-blue);
  padding: 0;
}
.promotion__cube::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;
  border: 1px solid var(--color-gray-black);
  z-index: 1;
  pointer-events: none;
}
.promotion__cube > h4 {
  padding: 16px;
  background: var(--color-black);
}
.promotion__cube > P {
  padding: 16px;
}
@media (max-width: 767px) {
  .promotion__cube > P {
    padding: 10px;
    height: auto;
  }
}
.promotion__cube > P > span {
  position: relative;
  display: flex;
  align-items: baseline;
  margin-top: 14px;
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.promotion__cube > P > span:first-of-type {
  margin-top: 16px;
}
.promotion__cube > P > span::before {
  content: "";
  position: relative;
  top: -3px;
  width: 6px;
  height: 6px;
  background: var(--color-yellow);
  border-radius: 50%;
  margin-left: 12px;
  margin-right: 8px;
  flex-shrink: 0;
  display: block;
}
.promotion__cube > P > span > span {
  margin-left: 8px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.promotion > ul:first-of-type {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .promotion > ul:first-of-type {
    flex-direction: column;
    gap: 16px;
  }
}
.promotion > ul:first-of-type > li {
  display: flex;
  flex-basis: calc(50% - 10px);
  flex-grow: 0;
  position: relative;
  padding: 0;
  flex-direction: column;
}
.promotion > ul:first-of-type > li::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;
  border: 1px solid var(--color-gray-black);
  z-index: 1;
  pointer-events: none;
}
.promotion > ul:first-of-type > li > h4 {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px;
  background-color: var(--color-black);
  border-radius: 12px 12px 0 0;
}
.promotion > ul:first-of-type > li > P {
  flex-grow: 1;
  padding: 16px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  background-color: var(--color-light-blue);
  border-radius: 0 0 12px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .promotion > ul:first-of-type > li > P {
    height: auto;
  }
}
.promotion > ul:first-of-type > li > P > span {
  position: relative;
  display: flex;
  align-items: baseline;
  margin-top: 14px;
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.promotion > ul:first-of-type > li > P > span:first-of-type {
  margin-top: 16px;
}
.promotion > ul:first-of-type > li > P > span::before {
  content: "";
  position: relative;
  top: -3px;
  width: 6px;
  height: 6px;
  background: var(--color-yellow);
  border-radius: 50%;
  margin-left: 12px;
  margin-right: 8px;
  flex-shrink: 0;
  display: block;
}
.promotion > ul:first-of-type > li > P > span > span {
  margin-left: 8px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.promotion > ul:last-of-type {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .promotion > ul:last-of-type {
    flex-direction: column;
    gap: 16px;
  }
}
.promotion > ul:last-of-type > li {
  display: flex;
  flex-basis: calc(50% - 10px);
  flex-grow: 0;
  position: relative;
  padding: 0;
  flex-direction: column;
}
.promotion > ul:last-of-type > li > h4 {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px;
  background-color: var(--color-black);
  border-radius: 12px 12px 0 0;
}
.promotion > ul:last-of-type > li > p {
  flex-grow: 1;
  padding: 16px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  background-color: var(--color-light-blue);
  border-radius: 0 0 12px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .promotion > ul:last-of-type > li > p {
    height: auto;
  }
}

/* VIP */
@media (max-width: 767px) {
  .vip {
    text-align: left;
  }
}
.vip > p {
  margin-bottom: 20px;
}
.vip > h3 {
  margin-bottom: 12px;
}
.vip .mb12 {
  margin-bottom: 12px;
}
.vip .mb20 {
  margin-bottom: 20px;
}
.vip .width {
  width: 50%;
}
@media (max-width: 767px) {
  .vip .width {
    width: 100%;
  }
}
.vip > ul {
  margin-bottom: 20px;
}
.vip > ul > li {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-black);
}
.vip > ul > li:last-child {
  margin-bottom: 0;
}
.vip > ul > li::before {
  content: "";
  background-image: url(./../images/index/utils/iconFireball.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
}
.vip > ul > li > p {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 38px;
  position: relative;
}
@media (max-width: 767px) {
  .vip > ul > li > p {
    text-align: left;
  }
}
.vip > ul > li > p > span:first-of-type {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 4px;
}
.vip > ul > li > p > span:last-of-type {
  padding-left: 30px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.vip > ul > li > p > span:last-of-type::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  margin-left: 12px;
  width: 6px;
  height: 6px;
  background-color: var(--color-white);
  border-radius: 100%;
  flex-shrink: 0;
}
.vip > img {
  flex: 1;
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
}

/* DEPOSIT */
.deposit {
  min-height: 368px;
  padding-left: 120px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  background: none;
}
@media (max-width: 1200px) {
  .deposit {
    border-radius: 0;
  }
}
@media (max-width: 1023px) {
  .deposit {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.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: 22px;
  }
}
.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;
  white-space: nowrap;
  line-height: normal;
}
@media (max-width: 480px) {
  .deposit__items > span {
    font-size: 28px;
  }
}
.deposit__pretext {
  margin-bottom: 24px;
}
.deposit__pretext > p {
  position: relative;
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.deposit__pretext__button {
  margin: 0;
}
@media (max-width: 767px) {
  .deposit .background img {
    -o-object-position: 80%;
       object-position: 80%;
    opacity: 1;
  }
}

/* TOURNAMENT */
@media (max-width: 767px) {
  .tournament {
    text-align: left;
  }
}
.tournament > p {
  margin-bottom: 20px;
}
.tournament > img {
  flex: 1;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

/* ONLINE */
@media (max-width: 767px) {
  .online {
    text-align: left;
  }
}
.online > p {
  margin-bottom: 20px;
}
.online > p:last-of-type {
  margin-bottom: 0;
}
.online > h3 {
  margin-bottom: 20px;
}
.online .table-wrap {
  position: relative;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  margin-bottom: 20px;
}
.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;
}
.online table th {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .online table th {
    font-size: 18px;
  }
}
.online table td {
  padding: 12px 16px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  border-bottom: 1px solid var(--color-gray-black);
}
.online table tbody tr:last-child td {
  border-bottom: none;
}
.online > img {
  flex: 1;
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* GAMES */
@media (max-width: 767px) {
  .games {
    text-align: left;
  }
}
.games > p {
  margin-bottom: 12px;
}
.games > p:first-of-type, .games > p:last-of-type {
  margin-bottom: 20px;
}
.games > h3 {
  margin-bottom: 12px;
}
.games > img {
  flex: 1;
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}
.games > ul {
  margin-bottom: 20px;
}
.games > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-black);
}
@media (max-width: 767px) {
  .games > ul > li {
    align-items: flex-start;
  }
}
.games > ul > li > p {
  -webkit-hyphens: auto;
          hyphens: auto;
  padding: 0 0 0 38px;
}
@media (max-width: 767px) {
  .games > ul > li > p {
    text-align: left;
  }
}
.games > ul > li > p::before {
  content: "";
  background-image: url("./../images/index/utils/iconFireball.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
}
.games > ul > li > p > span:first-child {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.games > ul > li > p > span:last-child {
  padding: 0 12px;
}

/* LIVE */
@media (max-width: 767px) {
  .live {
    text-align: left;
  }
}
.live > h2 {
  margin-bottom: 12px;
}
.live > p {
  margin-bottom: 12px;
}
.live > p:last-of-type {
  margin-bottom: 0;
}
.live > ul {
  margin-bottom: 20px;
}
.live > ul:last-of-type > li > p::before {
  top: -2px;
}
.live > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-black);
}
@media (max-width: 767px) {
  .live > ul > li {
    align-items: flex-start;
  }
}
.live > ul > li > p {
  -webkit-hyphens: auto;
          hyphens: auto;
  padding: 0 0 0 38px;
}
@media (max-width: 767px) {
  .live > ul > li > p {
    text-align: left;
  }
}
.live > ul > li > p::before {
  content: "";
  background-image: url("./../images/index/utils/iconFireball.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
}
.live > ul > li > p > span:first-child {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.live > ul > li > p > span:last-child {
  padding: 0 12px;
}

/* LICENSE */
@media (max-width: 767px) {
  .license {
    text-align: left;
  }
}
.license > h2 {
  margin-bottom: 12px;
}
.license > h3 {
  margin-bottom: 12px;
}
.license > p:not(:last-child) {
  margin-bottom: 20px;
}
.license > ul {
  margin-bottom: 20px;
}
.license > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-black);
}
@media (max-width: 767px) {
  .license > ul > li {
    align-items: flex-start;
  }
}
.license > ul > li > p {
  -webkit-hyphens: auto;
          hyphens: auto;
  padding: 0 0 0 38px;
}
@media (max-width: 767px) {
  .license > ul > li > p {
    text-align: left;
  }
}
.license > ul > li > p::before {
  content: "";
  background-image: url("./../images/index/utils/iconFireball.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
}
.license > ul > li > p > span:first-child {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.license > ul > li > p > span:last-child {
  padding: 0 12px;
}
.license .table-wrap {
  position: relative;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  margin-bottom: 20px;
}
.license table {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  table-layout: fixed;
  background: transparent;
  /* 6 рівних колонок */
}
.license 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;
}
.license table thead {
  background: var(--color-black);
}
.license table tbody {
  background: var(--color-black-btn);
}
.license table th,
.license table td {
  width: 16.6666666667%;
  padding: 16px;
  text-align: left;
  vertical-align: top;
  box-sizing: border-box;
}
.license table th {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .license table th {
    font-size: 18px;
  }
}
.license table td {
  padding: 12px 16px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  border-bottom: 1px solid var(--color-gray-black);
}
.license table tbody tr:last-child td {
  border-bottom: none;
}

/* WITHDRAW */
@media (max-width: 767px) {
  .withdraw {
    text-align: left;
  }
}
.withdraw > p {
  margin-bottom: 20px;
}
.withdraw > p:last-of-type {
  margin-bottom: 0;
}
.withdraw > ul {
  margin-bottom: 20px;
}
.withdraw > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-black);
}
@media (max-width: 767px) {
  .withdraw > ul > li {
    align-items: flex-start;
  }
}
.withdraw > ul > li__image {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}
.withdraw > ul > li > p {
  -webkit-hyphens: auto;
          hyphens: auto;
  padding: 0 0 0 40px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .withdraw > ul > li > p {
    text-align: left;
  }
}
.withdraw > ul > li > p::before {
  content: "";
  background-image: url("./../images/index/utils/iconFireball.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
}

/* HIGHROLLER */
.highroller {
  min-height: 368px;
  padding-left: 120px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  background: none;
}
@media (max-width: 1200px) {
  .highroller {
    border-radius: 0;
  }
}
@media (max-width: 1023px) {
  .highroller {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.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;
  white-space: nowrap;
  line-height: normal;
}
@media (max-width: 480px) {
  .highroller__items > span {
    font-size: 27px;
  }
}
.highroller__button {
  margin: 0;
}

@media (max-width: 767px) {
  .background img {
    -o-object-position: 92%;
       object-position: 92%;
    opacity: 1;
  }
}

/* SUPPORT */
@media (max-width: 767px) {
  .support {
    text-align: left;
  }
}
.support p {
  margin-bottom: 20px;
}
.support p:last-of-type {
  margin-bottom: 0;
}

/* REVIEWS */
.reviews > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
}
@media (max-width: 767px) {
  .reviews > ul {
    flex-direction: column;
    gap: 16px;
  }
}
.reviews > ul > li {
  flex-basis: calc(50% - 10px);
  flex-grow: 0;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.reviews > ul > li > div:first-of-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: var(--color-black);
  border-radius: 12px 12px 0 0;
}
@media (max-width: 1023px) {
  .reviews > ul > li > div:first-of-type > h4 {
    font-size: 18px;
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .reviews > ul > li > div:first-of-type > span {
    width: 100%;
    text-align: right;
  }
}
.reviews > ul > li > div:first-of-type > span > img {
  width: 26px;
  height: 24px;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .reviews > ul > li > div:first-of-type > span > img {
    width: 20px;
    height: 20px;
  }
}
.reviews > ul > li > div:last-of-type {
  padding: 16px;
  display: flex;
  align-items: flex-start;
  border-radius: 0 0 12px 12px;
  background-color: var(--color-light-blue);
  flex-grow: 1;
}
.reviews > ul > li > div:last-of-type > img {
  margin-right: 10px;
}
.reviews > ul > li > div:last-of-type > p {
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.reviews > ul > li:last-child:nth-child(odd) {
  margin-left: calc(25% + 10px);
}
@media (max-width: 767px) {
  .reviews > ul > li:last-child:nth-child(odd) {
    margin-left: 0;
  }
}

/* ASKED */
@media (max-width: 767px) {
  .asked {
    text-align: left;
  }
}
.asked > div {
  max-height: none;
  overflow: visible;
}
.asked > div > ul > li {
  border-radius: 12px;
  border: 1px solid var(--color-gray-black);
  margin-bottom: 20px;
  overflow: hidden;
  background: var(--color-black);
}
.asked > div > ul > li:last-child {
  margin-bottom: 0;
}
.asked > div > ul > li > h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  padding: 16px;
  margin: 0;
  transition: background-color 0.3s ease;
  background: var(--color-black);
}
.asked > div > ul > li > h4:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.asked > div > ul > li > h4 > span {
  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;
  z-index: 100;
}
.asked > div > ul > li > div {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  background: var(--color-light-blue);
}
.asked > div > ul > li > div > p {
  padding: 16px;
}
.asked__list.is-open .asked__pretittle {
  background-color: rgba(255, 255, 255, 0.05);
}
.asked__list.is-open .asked__arrow {
  transform: rotate(-45deg);
  z-index: 100;
}

/* 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;
  word-wrap: break-word;
  white-space: normal;
}
.grade table td {
  padding: 12px 16px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.grade table thead tr {
  background: var(--color-black);
}
.grade table tbody {
  width: 100%;
}
.grade table tbody tr {
  background-color: var(--color-light-blue);
  border-bottom: 1px solid var(--color-gray-black);
}
.grade table tbody tr:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}
.grade table th {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}
.grade table thead tr > th:nth-child(1),
.grade table tbody tr > td:nth-child(1),
.grade table thead tr > th:nth-child(2),
.grade table tbody tr > td:nth-child(2),
.grade table thead tr > th:nth-child(3),
.grade table tbody tr > td:nth-child(3) {
  width: 33.3333%;
}
@media (max-width: 767px) {
  .grade table th {
    font-size: 18px;
  }
}
.grade .star-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}
.grade .star-rating img {
  width: 26px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}
@media (max-width: 767px) {
  .grade .star-rating {
    justify-content: center;
  }
}

/* CONCLUSION */
@media (max-width: 767px) {
  .conclusion {
    text-align: left;
  }
}
.conclusion > p {
  margin-bottom: 20px;
}

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

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

.main__arrowtop {
  height: 90%;
}

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

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

/* Footer */
.footer {
  padding: 0 20px 32px 280px;
}
@media (max-width: 1200px) {
  .footer {
    padding: 0;
  }
}
.footer > div {
  border-radius: 12px;
  background: var(--color-black-btn);
  padding: 32px;
}
@media (max-width: 1200px) {
  .footer > div {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .footer > div {
    padding: 32px 10px;
  }
}
.footer > div > span {
  display: block;
  border: 1px solid var(--color-gray-black);
}
.footer__country__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.footer__country__items > li {
  display: flex;
  align-items: center;
  margin: 0 12px 12px 0;
  padding: 7px;
  border-radius: 8px;
  border: 1px solid var(--color-gray-black);
  background: var(--color-black-btn);
  cursor: pointer;
}
.footer__country__items > li > a {
  display: flex;
  align-items: center;
  position: relative;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}
.footer__country__items > li > a > img {
  margin-right: 8px;
}
.footer__links__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 45px;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .footer__links__items {
    flex-direction: column;
    padding: 20px 0;
    gap: 10px;
  }
}
.footer__links__items > li {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__links__items > li {
    margin-bottom: 10px;
  }
}
.footer__links__items > li > a {
  color: var(--color-white);
  transition: var(--transition-duration) ease;
}
.footer__links__items > li > a: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__container > p {
    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: 1200px) {
  .heroBonuses {
    border-radius: 0;
  }
}
@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: 92%;
       object-position: 92%;
    opacity: 1;
  }
}
.heroBonuses > div > div {
  margin-bottom: 8px;
}
.heroBonuses > div > div > a {
  position: relative;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.heroBonuses > div > div > span {
  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;
}
.heroBonuses > div > div__button {
  margin: 0;
}
.heroBonuses > div > p {
  margin-bottom: 24px;
  max-width: 650px;
  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) {
  .heroBonuses > div > p {
    text-align: center;
  }
}

/* PROMOTIONS */
@media (max-width: 767px) {
  .promotions {
    text-align: left;
  }
}
.promotions > h2 {
  margin-bottom: 12px;
}
.promotions > h3 {
  margin-bottom: 12px;
}
.promotions > p:not(:last-child) {
  margin-bottom: 12px;
}

/* WELCOME */
@media (max-width: 767px) {
  .welcome {
    text-align: left;
  }
}
.welcome > h3 {
  margin-bottom: 8px;
}
.welcome > h3:last-of-type {
  margin-bottom: 20px;
}
.welcome > p {
  margin-bottom: 20px;
}
.welcome > p:nth-of-type(2) {
  margin-bottom: 8px;
}
.welcome > p:last-of-type {
  margin-bottom: 0;
}
.welcome .margin {
  margin-bottom: 20px;
}
.welcome .gap {
  gap: 16px;
  margin-bottom: 16px;
}
.welcome > ul:first-of-type {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .welcome > ul:first-of-type {
    flex-direction: column;
    gap: 16px;
  }
}
.welcome > ul:first-of-type > li {
  display: flex;
  flex-basis: calc(50% - 10px);
  flex-grow: 0;
  position: relative;
  padding: 0;
  flex-direction: column;
}
.welcome > ul:first-of-type > li > h4 {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 16px 16px 50px;
  background-color: var(--color-black);
  border-radius: 12px 12px 0 0;
}
.welcome > ul:first-of-type > li > h4::before {
  content: "";
  background-image: url("./../images/index/utils/iconFire.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  margin-left: 16px;
  margin-right: 12px;
}
.welcome > ul:first-of-type > li > p {
  flex-grow: 1;
  padding: 16px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  background-color: var(--color-light-blue);
  border-radius: 0 0 12px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .welcome > ul:first-of-type > li > p {
    height: auto;
  }
}
.welcome__unorder__item {
  counter-reset: my-list-counter;
  margin-bottom: 20px;
}
.welcome__unorder__item > li {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-black);
}
.welcome__unorder__item > li:last-child {
  margin-bottom: 0;
}
.welcome__unorder__item > li::before {
  content: counter(my-list-counter);
  counter-increment: my-list-counter;
  display: flex;
  width: 30px;
  height: 30px;
  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);
  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) {
  .welcome__unorder__item > li::before {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}
.welcome__unorder__item > li > p {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 12px;
}
@media (max-width: 767px) {
  .welcome__unorder__item > li > p {
    text-align: left;
  }
}
.welcome__unorder__item > li > p > span:first-of-type {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 4px;
}
.welcome__unorder__item > li > p > span:last-of-type {
  position: relative;
  padding-left: 30px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.welcome__unorder__item > li > p > span:last-of-type::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--color-white);
  flex-shrink: 0;
  border-radius: 100%;
  left: 0;
  top: 8px;
  margin-left: 12px;
}
.welcome > ul:last-of-type {
  counter-reset: none;
}
.welcome > ul:last-of-type > li::before {
  content: "";
  background-image: url("./../images/index/utils/iconFireball.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  position: relative;
  left: 0;
}

/* RELOAD */
@media (max-width: 767px) {
  .reload {
    text-align: left;
  }
}
.reload > p {
  margin-bottom: 20px;
}
.reload > h3 {
  margin-bottom: 12px;
}
.reload .mb12 {
  margin-bottom: 12px;
}

/* CASINO */
.casino {
  min-height: 358px;
  padding-left: 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
}
@media (max-width: 1200px) {
  .casino {
    border-radius: 0;
  }
}
@media (max-width: 1023px) {
  .casino {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .casino .background img {
    -o-object-position: 78%;
       object-position: 78%;
    opacity: 1;
  }
}
.casino__pretittle {
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 767px) {
  .casino__pretittle {
    text-align: center;
  }
}
.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;
    text-align: center;
  }
}
.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;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .casino__items > span {
    font-size: 28px;
  }
}

/* SLOT */
@media (max-width: 767px) {
  .slot {
    text-align: left;
  }
}
.slot > h2 {
  margin-bottom: 12px;
}
.slot > p {
  margin-bottom: 20px;
}
.slot > h3 {
  margin-bottom: 12px;
}
.slot .mb12 {
  margin-bottom: 12px;
}

/* PROGRAM */
@media (max-width: 767px) {
  .program {
    text-align: left;
  }
}
.program > h2 {
  margin-bottom: 12px;
}
.program > p {
  margin-bottom: 20px;
}
.program > h3 {
  margin-bottom: 12px;
}
.program .mb12 {
  margin-bottom: 12px;
}
.program .table-wrap,
.program .table {
  display: block;
  max-width: 100%;
  min-width: 0;
  overflow: auto;
  margin-bottom: 20px;
  border-radius: 12px;
}
.program table {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  table-layout: fixed;
  background-clip: padding-box;
}
.program 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;
}
.program table thead {
  background-color: var(--color-black);
}
.program table thead tr {
  border-radius: 12px;
}
.program table tbody {
  background-color: var(--color-light-blue);
}
.program table th,
.program table td {
  box-sizing: border-box;
  white-space: nowrap;
  padding: 16px;
  border: none;
  border-bottom: 1px solid var(--color-gray-black);
  text-align: left;
}
.program table th {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .program table th {
    font-size: 18px;
  }
}
.program table td {
  padding: 12px 16px;
  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 */
}
.program table thead th,
.program table tbody td {
  width: 33.3333333333%;
}
.program table tbody tr:last-child td {
  border-bottom: none;
}

/* CASHBACK */
@media (max-width: 767px) {
  .cashback {
    text-align: left;
  }
}
.cashback > h2 {
  margin-bottom: 12px;
}
.cashback > p {
  margin-bottom: 20px;
}
.cashback > p:last-of-type {
  margin-bottom: 0;
}
.cashback > h3 {
  margin-bottom: 12px;
}
.cashback .mb12 {
  margin-bottom: 12px;
}

/* WEDNESDAY */
.wednesday {
  min-height: 358px;
  padding-left: 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
}
@media (max-width: 1200px) {
  .wednesday {
    border-radius: 0;
  }
}
@media (max-width: 1023px) {
  .wednesday {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .wednesday .background img {
    -o-object-position: 79%;
       object-position: 79%;
    opacity: 1;
  }
}
.wednesday__pretittle {
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 767px) {
  .wednesday__pretittle {
    text-align: center;
  }
}
.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;
  line-height: normal;
}
@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;
  line-height: normal;
}
.wednesday__button {
  margin: 0;
}

/* GLORY */
@media (max-width: 767px) {
  .glory {
    text-align: left;
  }
}
.glory > h2 {
  margin-bottom: 12px;
}
.glory > p {
  margin-bottom: 20px;
}
.glory > h3 {
  margin-bottom: 12px;
}
.glory > img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.glory .mb12 {
  margin-bottom: 12px;
}

/* LIMITED */
@media (max-width: 767px) {
  .limited {
    text-align: left;
  }
}
.limited > h2 {
  margin-bottom: 12px;
}
.limited > p {
  margin-bottom: 20px;
}
.limited > h3 {
  margin-bottom: 12px;
}

/* PLAY */
@media (max-width: 767px) {
  .play {
    text-align: left;
  }
}
.play > h2 {
  margin-bottom: 12px;
}
.play > p {
  margin-bottom: 20px;
}
.play > p:last-of-type {
  margin-bottom: 0;
}
.play > ul {
  margin-bottom: 20px;
}
.play > ul:nth-of-type(2) > li > p::before {
  top: -2px;
}
.play > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-black);
}
@media (max-width: 767px) {
  .play > ul > li {
    align-items: flex-start;
  }
}
.play > ul > li > p {
  flex-wrap: wrap;
  -webkit-hyphens: auto;
          hyphens: auto;
  padding: 0 0 0 38px;
}
@media (max-width: 767px) {
  .play > ul > li > p {
    text-align: left;
  }
}
.play > ul > li > p::before {
  content: "";
  background-image: url("./../images/index/utils/iconFireball.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
}
.play > ul > li > p > span {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.play > ul > li > p > span:last-of-type {
  padding: 0 12px;
  color: var(--color-white);
}

/* ENJOY */
.enjoy {
  min-height: 358px;
  padding-left: 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  background: none;
  border-radius: 12px;
}
@media (max-width: 1200px) {
  .enjoy {
    border-radius: 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: 93%;
       object-position: 93%;
    opacity: 1;
  }
}
.enjoy > div > h3 {
  font-size: 32px;
  margin-bottom: 24px;
  text-align: left;
}
@media (max-width: 1280px) {
  .enjoy > div > h3 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .enjoy > div > h3 {
    font-size: 24px;
  }
}
.enjoy > div__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: 1200px) {
  .heroApp {
    border-radius: 0;
  }
}
@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: 85%;
       object-position: 85%;
    opacity: 1;
  }
}
.heroApp > div > div {
  margin-bottom: 8px;
}
.heroApp > div > div > a {
  position: relative;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.heroApp > div > div > span {
  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;
}
.heroApp > div > div__button {
  margin: 0;
}
.heroApp > div > p {
  margin-bottom: 24px;
  max-width: 650px;
  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) {
  .heroApp > div > p {
    text-align: center;
  }
}

/* casinoAPP */
@media (max-width: 767px) {
  .casinoApp {
    text-align: left;
  }
}
.casinoApp > h2 {
  margin-bottom: 12px;
}
.casinoApp > h3 {
  margin-bottom: 12px;
}
.casinoApp > p {
  margin-bottom: 12px;
}
.casinoApp > p:last-of-type {
  margin-bottom: 0;
}

/* INSTALL */
@media (max-width: 767px) {
  .install {
    text-align: left;
  }
}
.install > p:not(:last-child) {
  margin-bottom: 20px;
}
.install__iphone__container, .install__android__container {
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}
@media (max-width: 1280px) {
  .install__iphone__container, .install__android__container {
    border-radius: 0;
  }
}
.install__iphone__container:last-child, .install__android__container:last-child {
  margin-bottom: 0;
}
.install__iphone__container > ul, .install__android__container > ul {
  width: 50%;
}
@media (max-width: 1023px) {
  .install__iphone__container > ul, .install__android__container > ul {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .install__iphone__container .background img, .install__android__container .background img {
    -o-object-position: 84%;
       object-position: 84%;
    opacity: 0.5;
  }
}
.install__iphone__container > h4, .install__android__container > h4 {
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
}
.install__android__container {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .install__android__container {
    justify-content: center;
    padding: 10px;
  }
}
@media (max-width: 1023px) {
  .install__android__container .background img {
    -o-object-position: 15%;
       object-position: 15%;
    opacity: 0.5;
  }
}
.install__content__wrapper {
  display: flex;
  flex-direction: column;
  max-width: 54%;
  width: 100%;
}
@media (max-width: 1023px) {
  .install__content__wrapper {
    max-width: 100%;
  }
}
.install__content__wrapper > h4 {
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
}
.install__items {
  margin-bottom: 16px;
  counter-reset: my-list-counter;
}
.install__items:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .install__items {
    padding: 0;
  }
}
.install__items > li {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-black);
}
.install__items > li::before {
  content: counter(my-list-counter);
  counter-increment: my-list-counter;
  display: flex;
  width: 30px;
  height: 30px;
  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);
  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 > li::before {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}
.install__items > li > p {
  padding-left: 12px;
  margin-top: 4px;
  font-size: 16px;
  font-family: var(--font-family-base);
  font-weight: 700;
}
@media (max-width: 767px) {
  .install__items > li > p {
    text-align: left;
  }
}
.install__button__apple, .install__button__android {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 68px;
  padding: 16px 32px;
  cursor: pointer;
  border-radius: 100px;
  border: none;
  background: var(--color-red);
  transition: var(--transition-duration);
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .install__button__apple, .install__button__android {
    margin-bottom: 20px;
    margin: 0 auto;
  }
}
.install__button__apple:hover {
  box-shadow: var(--color-red) 0px 5px 15px;
}
.install__button__android {
  background-color: var(--color-yellow);
}
.install__button__android:hover {
  box-shadow: var(--color-yellow) 0px 5px 15px;
}

/* BENEFITS */
@media (max-width: 767px) {
  .benefits {
    text-align: left;
  }
}
.benefits > p:not(:last-child) {
  margin-bottom: 20px;
}
.benefits > h3:not(:last-child) {
  margin-bottom: 12px;
}
.benefits > ul {
  counter-reset: my-list-counter;
}
.benefits > ul > li {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-black);
}
.benefits > ul > li:last-child {
  margin-bottom: 0;
}
.benefits > ul > li::before {
  content: counter(my-list-counter);
  counter-increment: my-list-counter;
  display: flex;
  width: 30px;
  height: 30px;
  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);
  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) {
  .benefits > ul > li::before {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}
.benefits > ul > li > p {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 12px;
}
@media (max-width: 767px) {
  .benefits > ul > li > p {
    text-align: left;
  }
}
.benefits > ul > li > p > span:first-of-type {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 4px;
}
.benefits > ul > li > p > span:last-of-type {
  position: relative;
  padding-left: 30px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.benefits > ul > li > p > span:last-of-type::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--color-white);
  flex-shrink: 0;
  border-radius: 100%;
  left: 0;
  top: 8px;
  margin-left: 12px;
}

/* DEVICE */
@media (max-width: 767px) {
  .device {
    text-align: left;
  }
}
.device > h2 {
  margin-bottom: 12px;
}
.device > p {
  margin-bottom: 20px;
}
.device > p:last-of-type {
  margin-bottom: 0;
}
.device > h3 {
  margin-bottom: 20px;
}
.device > h3:last-of-type {
  margin-bottom: 12px;
}
.device > div > div {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.device > div > div > h4 {
  margin-bottom: 8px;
}
.device > div > div > ul {
  margin-bottom: 20px;
}
.device > div > div > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-black);
}
@media (max-width: 767px) {
  .device > div > div > ul > li {
    align-items: flex-start;
  }
}
.device > div > div > ul > li__image {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}
.device > div > div > ul > li > p {
  -webkit-hyphens: auto;
          hyphens: auto;
  padding: 0 0 0 40px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .device > div > div > ul > li > p {
    text-align: left;
  }
}
.device > div > div > ul > li > p::before {
  content: "";
  background-image: url("./../images/index/utils/iconFireball.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: -3px;
}

/* VERSION */
@media (max-width: 767px) {
  .version {
    text-align: left;
  }
}
.version > h2 {
  margin-bottom: 12px;
}
.version > p {
  margin-bottom: 20px;
}
.version > ul {
  margin-bottom: 20px;
  counter-reset: my-list-counter;
}
.version > ul:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .version > ul {
    padding: 0;
  }
}
.version > ul > li {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-black);
}
.version > ul > li::before {
  content: counter(my-list-counter);
  counter-increment: my-list-counter;
  display: flex;
  width: 30px;
  height: 30px;
  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);
  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) {
  .version > ul > li::before {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}
.version > ul > li > p {
  padding-left: 12px;
  margin-top: 4px;
  font-size: 14px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-weight: 400;
}
@media (max-width: 767px) {
  .version > ul > li > p {
    text-align: left;
  }
}

/* FINAL */
.final > p {
  margin-bottom: 20px;
}
.final > p:last-of-type {
  margin-bottom: 0;
}

/* RESPONSIBLE */
@media (max-width: 767px) {
  .responsible {
    text-align: left;
  }
}
.responsible > P:not(:last-child) {
  margin-bottom: 12px;
}/*# sourceMappingURL=style.css.map */