@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;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
}

ul,
ol {
  list-style-type: none;
}

section > * + * {
  margin-top: 20px;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

body {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
  background: var(--color-green);
  overflow-x: clip;
}

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

h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

h2 {
  position: relative;
  color: var(--color-white);
  font-family: var(--font-family-base);
  background-color: var(--color-pink);
  border-radius: 8px;
  padding: 12px;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  position: relative;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  position: relative;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  vertical-align: middle;
}

p,
span {
  position: relative;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  vertical-align: middle;
}

.buttons {
  display: inline-block;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 59, 48, 0.3);
}
.buttons::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.buttons::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.buttons:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 25px rgba(255, 59, 48, 0.5);
  background: #ff4d40;
}
.buttons:hover::before {
  width: 300px;
  height: 300px;
}
.buttons:hover::after {
  left: 100%;
}
.buttons:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 10px rgba(255, 59, 48, 0.4);
}

@media (max-width: 1023px) {
  .background__fill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .background__fill {
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    background: rgba(33, 33, 33, 0.7411764706);
    border-radius: 16px;
    padding: 10px;
  }
}

:root {
  --color-green: #00cfa6;
  --color-section-black: #13171f;
  --color-red: #ff2400;
  --color-pink: #d065fa;
  --color-border: #1b1f28;
  --color-black: #0d1016;
  --color-white: #ffffff;
  --color-grey: #80858f;
  --box-shadow: 0 0 200px rgba(254, 205, 14, 0.2);
  --bg-blur: #fecd0e1f;
  --font-family-base: "Roboto", sans-serif;
  --transition-duration: 0.3s;
}

/* roboto-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: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v49-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-500 - 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: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v49-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-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: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v49-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.wrapper {
  padding-left: max(50% - 800px);
  padding-right: max(50% - 800px);
  position: relative;
  z-index: 0;
  overflow: visible;
}

/* Фиксированный хедер */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-black);
  color: white;
  /* display: flex; */
  align-items: center;
  z-index: 1000;
  padding: 0 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: max(50% - 780px);
  padding-right: max(50% - 780px);
  height: 100%;
}
@media (max-width: 767px) {
  .header-inner {
    padding: 0;
  }
}

/* Отступ под хедером */
.main-layout {
  display: flex;
  margin-left: 20px;
}
@media (max-width: 1200px) {
  .main-layout {
    display: block;
  }
}
@media (max-width: 1200px) {
  .main-layout {
    margin: 0 20px;
  }
}
@media (max-width: 767px) {
  .main-layout {
    margin: 0 10px;
  }
}

/* Контент не трогаем! */
.content {
  flex: 1;
}

.content {
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 1200px) {
  .content {
    margin: 0;
  }
}

.content section {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
  background-color: var(--color-section-black);
  overflow: visible;
}
@media (max-width: 767px) {
  .content section {
    padding: 20px 15px;
  }
}

html {
  overflow-x: clip;
}

.background {
  display: block !important;
  position: absolute !important;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: var(--color-black);
  border-radius: 12px;
}

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

.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  display: flex;
  position: relative;
  color: var(--color-grey);
  transition: var(--transition-duration);
}
.nav-links a > span {
  margin-left: 12px;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-green);
  transition: width var(--transition-duration);
}
.nav-links a:hover {
  color: var(--color-green);
  transition: var(--transition-duration);
}
.nav-links a:hover::after {
  width: 100%;
}

.header-buttons {
  display: flex;
  gap: 8px;
}
.header-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.header-buttons .btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-buttons .btn.reset {
  display: none;
}
@media (max-width: 1200px) {
  .header-buttons .btn.reset {
    display: block;
  }
}
@media (max-width: 1200px) {
  .header-buttons .btn.media {
    display: none;
  }
}
.header-buttons .register {
  display: flex;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: var(--color-red);
  gap: 10px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(255, 36, 0, 0.3);
}
.header-buttons .register::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.header-buttons .register:hover {
  background: #ff4520;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 36, 0, 0.5);
}
.header-buttons .register:hover::before {
  width: 300px;
  height: 300px;
}
.header-buttons .register:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(255, 36, 0, 0.3);
}
.header-buttons .login {
  display: flex;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid var(--color-red);
  background: #000;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-buttons .login::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 36, 0, 0.3), transparent);
  transition: left 0.5s ease;
}
.header-buttons .login:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 36, 0, 0.4);
}
.header-buttons .login:hover::after {
  left: 100%;
}
.header-buttons .login:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 36, 0, 0.2);
}

