@import url('var.css');
@import url('fonts.css');

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

html {
  height: 100%;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

body {
  font-family: var(--font_manrope);
  font-size: 18px;
  line-height: 1.2;
  color: var(--color-white);
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
  height: 100%;
}

img {
  max-width: 100%;
  vertical-align: top;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1 1 auto;
  overflow-x: hidden;
  padding-top: 30px;
}

.container {
  width: 100%;
  max-width: 1430px;
  padding: 0 15px;
  margin: 0 auto;
}
/* ----------------------------------------------------------------- */
h1 {
  /* max-width: max-content; */
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 1.944rem + 2.78vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background: var(--color-h1) text;
}

h2 {
  max-width: max-content;
  font-size: clamp(1.875rem, 1.319rem + 2.78vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background: var(--color-h2) text;
}

p {
  margin-bottom: 30px;
  font-size: clamp(1.125rem, 1.087rem + 0.82vw, 1.2rem);
  font-weight: 400;
  color: var(--color-white);
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.content ul,
.content ol {
  margin: 25px 0;
  text-align: left;
}
.content ul li,
.content ol li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
}
.content ul li:before,
.content ol li:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  background: var(--color-h2);
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

/* ----------------------------------------------------------------- */
.page-header {
  margin-top: 90px;
}
.page-content {
  margin-bottom: 50px;
}
.page-content a {
  transition: color 0.7s ease;
}
.page-content a:hover {
  color: var(--color-menu-header);
}
/* ----------------------------------------------------------------- */
.btn {
  border-width: 2px;
  border-radius: 4px;
  border: solid transparent;
  position: relative;
  z-index: 1;
  background-color: transparent;
  color: var(--color-black);
  padding: 8px 16px;
  outline: none;
  cursor: pointer;
  display: flex;
  margin: 0 auto;
  width: 200px;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s ease-out;
}

.btn:before,
.btn:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: calc(4px + 2px);
  background: transparent;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  transition: all 0.2s ease-out;
}

.btn:before {
  z-index: -1;
  padding: 2px 0 0 2px;
  margin: calc(2px * -1) 0 0 calc(2px * -1);
  border-bottom-right-radius: 0;
}

.btn:after {
  z-index: -2;
  padding: 0 2px 2px 0;
  margin: 0 calc(2px * -1) calc(2px * -1) 0;
  border-top-left-radius: 0;
}

.btn:hover:before,
.btn:hover:after {
  transform: scale(1.2);
}

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

.btn--primary:before {
  background: var(--gradient);
}

.btn--primary:after {
  background: var(--gradient);
}

.header__button-open {
  display: none;
}

.button,
.button-one {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  min-width: clamp(120px, 15vw, 160px);
  width: clamp(120px, 20vw, 200px);
  max-width: clamp(160px, 25vw, 250px);
  padding: clamp(8px, 2vw, 12px) clamp(10px, 3vw, 20px);
  border-radius: 25px;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button {
  position: relative;
  background: var(--button-gradient-second);
  /* box-shadow: inset 0 -10px 10px rgba(255, 255, 255, 0.164); */
}

.button-one {
  background: var(--button-gradient);
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button-one:hover {
  background: var(--button-hover-gradient);
}

.btn__inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  justify-content: center;
  font-family: var(--font_onest);
  font-weight: 700;
}

.button:hover {
  box-shadow: none;
}

.button {
  /* background: rgba(0, 0, 0, 0.4); */
  position: relative;
}

/* .button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(90deg, #7d9cd8, #7d9cd8);
  -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;
}

.button::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 25px;
  background: linear-gradient(90deg, #7d9cd8, #7d9cd8);
  filter: blur(8px);
  opacity: 0.15;
  z-index: -1;
} */
/* ----------------------------------------------------------------- */

.header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--header-bg-color);
  z-index: 995;
  box-shadow: 0 8px 20px var(--header-shadow-color);
}
.logo {
  line-height: 1;
  align-self: center;
}
.custom-logo {
  max-width: 150px;
  height: auto;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1470px;
  padding: 0px 20px;
  margin: 0 auto;
}
.header__left {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header__burger {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(19, 19, 19);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.header__burger:hover {
  background-color: rgb(59, 59, 59);
}

.burger__img {
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.header__menu {
  display: flex;
  align-items: center;
  margin: 0 auto;
  margin: 0px 10px;
  gap: 30px;
}
.header__menu-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.header__menu-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  transition: color 0.3s ease;
}

.header__menu-link:hover .header__menu-text {
  color: var(--color-menu-header);
}

.header__menu-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.header__menu-link:hover .header__menu-text::after {
  transform: scaleX(1);
}

.header__menu-link img {
  transition: transform 0.3s ease;
}

.header__menu-link:hover img {
  transform: scale(1.2);
}

.header__right {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.header__login {
  display: flex;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background-color: var(--side-menu-bg-color);
  transition: left 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.side-menu.open {
  left: 0;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

.menu-open {
  overflow: hidden;
}

.menu__link-text {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: var(--font-size);
  padding: 10px 0;
  transition: all 0.7s ease-in;
}
.menu__link-text:hover {
  color: var(--color-menu-header);
}

.menu-burger__btn img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.menu-burger__header {
  display: flex;
  gap: 40px;
  align-items: center;
}

.menu-burger__btn {
  background: none;
  width: 40px;
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-bg-color);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
.menu-burger-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-burger__wheel {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  border-radius: 4px;
  margin: 16px 0px;
  box-shadow: 0px 20px 30px var(--menu-burger-shadow-color);
  background: var(--gradient);
  overflow: hidden;
  cursor: pointer;
  animation: gradientAnimation var(--menu-burger-animation-duration) ease
    infinite;
  background-size: 400% 400%;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.menu-burger__wheel-wr {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  overflow: hidden;
  background-image: url(../images/burger/wheel-bg.svg);
  transform: translateZ(0);
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: -15px;
}

.menu-burger__wheel-img {
  position: relative;
  left: -20px;
  bottom: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  animation: moveAround 5s linear infinite;
}

@keyframes moveAround {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.menu-burger__wheel-label {
  position: relative;
  padding-left: 70px;
  z-index: 2;
  flex-grow: 1;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: 16px;
}
.menu-burger__wheel-label {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  font-size: var(--font-size);
  font-weight: 700;
}
.menu__items--hide {
  display: none;
}
.menu__item {
  margin-bottom: 10px;
}

.menu__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: var(--font-size);
  padding: 10px 0;
  transition: color 0.7s ease;
}

.menu__link:hover {
  color: var(--color-menu-header);
}
.menu__img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  transition: transform 0.3s ease, color 0.8s ease-in;
}

.menu__link:hover .menu__img {
  transform: scale(1.2);
}

.menu__icon {
  margin-right: 10px;
}

.menu__divider {
  border-top: 1px solid var(--divider-color);
  margin: 15px 0;
}

.menu__item-text {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.socials-links {
  margin-bottom: 20px;
}
.social-links__link img {
  width: 40px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.social-links__link img:hover {
  transform: scale(1.2);
}

/* ----------------------------------------------------------------- */
.banner__section {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 75vh;
  padding: 55px 0;
}

.banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.banner__section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-bg-color);
  z-index: 0;
}

.banner__container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content {
  margin-top: 40px;
}
.header-banner__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* text-align: center; */
}
.main-banner__content {
  position: relative;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* text-align: center; */
  gap: 30px;
}

.breadcrumb {
  position: absolute;
  top: -40px;
  padding-top: 10px;
  left: 0;
  width: 100%;
  text-align: left;
  font-size: 16px;
  color: #333;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--color-breadcrumb);
  font-weight: 600;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--color-breadcrumb-hover);
}

.breadcrumb span {
  color: #888;
  font-weight: normal;
}

.breadcrumb a:after {
  content: ' >';
}

.breadcrumb a:last-child:after {
  content: '';
}

/* ----------------------------------------------------------------- */
.table__section {
  padding: 60px 0 calc(4vw + 30px);
}

.content-wrapper {
  margin-bottom: 30px;
}

.toc {
  background-color: #05111f;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  max-width: 500px;
  width: 100%;
  margin-bottom: 25px;
  z-index: 2;
}

.toc-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 15px 10px;
  color: var(--color-white);
}
.toc-list {
  background: var(--color-toc-list);
  border-radius: 10px;
}

.toc-list ol {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 25px;
  gap: 10px;
}
.toc-list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.toc-list a:hover {
  color: var(--color-menu-header);
}

.table-overflow {
  overflow-x: auto;
}

.table-wrapper {
  margin-top: 20px;
}

.table-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 15px 10px;
  color: var(--color-white);
  margin: 55px 0 25px;
}
.custom-table,
table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}