.language-selector {
  position: relative;
  cursor: pointer;
}
.language-selector > span {
  color: var(--color-white);
}
.language-selector:hover .lang-button {
  color: var(--color-white);
}
.language-selector.open .lang-button {
  color: var(--color-white);
}
.language-selector.open .lang-button svg {
  transform: rotate(180deg);
}
.language-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1200px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: var(--color-black);
    padding: 0;
    transform: translateY(-30px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .nav-links .header-buttons {
    display: none;
  }
}
@media (max-width: 1200px) {
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    padding: 20px 0;
    gap: 20px;
  }
  .nav-links.open .header-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    padding: 0 20px;
    gap: 12px;
  }
  .nav-links.open .header-buttons .btn {
    width: 145px;
    text-align: center;
    padding: 12px;
  }
}

.lang-button {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  background: none;
  border: none;
  padding: 0;
  transition: var(--transition-duration);
}
.lang-button img {
  width: 18px;
  height: 18px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
  display: none;
}
@media (max-width: 767px) {
  .lang-button img {
    display: block;
  }
}
.lang-button .lang-text {
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.lang-button svg {
  width: 10px;
  height: 6px;
  transition: transform 0.3s ease;
  margin-left: 2px;
}

.lang-dropdown {
  position: absolute;
  max-height: calc(100vh - 50px);
  visibility: hidden;
  top: calc(100% + 19px);
  right: 0;
  background: var(--color-black);
  border-radius: 0 0 8px 8px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  min-width: 165px;
  overflow-y: auto;
  padding: 4px;
  pointer-events: none;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.lang-dropdown::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
@media (max-width: 767px) {
  .lang-dropdown {
    top: calc(100% + 12px);
    -webkit-overflow-scrolling: touch;
  }
}

.nav__langs {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}
.nav__langs li a {
  display: flex;
  align-items: center;
  padding: 8px 8.5px;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  color: var(--color-white);
  gap: 10px;
  transition: background 0.2s ease, border-radius 0.2s ease;
  border-radius: 8px;
}
.nav__langs li a img {
  width: 18px;
  height: 18px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
  flex-shrink: 0;
  display: block;
}
.nav__langs li a:hover {
  background: var(--color-green);
  border-radius: 8px;
}

.logo {
  display: block;
  width: 178px;
  padding: 10px 0;
}
@media (max-width: 480px) {
  .logo {
    width: 100px;
  }
}
.logo > img {
  margin-left: 15px;
}
@media (max-width: 1200px) {
  .logo > img {
    margin: 0;
  }
}
@media (max-width: 480px) {
  .logo > img {
    width: 100px;
  }
}

.logo__block {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .logo__block {
    gap: 10px;
  }
}

@media (max-width: 1200px) {
  .media {
    display: none;
  }
}

.reset {
  display: none;
}
@media (max-width: 1200px) {
  .reset {
    display: block;
    min-width: 100px;
  }
}

.btn__block {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 1200px) {
  .btn__block {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .btn__block {
    gap: 4px;
  }
}
.btn__block > a {
  display: flex;
  align-items: center;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  transition: var(--transition-duration);
}
.btn__block > a:hover {
  color: var(--color-green);
}
@media (max-width: 1350px) {
  .btn__block > a {
    display: none;
  }
}

.list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.list li {
  position: relative;
  color: var(--color-white);
  padding-left: 34px;
  margin-bottom: 12px;
}
.list li:last-of-type {
  margin-bottom: 0;
}
.list li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--color-yellow);
  border-radius: 100%;
  flex-shrink: 0;
  top: 9px;
  left: 16px;
}

@media (min-width: 768px) {
  .reset {
    display: none;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 0 10px;
  }
}

.sidebar {
  width: 178px;
  flex-shrink: 0;
  position: sticky;
  top: 85px;
  height: -moz-fit-content;
  height: fit-content;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  border-radius: 16px;
  border-right: 1px solid var(--color-border);
  background: var(--color-black);
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  padding: 16px;
  z-index: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sidebar::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1200px) {
  .sidebar {
    width: 100%;
    position: static;
    max-height: none;
    overflow-y: visible;
  }
}
.sidebar__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--color-black);
  color: var(--color-grey);
  border-radius: 8px;
  cursor: pointer;
  padding: 11px 0;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1;
  transition: all var(--transition-duration);
  box-shadow: none;
  position: relative;
  overflow: hidden;
}
.sidebar__toggle:hover {
  color: var(--color-green);
}
@media (max-width: 1200px) {
  .sidebar__toggle {
    padding: 12px;
    margin-bottom: 0;
  }
}
.sidebar__links-list {
  overflow: hidden;
  max-height: 1000px;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
  opacity: 1;
  background: var(--color-black);
  border-radius: 0 0 8px 8px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media (max-width: 1200px) {
  .sidebar__links-list {
    margin-bottom: 10px;
    padding: 12px 12px 0 12px;
  }
}
.sidebar__links-list::-webkit-scrollbar {
  display: none;
}
.sidebar__links-list > li {
  margin-bottom: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.sidebar__links-list > li:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .sidebar__links-list > li:last-of-type {
    margin-bottom: 12px;
  }
}
.sidebar__links-list a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-grey);
  transition: all 0.3s ease;
  display: inline-block;
  transform-style: preserve-3d;
}
.sidebar__links-list a:hover {
  transform: translateZ(10px) scale(1.02);
  color: var(--color-white);
}
.sidebar__section {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  padding-left: 12px;
  background: transparent;
}
@media (max-width: 1200px) {
  .sidebar__section {
    padding-left: 0px;
  }
}
.sidebar__section .sidebar__toggle {
  border-radius: 8px 8px 0 0;
}
@media (max-width: 1200px) {
  .sidebar__section.collapsed {
    border-radius: 8px;
  }
}
.sidebar__section.collapsed .sidebar__links-list {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}
.sidebar__section.collapsed .arrow__nav {
  transform: rotate(-180deg);
}
.sidebar__section.collapsed .sidebar__toggle {
  border-radius: 8px;
}
@media (max-width: 1200px) {
  .sidebar__section.collapsed .sidebar__toggle {
    border-radius: 8px;
  }
}
.sidebar__section:not(.collapsed) .sidebar__links-list {
  max-height: 1000px;
}
.sidebar__section:not(.collapsed) .arrow__nav {
  transform: rotate(0);
}