.custom-table td,
table td {
  padding: 15px 10px;
  box-shadow: inset 0 -0.3px 0 0 var(--color-white);
}

.custom-table td:first-child,
table td:first-child {
  font-weight: bold;
  color: var(--color-white);
}

.custom-table td:last-child,
table td:last-child {
  text-align: left;
  color: var(--color-white);
}

.column-1,
.column-2 {
  color: white !important;
}

/* ----------------------------------------------------------------- */
.slots__section {
  padding: 40px 0px 40px 0px;
}
.nav-panel-wrapper {
  padding: 10px 20px;
  margin-bottom: 20px;
}

.nav-panel {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  border-radius: 30px;
  padding: 20px;
}

.nav-panel__menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  justify-content: center;
}

.nav-panel__menu-item {
  position: relative;
  padding: 12px 0px 12px 0px;
  border-radius: 25px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.03);
  min-width: 180px;
  flex: 1 1 200px;
  max-width: 250px;
  box-shadow: inset 0 -10px 10px rgba(255, 255, 255, 0.164);
}

.nav-panel__menu-item:hover {
  box-shadow: inset 0 -5px 5px rgba(255, 255, 255, 0.164);
}

.nav-panel__menu-item--active {
  background: rgba(0, 0, 0, 0.4);
  position: relative;
}

.nav-panel__menu-item--active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(90deg, #7d9cd8, #7d9cd8);
  -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;
}

.nav-panel__menu-item--active::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 25px;
  background: linear-gradient(90deg, #2b2ee2, #00ff00);
  filter: blur(8px);
  opacity: 0.15;
  z-index: -1;
}

.nav-panel__menu-link {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  text-align: center;
  display: block;
}

.nav-panel__menu-item:hover .nav-panel__menu-link {
  opacity: 1;
}

.nav-panel__menu-item--active .nav-panel__menu-link {
  opacity: 1;
}

/* ----------------------------------------------------------------- */

.text__block {
  flex: 1 1 70%;
  position: relative;
  z-index: 2;
}

.text-image-img {
  flex: 1 1 30%;
  height: auto;
  position: relative;
  z-index: 1;
  object-fit: cover;
}

.text-image-img img {
  display: block;
  max-width: 100%;
  height: auto;
}
/* ----------------------------------------------------------------- */

.slots-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.slot-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.slot-item__permalink {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  position: relative;
}

.slot-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slot-item__content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  background: linear-gradient(
    45deg,
    rgba(255, 87, 34, 0.7),
    rgba(0, 188, 212, 0.7)
  );
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 20px;
}

.slot-item__content:hover {
  opacity: 1;
}

.slot-item__content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: -1;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.slot-item__content .text {
  font-size: 18px;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.slot-item:hover .slot-item__content {
  opacity: 1;
}

.slot-item__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  cursor: pointer;
  background: var(--button-gradient);
  border-radius: 50px;
  z-index: 10;
}
.slot-item__play img {
  width: 50px;
  height: 50px;
}
.slot-item__title {
  color: #fefefe;
  font-weight: 600;
  font-size: 20px;
  z-index: 10;
}
/* ----------------------------------------------------------------- */
.bonus__section {
  position: relative;
}
.bonus__section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-bg-color);
  z-index: 0;
}

.bonus__content {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 40px 20px;
  z-index: 2;
}

.bonus__content-left {
  display: flex;
  flex: 1.2;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0px 0px 0;
}

.bonus__content-block {
  display: flex;
  margin-bottom: 50px;
  gap: 20px;
}

.bonus__content-title {
  text-align: center;
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
}

.bonus__content-number {
  display: flex;
  font-size: 96px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--gradient-two);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bonus__content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bonus__content-text div:first-child {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-white);
}

.bonus__content-text div:last-child {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-white);
}
.bonus__content-right {
  display: flex;
  flex: 0.8;
}
.bonus__content-right img {
  max-width: 550px;
}

/* ----------------------------------------------------------------- */

.info__block {
  margin: 60px 0px;
}

.info__block h2 {
  font-size: clamp(1.875rem, 0.98rem + 2.86vw, 2.813rem);
  font-weight: 700;
  color: #ffffffe0;
  margin-bottom: 10px;
  text-align: left;
}