@media (max-width: 1200px) {
  .sidebar__top {
    display: none;
  }
}
.sidebar__top > ul > li {
  position: relative;
  max-height: 40px;
  padding: 8px 4px 8px 8px;
  margin-bottom: 4px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.sidebar__top > ul > li > span {
  position: relative;
  display: flex;
}
.sidebar__top > ul > li > span::before {
  content: "";
  display: flex;
  width: 4px;
  height: 4px;
  position: absolute;
  left: -2px;
  top: -20px;
  transform: translateY(-100%);
  border-radius: 50%;
  flex-shrink: 0;
  background-color: var(--color-red);
}
.sidebar__top > ul > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 207, 166, 0.15) 50%, transparent 100%);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.sidebar__top > ul > li:hover::before {
  left: 100%;
}
.sidebar__top > ul > li:hover > a > svg {
  color: var(--color-green) !important;
  transform: rotate(-8deg) scale(1.05);
}
.sidebar__top > ul > li:hover > a > span {
  color: var(--color-green);
}
.sidebar__top > ul > li:hover > a::after {
  transform: scaleX(1);
}
.sidebar__top > ul > li > a {
  display: flex;
  align-items: center;
  position: relative;
  transition: var(--transition-duration);
  z-index: 1;
}
.sidebar__top > ul > li > a > svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
  color: var(--color-grey);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar__top > ul > li > a > span {
  margin-left: 12px;
  color: var(--color-grey);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: color 0.4s ease;
}
.sidebar__top > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.horizontal__devider {
  margin-bottom: 4px;
  height: 1px;
  align-self: stretch;
  background: linear-gradient(90deg, rgba(0, 207, 166, 0) 0%, rgba(0, 207, 166, 0.35) 27.6%, rgba(0, 207, 166, 0.7) 52.62%, rgba(0, 207, 166, 0.35) 74.48%, rgba(0, 207, 166, 0) 100%);
}

.arrow__nav {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 12px;
}

.aside__wrap {
  position: relative;
  overflow: visible !important;
  transform: none !important;
  will-change: auto !important;
  contain: none !important;
  margin: 0;
  padding: 0;
  background: transparent;
}

.language-selector {
  position: relative;
  overflow: visible;
}