/* ----------------------------------------------------------------- */
.footer {
  display: flex;
  flex-direction: column;
  margin: 40px 0px 30px 0px;
}
.footer__download-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 20px;
  border-radius: 8px;
  background: var(--background-menu-footer);
}
.footer-download {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.download-button {
  display: flex;
  gap: 5px;
  padding: 20px 15px;
  min-height: 40px;
  background-color: var(--color-menu-download-button);
  position: relative;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-out;
  cursor: pointer;
}

.download-button:hover {
  background: var(--hover-bg);
  border-radius: 10px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.download-img {
  width: 16px;
  height: 20px;
}
.download-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  transition: all 0.2s ease-out;
  color: var(--color-white);
}
.footer__menu {
  margin: 32px 0px;
}
.footer__menu-row {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.footer__menu-link-text {
  margin-right: 20px;
  transition: color 0.3s ease-out;
}

.arrow-right-3 {
  transition: fill 0.3s ease-out;
}

a:hover .footer__menu-link-text,
a:hover .arrow-right-3 {
  color: var(--color-menu-footer);
  fill: var(--color-menu-footer);
}

.footer__menu-link {
  display: flex;
  gap: 12px;
  padding: 10px 5px;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.2s ease-out;
  color: var(--color-white);
}
.footer__menu-link svg {
  margin-top: 5px;
  flex-shrink: 0;
  align-self: flex-start;
}
.footer__menu-link:hover {
  color: #69b5e0;
}

.footer__menu-link:hover svg {
  filter: brightness(0) saturate(100%) invert(38%) sepia(73%) saturate(524%)
    hue-rotate(190deg) brightness(92%) contrast(91%);
}

.footer__menu-img {
  width: 10px;
  flex-shrink: 0;
  margin: 5px 6px 5px 8px;
}

.footer__menu-link:hover {
  color: #69b5e0;
}

.footer__menu-link:hover svg {
  filter: brightness(0) saturate(100%) invert(38%) sepia(73%) saturate(524%)
    hue-rotate(190deg) brightness(92%) contrast(91%);
}
.soft__section {
  background-color: var(--color-soft);
  padding: 30px 0px;
}
.soft-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.soft-item {
  height: 56px;
  min-width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 10px;
}
.soft-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(0.8);
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 32px 0px 0px 0px;
}
.copy {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-left: 30px;
}
.footer-icon {
  width: 100%;
}
/* ----------------------------------------------------------------- */
.bottom-menu {
  display: none;
  position: fixed;
  padding: 10px 10px 10px 10px;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
  z-index: 10000;
}
.bottom-menu-nav {
  display: flex;
  margin: 0 auto;
}
@media (max-width: 1395px) {
  .alignnone {
    display: none;
  }
}
@media (max-width: 1123px) {
  .alignnone {
    display: block;
  }
  .bonus__content {
    position: relative;
  }
  .bonus__content-left {
    position: relative;
    z-index: 100;
    margin: 0 auto;
  }

  .bonus__content-right {
    position: absolute;
    left: 20%;
    width: 60%;
    padding: 20px;
    filter: brightness(0.3);
    z-index: 1;
  }

  .bonus__content-button {
    margin: 0 auto;
  }
  .bonus__content-block {
    flex-direction: column;
    align-items: center;
  }
  .bonus__content-text span:first-child {
    font-size: 30px;
  }
  .bonus__content-text span:last-child {
    font-size: 20px;
  }
  .bonus__content-number {
    font-size: 80px;
  }
  .nav-panel__menu-list {
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: center;
  }
}

@media (max-width: 800px) {
  .text-image-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
  }

  .text-image-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%) contrast(120%);
  }
  .header__menu-nav {
    display: none;
  }
}
@media (max-width: 650px) {
  .logo--none {
    display: none;
  }
  .menu__items--hide {
    display: block;
  }
  .bottom-menu {
    display: flex;
  }

  .nav-panel__menu-link {
    padding: 0px 10px;
  }

  .bonus__content-title {
    text-align: center;
  }
  .bonus__content-block {
    flex-direction: column;
    text-align: center;
  }
  .bonus__content-right img {
    margin: 20px 0px;
    width: 324px;
    height: 236px;
  }
  .bonus__content-left {
    padding: 0px;
  }
  .footer-copy {
    row-gap: 30px;
    padding: 32px 0px 70px 0px;
  }
  .footer-icons {
    margin: 0 auto;
  }

  .slots-items {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
  }
  .slot-item {
    flex: 0 0 auto;
    width: 200px;
  }

  .breadcrumb {
    position: relative;
    top: auto;
    margin: 40px 0px 0px 0px;
  }
  .content {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .bonus__content-right img {
    max-width: 300px;
  }
  .bonus__content-text span:first-child {
    font-size: 25px;
  }
  .bonus__content-text span:last-child {
    font-size: 18px;
  }
  .bonus__content-number {
    font-size: 45px;
  }
  .footer__download-menu {
    justify-content: center;
  }
}
@media (max-width: 450px) {
  .header__container {
    padding: 0px 10px;
    gap: 8px;
  }
  .header__right {
    gap: 8px;
  }
  .custom-logo {
    max-width: 80px;
    height: 20px;
  }
  .bottom-menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}