.lang-list {
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lang-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 15px;
  z-index: 1001;
}
@media (max-width: 1200px) {
  .burger {
    display: flex;
  }
}
@media (max-width: 767px) {
  .burger {
    width: 20px;
    height: 17px;
  }
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: 30px 20px;
  margin-top: 85px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: none !important;
}
@media (max-width: 1200px) {
  .hero {
    margin-top: 50px;
    min-height: 370px;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 15px;
    margin-top: 40px;
  }
}
.hero h1 {
  max-width: 935px;
  margin-bottom: 8px;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .hero h1 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .hero h1 {
    font-size: 32px;
  }
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.hero__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  overflow: hidden;
  max-width: none;
  max-height: none;
}
@media (max-width: 1023px) {
  .hero__background img {
    -o-object-position: 80%;
       object-position: 80%;
    opacity: 1;
  }
}
.hero__content {
  overflow-wrap: anywhere;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  color: white;
  z-index: 2;
}
@media (max-width: 1023px) {
  .hero__content {
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
    background: rgba(33, 33, 33, 0.7411764706);
    padding: 15px;
    border-radius: 12px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    width: 80%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .hero__content {
    width: 100%;
  }
}
.hero__content p {
  max-width: 812px;
  margin-bottom: 24px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.rating {
  display: flex;
  gap: 12px;
}
.rating p {
  color: var(--color-green);
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1;
}

.arrow__scroll {
  position: fixed;
  right: max(40px, 50% - 780px);
  bottom: 24px;
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background: rgba(19, 23, 31, 0.9);
  border-radius: 4px;
  transition: transform 0.2s ease;
}
@media (max-width: 767px) {
  .arrow__scroll {
    right: max(13px, 50% - 690px);
  }
}
.arrow__scroll svg {
  display: block;
}
.arrow__scroll.visible {
  opacity: 1;
  visibility: visible;
}
.arrow__scroll:hover {
  transform: scale(1.1);
}

.scroll-up {
  position: fixed;
  right: max(40px, 50% - 680px);
  bottom: 24px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #6f6f6f;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: 9999;
  transition: all var(--transition-duration);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
}
@media (max-width: 767px) {
  .scroll-up {
    right: max(13px, 50% - 690px);
  }
}
.scroll-up img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.scroll-up.visible {
  opacity: 1;
  transform: translateY(0);
  animation: bounce 2s infinite;
}
.scroll-up:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 200, 0, 0.5);
}
.scroll-up:hover img {
  transform: rotate(180deg) translateY(-2px);
}
.scroll-up:active {
  transform: scale(0.95);
}

.analyse {
  text-align: left;
}
.analyse > h2 {
  margin-bottom: 20px;
}
.analyse > div {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .analyse > div {
    flex-direction: column;
  }
}
.analyse > div > div:first-child {
  flex: 1;
}
.analyse > div > div:first-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (max-width: 850px) {
  .analyse > div > div:first-child img {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
  }
}
.analyse > div > div:last-child {
  flex: 1;
}
.analyse > div > div:last-child > h3 {
  margin-bottom: 20px;
}
.analyse > div > div:last-child > p {
  margin-bottom: 20px;
}
.analyse > div > div:last-child > p:last-of-type {
  margin-bottom: 0;
}

/* BONUS */
.bonus {
  min-height: 358px;
  padding-left: 100px !important;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  background: none;
  border: none !important;
}
@media (max-width: 1280px) {
  .bonus {
    padding: 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.bonus > div > h2 {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  background: none;
  padding: 0;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .bonus > div > h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .bonus .background img {
    -o-object-position: 91%;
       object-position: 91%;
    opacity: 1;
  }
}

/* FOUNDATION */
.foundation {
  text-align: left;
}
.foundation > h2 {
  margin-bottom: 20px;
}
.foundation > p {
  margin-bottom: 20px;
}
.foundation > div {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .foundation > div {
    flex-direction: column;
  }
}
.foundation > div > div:first-child {
  flex: 1;
}
.foundation > div > div:first-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (max-width: 850px) {
  .foundation > div > div:first-child img {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
  }
}
.foundation > div > div:last-child {
  flex: 1;
}
.foundation > div > div:last-child > p {
  margin-bottom: 20px;
}

/* PROTECTION */
.protection {
  text-align: left;
}
.protection > h2 {
  margin-bottom: 20px;
}
.protection > p {
  margin-bottom: 20px;
}
.protection > div {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .protection > div {
    flex-direction: column;
  }
}
.protection > div > div:first-child {
  flex: 1;
}
.protection > div > div:first-child > p {
  margin-bottom: 20px;
}
.protection > div > div:first-child > p:last-of-type {
  margin-bottom: 0;
}
.protection > div > div:last-child {
  flex: 1;
}
.protection > div > div:last-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (max-width: 850px) {
  .protection > div > div:last-child img {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
  }
}

/* CERTIFICATION */
.certification {
  text-align: left;
}
.certification > h2 {
  margin-bottom: 20px;
}
.certification > p {
  margin-bottom: 20px;
}
.certification > div {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .certification > div {
    flex-direction: column;
  }
}
.certification > div > div:first-child {
  flex: 1;
}
.certification > div > div:first-child > p {
  margin-bottom: 20px;
}
.certification > div > div:first-child > p:last-of-type {
  margin-bottom: 0;
}
.certification > div > div:last-child {
  flex: 1;
}
.certification > div > div:last-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (max-width: 850px) {
  .certification > div > div:last-child img {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
  }
}

/* VALIDATION */
.validation {
  text-align: left;
}
.validation > h2 {
  margin-bottom: 20px;
}
.validation > p {
  margin-bottom: 20px;
}
.validation > div {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .validation > div {
    flex-direction: column;
  }
}
.validation > div > div:first-child {
  flex: 1;
}
.validation > div > div:first-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (max-width: 850px) {
  .validation > div > div:first-child img {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
  }
}
.validation > div > div:last-child {
  flex: 1;
}
.validation > div > div:last-child > p {
  margin-bottom: 20px;
}
.validation > div > div:last-child > p:last-of-type {
  margin-bottom: 0;
}

/* SIMPLE */
.simple {
  text-align: left;
}
.simple > h2 {
  margin-bottom: 20px;
}
.simple > p {
  margin-bottom: 20px;
}
.simple > div {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .simple > div {
    flex-direction: column;
  }
}
.simple > div > div:first-child {
  flex: 1;
}
.simple > div > div:first-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (max-width: 850px) {
  .simple > div > div:first-child img {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
  }
}
.simple > div > div:last-child {
  flex: 1;
}
.simple > div > div:last-child > p {
  margin-bottom: 20px;
}
.simple > div > div:last-child > p:last-of-type {
  margin-bottom: 0;
}

/* VERIFICATION */
.verification {
  text-align: left;
}
.verification > h2 {
  margin-bottom: 20px;
}
.verification > p {
  margin-bottom: 20px;
}
.verification > div {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .verification > div {
    flex-direction: column;
  }
}
.verification > div > div:first-child {
  flex: 1;
}
.verification > div > div:first-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (max-width: 850px) {
  .verification > div > div:first-child img {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
  }
}
.verification > div > div:last-child {
  flex: 1;
}
.verification > div > div:last-child > p {
  margin-bottom: 20px;
}
.verification > div > div:last-child > p:last-of-type {
  margin-bottom: 0;
}

/* INFO */
.info {
  text-align: left;
}
.info > h2 {
  margin-bottom: 20px;
}
.info > p {
  margin-bottom: 20px;
}
.info > div {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .info > div {
    flex-direction: column;
  }
}
.info > div > div {
  flex: 1;
  min-width: 0;
}
.info > div > div > p {
  margin-bottom: 20px;
}
.info > div > div > p:last-of-type {
  margin-bottom: 0;
}
.info > div > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (max-width: 850px) {
  .info > div > div img {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
  }
}

/* COMPILATION */
.compilation {
  text-align: left;
}
.compilation > h2 {
  margin-bottom: 20px;
}
.compilation > p {
  margin-bottom: 20px;
}
.compilation > div {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .compilation > div {
    flex-direction: column;
  }
}
.compilation > div > div {
  flex: 1;
  min-width: 0;
}
.compilation > div > div > p {
  margin-bottom: 20px;
}
.compilation > div > div > p:last-of-type {
  margin-bottom: 0;
}
.compilation > div > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (max-width: 850px) {
  .compilation > div > div img {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
  }
}

/* DEPOSTI */
.deposit {
  min-height: 358px;
  padding-left: 100px !important;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  background: none;
  border: none !important;
}
@media (max-width: 1280px) {
  .deposit {
    padding: 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.deposit > div > h2 {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  padding: 0;
  background: none;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .deposit > div > h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .deposit .background img {
    -o-object-position: 91%;
       object-position: 91%;
    opacity: 1;
  }
}

/* PERFORMANCE */
.performance {
  text-align: left;
}
.performance > h2 {
  margin-bottom: 20px;
}
.performance > p {
  margin-bottom: 20px;
}
.performance > div {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .performance > div {
    flex-direction: column;
  }
}
.performance > div > div {
  flex: 1;
  min-width: 0;
}
.performance > div > div > h3 {
  margin-bottom: 20px;
}
.performance > div > div > p {
  margin-bottom: 20px;
}
.performance > div > div > p:last-of-type {
  margin-bottom: 0;
}
.performance > div > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (max-width: 850px) {
  .performance > div > div img {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
  }
}

/* CASINO */
.casino {
  text-align: left;
}
.casino > h2 {
  margin-bottom: 20px;
}
.casino > p {
  margin-bottom: 20px;
}
.casino > div {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .casino > div {
    flex-direction: column;
  }
}
.casino > div > div:first-child {
  flex: 1;
}
.casino > div > div:first-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (max-width: 850px) {
  .casino > div > div:first-child img {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
  }
}
.casino > div > div:last-child {
  flex: 1;
}
.casino > div > div:last-child > p {
  margin-bottom: 20px;
}
.casino > div > div:last-child > p:last-of-type {
  margin-bottom: 0;
}

/* DIRECT */
.direct {
  text-align: left;
}
.direct > h2 {
  margin-bottom: 20px;
}
.direct > p {
  margin-bottom: 20px;
}
.direct > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}
.direct > ul > li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
  flex: 1 1 calc(50% - 10px);
  min-width: min(300px, 100%);
  border: none;
  background: radial-gradient(98.43% 84.73% at 100% 60.83%, #d065fa 0%, rgba(208, 101, 250, 0) 100%), #13171f;
}
.direct > ul > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(90deg, #d065fa 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.direct > ul > li:nth-child(2) {
  background: radial-gradient(98.43% 84.73% at 100% 60.83%, #03c88d 0%, rgba(3, 200, 141, 0) 100%), #13171f;
}
.direct > ul > li:nth-child(2)::before {
  background: linear-gradient(90deg, #00cfa6 0%, transparent 100%);
}
@media (max-width: 1023px) {
  .direct > ul > li {
    flex: 1 1 100%;
  }
}
.direct > ul > li:nth-child(3) {
  flex: 0 1 calc(50% - 10px);
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .direct > ul > li:nth-child(3) {
    flex: 1 1 100%;
  }
}
.direct > ul > li > div:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.direct > ul > li > div:first-child h3 {
  flex: 1;
  order: 1;
  font-family: var(--font-family-base);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #ffc700 26.48%, #ff8a00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.direct > ul > li > div:first-child img {
  order: 2;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.direct > ul > li > p {
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

/* STRUCTURE */
.structure {
  text-align: left;
}
.structure > h2 {
  margin-bottom: 20px;
}
.structure > p {
  margin-bottom: 20px;
}
.structure > div {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .structure > div {
    flex-direction: column;
  }
}
.structure > div > div:first-child {
  flex: 1;
}
.structure > div > div:first-child > h3 {
  margin-bottom: 20px;
}
.structure > div > div:first-child > p {
  margin-bottom: 20px;
}
.structure > div > div:first-child > p:last-of-type {
  margin-bottom: 0;
}
.structure > div > div:last-child {
  flex: 1;
}
.structure > div > div:last-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (max-width: 850px) {
  .structure > div > div:last-child img {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
  }
}
.structure > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}
.structure > ul > li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
  flex: 1 1 calc(50% - 10px);
  min-width: min(300px, 100%);
  border: none;
  background: radial-gradient(98.43% 84.73% at 100% 60.83%, #d065fa 0%, rgba(208, 101, 250, 0) 100%), #13171f;
}
.structure > ul > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(90deg, #d065fa 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.structure > ul > li:nth-child(2), .structure > ul > li:nth-child(3) {
  background: radial-gradient(98.43% 84.73% at 100% 60.83%, #03c88d 0%, rgba(3, 200, 141, 0) 100%), #13171f;
}
.structure > ul > li:nth-child(2)::before, .structure > ul > li:nth-child(3)::before {
  background: linear-gradient(90deg, #00cfa6 0%, transparent 100%);
}
@media (max-width: 1023px) {
  .structure > ul > li {
    flex: 1 1 100%;
  }
}
.structure > ul > li:nth-child(5) {
  flex: 0 1 calc(50% - 10px);
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .structure > ul > li:nth-child(5) {
    flex: 1 1 100%;
  }
}
.structure > ul > li > div:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.structure > ul > li > div:first-child h3 {
  flex: 1;
  order: 1;
  font-family: var(--font-family-base);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #ffc700 26.48%, #ff8a00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .structure > ul > li > div:first-child h3 {
    font-size: 20px;
  }
}
.structure > ul > li > div:first-child img {
  order: 2;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.structure > ul > li > p {
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

/* PLAY */
.play {
  min-height: 360px;
  padding-left: 100px !important;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  background: none;
  border: none !important;
}
@media (max-width: 1280px) {
  .play {
    padding: 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.play > div > h2 {
  max-width: 655px;
  margin-bottom: 24px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  padding: 0;
  background: none;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .play > div > h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .play .background img {
    -o-object-position: 91%;
       object-position: 91%;
    opacity: 1;
  }
}

/* PAYMENT */
.payment {
  text-align: left;
}
.payment > h2 {
  margin-bottom: 20px;
}
.payment > p {
  margin-bottom: 20px;
}
.payment > div {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .payment > div {
    flex-direction: column;
    gap: 20px;
  }
}
.payment > div > div {
  flex: 1;
  min-width: 0;
}
.payment > div > div > h3 {
  margin-bottom: 20px;
}
.payment > div > div > p {
  margin-bottom: 20px;
}
.payment > div > div > p:last-of-type {
  margin-bottom: 0;
}
.payment > div > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (max-width: 850px) {
  .payment > div > div img {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
  }
}

/* MOBILE */
.mobile {
  text-align: left;
}
.mobile > h2 {
  margin-bottom: 20px;
}
.mobile > p {
  margin-bottom: 20px;
}
.mobile__container {
  position: relative;
  padding: 16px;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .mobile__container {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .mobile__container .background img {
    -o-object-position: 83%;
       object-position: 83%;
    opacity: 0.4;
  }
}
.mobile__container > h4 {
  margin-bottom: 12px;
  padding-left: 16px;
}
@media (max-width: 767px) {
  .mobile__container > h4 {
    padding-top: 16px;
  }
}
@media (max-width: 767px) {
  .mobile__items {
    padding: 10px;
  }
}
.mobile__items > li {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  color: var(--color-white);
  width: 65%;
  border-bottom: 1px solid transparent;
  -o-border-image: linear-gradient(to right, transparent 0%, #00ffb2 50%, transparent 100%);
     border-image: linear-gradient(to right, transparent 0%, #00ffb2 50%, transparent 100%);
  border-image-slice: 1;
}
@media (max-width: 1200px) {
  .mobile__items > li {
    width: 100%;
  }
}
.mobile__items > li > span:before {
  content: "";
  display: block;
  background-image: url(./../img/GreenP.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 34px;
  position: absolute;
  left: 0;
}
.mobile__items > li > p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 42px;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .mobile__items > li > p {
    text-align: left;
  }
}
.mobile__items > li > p > span {
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  text-transform: none;
  font-weight: 400;
  line-height: 1.6;
}

/* CLIENT */
.client {
  text-align: left;
}
.client > h2 {
  margin-bottom: 20px;
}
.client > p {
  margin-bottom: 20px;
}
.client > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  padding: 0;
}
.client > ul > li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
  flex: 1 1 calc(50% - 10px);
  min-width: min(300px, 100%);
  border: none;
  background: radial-gradient(98.43% 84.73% at 100% 60.83%, #03c88d 0%, rgba(3, 200, 141, 0) 100%), #13171f;
}
.client > ul > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(90deg, #00cfa6 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.client > ul > li:first-child {
  flex: 1 1 100%;
}
@media (max-width: 1023px) {
  .client > ul > li {
    flex: 1 1 100%;
  }
}
.client > ul > li > h3 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  padding-left: 36px;
}
.client > ul > li > h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  transform: translateY(-50%);
  width: 25px;
  height: 34px;
  background-image: url(./../img/GreenP.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.client > ul > li > p {
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.client > div {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 850px) {
  .client > div {
    flex-direction: column;
  }
}
.client > div > div {
  flex: 1;
  min-width: 0;
}
.client > div > div > h3 {
  margin-bottom: 20px;
}
.client > div > div > h3:last-of-type {
  margin-top: 20px;
}
.client > div > div > p {
  margin-bottom: 20px;
}
.client > div > div > p:last-of-type {
  margin-bottom: 0;
}
.client > div > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (max-width: 850px) {
  .client > div > div img {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
  }
}
.client > ul:nth-of-type(2) > li {
  flex: 1 1 100%;
  background: radial-gradient(98.43% 84.73% at 100% 60.83%, #d065fa 0%, rgba(208, 101, 250, 0) 100%), #13171f;
}
.client > ul:nth-of-type(2) > li::before {
  background: linear-gradient(90deg, #d065fa 0%, transparent 100%);
}
.client > ul:nth-of-type(2) > li > h3::before {
  background-image: url(./../img/PinkP.svg);
}
.client .horizontal__green {
  height: 4px;
  align-self: stretch;
  background: linear-gradient(90deg, rgba(0, 207, 166, 0) 0%, rgba(0, 207, 166, 0.35) 27.6%, rgba(0, 207, 166, 0.7) 52.62%, rgba(0, 207, 166, 0.35) 74.48%, rgba(0, 207, 166, 0) 100%);
}
.client .horizontal__pink {
  height: 4px;
  align-self: stretch;
  background: linear-gradient(90deg, rgba(208, 101, 250, 0) 0%, rgba(208, 101, 250, 0.35) 27.6%, rgba(208, 101, 250, 0.7) 52.62%, rgba(208, 101, 250, 0.35) 74.48%, rgba(208, 101, 250, 0) 100%);
}

/* FOOTER */
.footer {
  margin-bottom: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background-color: var(--color-black);
  border-radius: 16px;
  border: 1px solid var(--quaternary-bg-color);
}
@media (max-width: 1023px) {
  .footer {
    border-radius: 0;
    border: none;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 20px 16px 16px 16px;
  }
}
.footer__languages-list {
  padding: 12px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  background-color: transparent;
}
.footer__languages-item > a {
  padding: 7px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #6f6f6f;
  background-color: transparent;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  color: var(--primary-text-color);
  line-height: normal;
  transition: background-color var(--color-grey);
}
.footer__languages-item > a:hover, .footer__languages-item > a:active, .footer__languages-item > a:focus {
  background-color: #212121;
}
.footer__link-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 1200px) {
  .footer__link-wrap {
    justify-content: space-around;
    gap: 24px;
  }
}
@media (max-width: 1023px) {
  .footer__link-wrap {
    justify-content: space-around;
  }
}
@media (max-width: 850px) {
  .footer__link-wrap {
    row-gap: 32px;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
@media (max-width: 767px) {
  .footer__link-wrap {
    gap: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .footer__link-wrap .footer__link-box:last-child > div {
    text-align: center;
  }
}
.footer__link-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__link-box > div {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.37;
}
.footer__link-box > ul > li > a {
  position: relative;
  padding: 2px 0 2px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.33;
  color: var(--color-grey);
  text-align: start;
}
.footer__link-box > ul > li > a::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-grey);
}
.footer__link-box > ul > li > a:hover, .footer__link-box > ul > li > a:active, .footer__link-box > ul > li > a:focus {
  color: var(--color-green);
}
@media (max-width: 767px) {
  .footer__link-box > ul > li > a {
    display: inline-flex;
    text-align: center;
    justify-content: center;
  }
}
.footer__app-list {
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__app-list li a {
  min-width: 200px;
  min-height: 40px;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  border-radius: 4px;
  border: 1px solid #444852;
}
.footer__app-list li a::before {
  display: none;
}
.footer__app-list li a:hover, .footer__app-list li a:active, .footer__app-list li a:focus {
  border-color: #ffffff;
}
.footer__sposor-wrap {
  width: 100%;
}
.footer__sposor-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 12px;
}
.footer__sposor-list--bottom {
  margin-top: 15px;
  justify-content: center;
  row-gap: 16px;
}
.footer__contact {
  padding: 0 72px;
  display: flex;
  background: transparent;
  align-items: center;
}
@media (max-width: 1200px) {
  .footer__contact {
    padding: 0 24px;
  }
}
@media (max-width: 850px) {
  .footer__contact {
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 20px;
  }
}
.footer__contact img:first-child {
  max-width: 150px;
  height: 85px;
  margin-right: 12px;
}
@media (max-width: 850px) {
  .footer__contact img:first-child {
    width: auto;
    max-width: 100%;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 8px;
    margin-right: 0;
  }
}
.footer__contact img:last-child {
  width: 40px;
  height: 40px;
}
.footer__contact > div {
  margin-left: 24px;
}
@media (max-width: 850px) {
  .footer__contact > div {
    margin-left: 0;
  }
}
.footer__contact > div > p:first-child {
  margin-top: 0;
}
.footer__contact p {
  margin-top: 14px;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}
.footer .line-4 {
  margin-top: 12px;
  display: block;
  width: 100%;
  height: 1.2px;
  background: linear-gradient(90deg, rgba(128, 133, 143, 0) 0%, rgba(128, 133, 143, 0.25) 27.6%, rgba(128, 133, 143, 0.5) 52.62%, rgba(128, 133, 143, 0.29) 74.48%, rgba(128, 133, 143, 0) 100%);
}
.footer .line-5 {
  margin-top: 8px;
  display: block;
  width: 100%;
  height: 1.2px;
  background: linear-gradient(90deg, rgba(128, 133, 143, 0) 0%, rgba(128, 133, 143, 0.25) 27.6%, rgba(128, 133, 143, 0.5) 52.62%, rgba(128, 133, 143, 0.29) 74.48%, rgba(128, 133, 143, 0) 100%);
}
.footer .mt12 {
  margin-top: 12px;
}/*# sourceMappingURL=styles.css.map */