﻿@charset "UTF-8";
:root {
  --white: #FFF;
  --grey: #7d8999;
  --grey_btn: #262a32;
  --secondary-grey: #858b98;
  --black: #000;
  --orange: #fbd506;
  --border-color: #333540;
  --secondary-border-color: #26282b;
  --bg: #101012;
  --bg-light: #fff;
  --bg-dark: #1a1b20;
  --dots: #313742;
  --button-hover: #ffe81c;
  --button-click: #f0cb08;
  --primary-text-color: #fff;
  --primary-hovered-text-color: #9da6b8;
  --secondary-text-color: #858b98;
  --article-bg-color: #1a1b20;
  --black-text-color: #121314;
  --grey_btn-bg-color: #262a32;
  --dots: #313742;
  --active-grey_btn-bg-color: #20242a;
  --bg-color: #101012;
  --font-color: #7d8999;
  --link-color: #56cbf2;
  --bg-color-input: #1a1e20;
  --hovered-border: #495160;
  --notification-color: #d63232;
  --input-border: #353b46;
  --input-hover-border: #586172;
  --input-hover-bg-color: #333842;
  --sidebar-grey-color: #a3b5c6;
  --sidebar-blue-color: #5e98d9;
  --sidebar-dark-blue-color: #5a74ff;
  --sidebar-violet-color: #a353ff;
  --sidebar-pink-color: #d823e1;
  --sidebar-red-color: #f13640;
  --sidebar-green-color: #ade55c;
  --sidebar-orange-color: #ff9f0a;
  --basket-border: #26282b;
  --scrollbar-color: #4c555f;
  --main-green: #30d158;
  --green-button: #1fb444;
  --green-button-active: #179e39;
  --grey-grafit-button: #262a2f;
  --background-color: #1d2026;
  --background-cart-color: #1f2026;
  --background-cart-color-total: #191a1f;
  --trash-color: #bf2626;
  --icon-svg-color: #707c8c;
  --time-color: #30281e;
  --new-border-bottom: #333540;
}

@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Thin.woff2), url(../fonts/Roboto-Thin.woff);
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Light.woff2), url(../fonts/Roboto-Light.woff);
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Regular.woff2), url(../fonts/Roboto-Regular.woff);
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Medium.woff2), url(../fonts/Roboto-Medium.woff);
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Bold.woff2), url(../fonts/Roboto-Bold.woff);
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Black.woff2), url(../fonts/Roboto-Black.woff);
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Unbounded;
  src: url(../fonts/Unbounded-ExtraLight.woff2), url(../fonts/Unbounded-ExtraLight.woff);
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Unbounded;
  src: url(../fonts/Unbounded-Light.woff2), url(../fonts/Unbounded-Light.woff);
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Unbounded;
  src: url(../fonts/Unbounded-Regular.woff2), url(../fonts/Unbounded-Regular.woff);
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Unbounded;
  src: url(../fonts/Unbounded-Medium.woff2), url(../fonts/Unbounded-Medium.woff);
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Unbounded;
  src: url(../fonts/Unbounded-SemiBold.woff2), url(../fonts/Unbounded-SemiBold.woff);
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Unbounded;
  src: url(../fonts/Unbounded-Bold.woff2), url(../fonts/Unbounded-Bold.woff);
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Unbounded;
  src: url(../fonts/Unbounded-ExtraBold.woff2), url(../fonts/Unbounded-ExtraBold.woff);
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Unbounded;
  src: url(../fonts/Unbounded-Black.woff2), url(../fonts/Unbounded-Black.woff);
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-style: inherit;
  font-weight: 400;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  min-width: 320px;
  font-family: Roboto, sans-serif;
  line-height: 1.5;
  color: var(--white, #fff);
  background-color: var(--bg, #101012);
}

body.no-scroll {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  background-image: url(../images/background/background-smoke.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

.container {
  max-width: 1400px;
  padding: 0 10px;
  margin: 0 auto;
}

h1 {
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
}

h2 {
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}

h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
}

h5 {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}

p {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  outline: none;
  border: none;
  max-width: 190px;
  width: 100%;
  height: 40px;
  padding: 1px 6px;
  background-color: var(--orange, #fbd506);
  border-radius: 5px;
  transition: all 0.2s ease 0s;
  color: black;
  font-weight: 600;
  font-size: 14px;
}

.btn:hover {
  background-color: var(--button-hover, #ffe81c);
}

.btn:active {
  background-color: var(--button-click, #f0cb08);
}

.slick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--grey_btn, #262a32);
  stroke: var(--secondary-grey, #858b98);
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
}
.slick-arrow:hover {
  background-color: var(--orange, #fbd506);
  stroke: var(--grey_btn, #262a32);
}

.slick-next {
  right: 14%;
  left: unset;
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 30px;
}
.slick-dots li {
  height: 5px;
  font-size: 0;
  line-height: 0;
}
.slick-dots button {
  width: 24px;
  height: 5px;
  border-radius: 5px;
  background: var(--dots, #313742);
  font-size: 0;
  line-height: 0;
  transition: all 0.3s ease-out;
}
.slick-dots .slick-active button {
  width: 48px;
  background: var(--orange, #fbd506);
  transition: all 0.3s ease-out;
}

@keyframes shake-vertical-fourth {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  10%, 30%, 50%, 70% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  20%, 40%, 60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(14px);
    transform: translateY(14px);
  }
  90% {
    -webkit-transform: translateY(-14px);
    transform: translateY(-14px);
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom-block {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 99998;
  background-color: rgba(0, 0, 0, 0.5);
  display: grid;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  backdrop-filter: blur(0);
  transition: all 0.2s ease-out;
}

.modal__box {
  position: relative;
  width: 778px;
  height: 450px;
  border-radius: 16px;
  z-index: 1;
  background-color: var(--bg-dark, rgba(26, 27, 32, 0.85));
  box-shadow: 0px 0px 17px -7px rgba(34, 60, 80, 0.2);
  transform: scale(0);
  transition: transform 0.2s;
}

.modal__close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -40px;
  right: 0;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding: 8px;
  background-color: var(--grey_btn, #262a32);
  border-radius: 5px;
}
.modal__close-btn svg {
  fill: var(--secondary-grey, #858b98);
}

.modal.open {
  visibility: visible;
  opacity: 1;
  backdrop-filter: blur(7px);
}

.modal.open .modal__box {
  transform: scale(1);
}

.header {
  background: var(--bg-dark, #1a1b20);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  height: 72px;
  position: relative;
}
.header__btn-img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}
.header__btn-text--mobile {
  display: none;
}

.logo {
  width: auto;
  height: 40px;
}
.logo__img {
  object-fit: cover;
  aspect-ratio: auto 168/40;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}
.nav__item {
  margin: 14px 0;
  position: relative;
}
.nav__link {
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  background: transparent;
  color: var(--grey, #7d8999);
  transition: all 0.2s ease 0s;
}
.nav__link:hover {
  color: var(--white, #fff);
  transition: all 0.2s ease 0s;
}
.nav__link.active, .nav__link.active-page {
  color: var(--white, #fff);
  transition: all 0.2s ease 0s;
}
.nav__link.active + .nav__dropdown {
  display: block;
}
.nav__link-arrow {
  display: none;
}
.nav__dropdown {
  display: none;
  background: var(--bg, #101012);
  padding: 9px;
  border-radius: 5px;
  width: 106px;
  position: absolute;
  top: 120%;
  left: -17px;
}
.nav__dropdown-link {
  display: block;
  padding: 8px;
  font-size: 14px;
  color: var(--secondary-grey, #858b98);
  transition: all 0.2s ease 0s;
}
.nav__dropdown-link:hover {
  color: var(--white, #fff);
  transition: all 0.2s ease 0s;
}

.select {
  display: flex;
  align-items: center;
  gap: 24px;
}

.currency {
  position: relative;
}
.currency__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: transparent;
}
.currency__title.active + .currency__list {
  display: block;
}
.currency__symbol {
  color: var(--oramge, #fbd506);
  font-size: 24px;
  font-weight: 500;
}
.currency__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--white, #fff);
}
.currency__list {
  display: none;
  width: 90px;
  background: var(--bg, #101012);
  border-radius: 5px;
  position: absolute;
  top: 120%;
  left: 0;
}
.currency__item {
  padding: 3px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px;
}
.currency__link {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  background: #15151d;
  color: var(--grey, #7d8999);
  transition: all 0.2s ease 0s;
  padding: 0 12px;
  display: block;
}
.currency__link:hover {
  color: var(--white, #fff);
  transition: all 0.2s ease 0s;
}
.currency__link.target {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  border-radius: 5px;
  background-color: var(--grey_btn, #262a32);
  color: var(--white, #fff);
  transition: all 0.2s ease 0s;
}

.language {
  position: relative;
}
.language__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: transparent;
}
.language__title.active + .language__list {
  display: block;
}
.language__symbol {
  color: var(--oramge, #fbd506);
  font-size: 24px;
  font-weight: 500;
}
.language__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--white, #fff);
}
.language__list {
  display: none;
  width: 90px;
  background: var(--bg, #101012);
  border-radius: 5px;
  position: absolute;
  top: 120%;
  left: 0;
}
.language__item {
  padding: 3px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px;
}
.language__link {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  background: #15151d;
  color: var(--grey, #7d8999);
  transition: all 0.2s ease 0s;
  padding: 0 12px;
  display: block;
}
.language__link:hover {
  color: var(--white, #fff);
  transition: all 0.2s ease 0s;
}
.language__link.target {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  border-radius: 5px;
  background-color: var(--grey_btn, #262a32);
  color: var(--white, #fff);
  transition: all 0.2s ease 0s;
}

.burger {
  display: none;
  width: 24px;
  height: 24px;
  background: transparent;
}
.burger__img {
  width: 100%;
  object-fit: cover;
}

.footer .container {
  max-width: 1170px;
  padding-bottom: 40px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color, #333540);
}
.footer .logo {
  display: block;
  width: 56px;
  height: 56px;
  background-color: var(--orange, #fbd506);
  border-radius: 14px;
}
.footer .logo__img {
  width: 100%;
  object-fit: cover;
}
.footer__menu {
  display: flex;
  justify-content: space-between;
}
.footer__item {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: var(--white, #fff);
  text-transform: uppercase;
}
.footer__item-arrow {
  display: none;
  width: 18px;
  height: 18px;
  transform: rotate(90deg);
  fill: var(--secondary-grey, #858b98);
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__list-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: var(--grey, #7d8999);
  text-decoration: none;
}
.footer__list-link:hover {
  color: var(--white, #fff);
}
.footer__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 142px;
}
.footer__social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  width: 42px;
  background-color: var(--bg-dark, #1a1b20);
  border-radius: 25px;
  cursor: pointer;
  color: #7d8999;
}
.footer__social-link:hover {
  color: var(--white, #fff);
}
.footer__social-link:hover.footer__vk {
  background-color: #07f;
}
.footer__social-link:hover.footer__youtube {
  background-color: red;
}
.footer__social-link:hover.footer__telegram {
  background-color: #26a5e4;
}
.footer__social-link:hover.footer__tiktok {
  background: linear-gradient(135deg, #1fe6f0, #f72152 80%);
}
.footer__social-link:hover.footer__instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.footer__social-img {
  width: 22px;
  height: auto;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}
.footer__bottom-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__help {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--grey, #7d8999);
}
.footer__help-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--grey, #7d8999);
}
.footer__help-link:hover {
  color: var(--white, #fff);
}
.footer__payment {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  height: 35px;
  align-items: center;
}
.footer__payment-img {
  width: 35px;
  height: 35px;
  object-fit: cover;
}
.footer__payment-img:nth-child(1) {
  width: 58px;
  height: 19px;
}
.footer__payment-img:nth-child(2) {
  width: 50px;
  height: 31px;
}
.footer__payment-img:nth-child(3) {
  width: 54px;
  height: 15px;
}

.copyright {
  color: var(--grey, #7d8999);
}

.hero {
  background-image: url(../images/background/effect.svg);
  background-repeat: no-repeat;
  background-size: 627px 646px;
  background-position: top left;
  backdrop-filter: opacity(0.8);
  margin-bottom: 143px;
}
.hero__inner {
  display: flex;
  padding: 98px 0 0 0;
}
.hero__content {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.hero__top {
  display: flex;
  gap: 20px;
  color: #00b67a;
  animation: slide-in-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.25s;
}
.hero__top-item {
  display: flex;
  flex-direction: column;
  margin-top: 11px;
  font-size: 12px;
}
.hero__top-img {
  width: 130px;
  height: auto;
  object-fit: contain;
}
.hero__top-grade {
  width: 89px;
  height: auto;
  object-fit: cover;
}
.hero__text {
  animation: slide-in-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.5s;
}
.hero__title {
  font-family: Unbounded;
  margin: 32px 0 20px;
  color: var(--white, #fff);
}
.hero__suptitle {
  color: var(--grey, #7d8999);
  margin-bottom: 52px;
}
.hero__btns {
  display: flex;
  gap: 40px;
  animation: slide-in-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.75s;
}
.hero__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-width: 180px;
  width: 180px;
  height: 64px;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  color: var(--white, #fff);
}
.hero__btn-img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}
.hero__link {
  max-width: 270px;
  width: 270px;
  height: 64px;
  gap: 16px;
  font-weight: 600;
  font-size: 18px;
}
.hero__cover {
  display: flex;
  justify-content: center;
  width: 50%;
  box-shadow: rgb(16, 16, 18) 50px 25px 50px 3px inset;
  margin-top: 32px;
  border-radius: 150px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/background/net.svg);
}
.hero__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: shake-vertical-fourth 10s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
}

.features {
  margin-bottom: 65px;
}
.features__inner {
  display: flex;
  justify-content: space-between;
}
.features__item {
  display: flex;
  flex-direction: column;
  max-width: 347px;
  width: 100%;
}
.features__item::before {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: var(--orange, #fbd506);
  position: relative;
  margin-bottom: 26px;
  animation: slide-in-bottom-block 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.25s;
}
.features__title {
  font-family: Unbounded;
  white-space: nowrap;
  margin-bottom: 16px;
  animation: slide-in-bottom-block 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.5s;
}
.features__suptitle {
  color: var(--grey, #7d8999);
  animation: slide-in-bottom-block 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.75s;
}

.liveline__inner {
  background: linear-gradient(rgb(26, 28, 33), rgb(16, 16, 18));
  border-radius: 42px;
  margin: 65px 0;
  height: 330px;
}
.liveline__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px 0 20px;
}
.liveline__head-item {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.liveline__head-img {
  width: 76px;
  height: 76px;
  object-fit: cover;
}
.liveline__head-title {
  font-family: Unbounded;
  color: var(--white, #fff);
}
.liveline__head-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--grey, #7d8999);
}
.liveline__head-text span {
  color: var(--white, #fff);
}
.liveline__slider {
  margin: 0 15px 0 42px;
}
.liveline__item {
  display: flex;
  flex-direction: column;
  padding: 12px 16px 5px;
  margin-right: 20px;
  border-radius: 16px;
  background-color: var(--grey_btn, #262a32);
  position: relative;
}
.liveline__item::before {
  content: "";
  width: 80px;
  height: 61px;
  border-radius: 16px;
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(211, 44, 230);
  filter: blur(30px);
}
.liveline__item::after {
  content: "";
  display: block;
  width: calc(100% - 70px);
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(270deg, rgba(211, 44, 230, 0) 0%, rgb(211, 44, 230) 47%, rgba(211, 44, 230, 0) 100%);
}
.liveline__item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--white, #fff);
  margin-bottom: 5px;
}
.liveline__item-time {
  color: var(--grey, #7d8999);
}
.liveline__item-img {
  max-width: 138px;
}
.liveline__item-name {
  color: var(--grey, #7d8999);
  font-size: 12px;
  margin-bottom: 4px;
}
.liveline__item-price {
  color: var(--white, #fff);
  font-size: 14px;
}

.reviews__inner {
  display: flex;
  justify-content: space-between;
  padding: 65px 0;
}
.reviews__content {
  display: flex;
  flex-direction: column;
  max-width: 540px;
}
.reviews__title {
  font-weight: 600;
  font-size: 52px;
  font-family: Unbounded;
  color: var(--white, #fff);
  line-height: 1.3;
  margin-bottom: 32px;
  animation: slide-in-bottom-block 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.25s;
}
.reviews__suptitle {
  color: var(--grey, #7d8999);
  margin-bottom: 52px;
  animation: slide-in-bottom-block 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.5s;
}
.reviews__btn {
  font-weight: 600;
  font-size: 18px;
  max-width: 320px;
  height: 64px;
  animation: slide-in-bottom-block 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.75s;
}
.reviews__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}
.reviews__stat {
  color: var(--grey, #7d8999);
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}
.reviews__stat span {
  color: var(--white, #fff);
}
.reviews__slider {
  max-width: 700px;
  background-color: var(--bg-dark, #1a1b20);
  position: relative;
}
.reviews__slider::before {
  content: "";
  width: 17%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 2;
  background: linear-gradient(270deg, rgb(16, 16, 18) 20%, rgba(16, 16, 18, 0.5) 100%);
}
.reviews__slider::after {
  content: "";
  width: 17%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  background: linear-gradient(270deg, rgb(16, 16, 18) 20%, rgba(16, 16, 18, 0.5) 100%);
  display: none;
}
.reviews__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 351px;
  padding: 32px 0 32px 32px;
  overflow: hidden;
}
.reviews__item-content {
  min-width: 300px;
}
.reviews__item-head {
  display: flex;
  justify-content: space-between;
}
.reviews__item-avatar {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
}
.reviews__item-logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.reviews__item-name {
  margin-bottom: 16px;
  color: var(--white, #fff);
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
}
.reviews__item-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: var(--grey, #7d8999);
}
.reviews__item-grade {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white, #fff);
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
}
.reviews__item-img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.rec__inner {
  padding: 65px 0;
  overflow: hidden;
}
.rec__title {
  font-weight: 600;
  color: var(--white, #fff);
  font-family: Unbounded;
  font-size: 52px;
  text-align: center;
  line-height: 72px;
  margin: 0 0 65px;
}
.rec__slider {
  height: 400px;
  padding: 100px 0;
}
.rec__slider .slick-prev {
  left: calc((100% - 800px) / 2 - 21px);
}
.rec__slider .slick-next {
  right: calc((100% - 800px) / 2 - 21px);
}
.rec__slider .slick-list {
  overflow: visible;
}
.rec__slider-item {
  position: relative;
  z-index: 1;
  opacity: 0.25;
  transform: scale(1);
  transition: all 0.3s ease-out;
}
.rec__slider-item.slick-active {
  z-index: 2;
  opacity: 1;
  transform: scale(2);
  transition: all 0.3s ease-out;
}
.rec__item {
  background-image: url(../images/background/background-video.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 400px;
  height: 200px;
  margin: 0 40px;
  border-radius: 24px;
  overflow: hidden;
}
.rec__item-avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}
.rec__item-link {
  display: flex;
  flex-direction: column;
  color: var(--white, #fff);
  text-align: left;
}
.rec__item-link:last-child {
  margin-top: auto;
}
.rec__item-name {
  font-weight: 600;
  font-size: 16px;
}
.rec__item-logo {
  width: 54px;
  height: 12px;
  object-fit: cover;
}
.rec__item-sub {
  font-size: 9px;
  font-weight: 400;
  color: var(--grey, #7d8999);
}
.rec__content {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  padding: 20px 0 20px 20px;
}
.rec__video {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-size: cover;
  background-repeat: no-repeat;
}
.rec__video-play {
  width: 36px;
  height: 36px;
  object-fit: cover;
  cursor: pointer;
  background-color: var(--white, #fff);
  border-radius: 50%;
  pointer-events: none;
}
.rec__video[data-id=rec-1] {
  background-image: url(../../vi/h-2OJAU92b0/hq720.jpg);
}
.rec__video[data-id=rec-2] {
  background-image: url(../../vi/oSynyHJyWnA/hq720.jpg);
}
.rec__video[data-id=rec-3] {
  background-image: url(../../vi/u5WAXkUXhzQ/hq720.jpg);
}
.rec__video[data-id=rec-4] {
  background-image: url(../../vi/EbYONp3hv_0/hq720.jpg);
}
.rec__video[data-id=rec-5] {
  background-image: url(../../vi/L4nj-G-ybQc/hq720.jpg);
}

.stat__inner {
  display: flex;
  justify-content: space-around;
  padding: 65px 0;
}
.stat__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.stat__item::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: var(--orange, #fbd506);
  filter: blur(35px);
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
}
.stat__item:hover::before {
  filter: blur(25px);
}
.stat__item:hover .stat__suptitle {
  color: var(--white, #fff);
}
.stat__item:last-child .stat__title::after {
  content: "€";
}
.stat__img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  margin-bottom: 16px;
}
.stat__title {
  font-family: Unbounded;
  margin-bottom: 14px;
}
.stat__suptitle {
  color: var(--grey, #7d8999);
}

.desc .container {
  max-width: 1170px;
}
.desc__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 72px 0 96px;
}
.desc__title {
  font-family: Unbounded, serif;
  font-size: 22px;
  color: var(--white, #fff);
  font-weight: 600;
}
.desc__text {
  font-size: 13px;
  color: var(--grey, #7d8999);
  line-height: 1.7;
}

@media (max-width: 1389px) {
  .reviews__inner {
    flex-direction: column;
    align-items: center;
    gap: 52px;
  }
  .reviews__content {
    align-items: center;
    text-align: center;
  }
  .reviews__slider {
    max-width: 1400px;
    background-color: transparent;
  }
  .reviews__item {
    width: 300px;
    padding: 32px;
    background-color: var(--bg-dark, #1a1b20);
    margin: 0 40px 0 25px;
  }
  .reviews__item-content {
    min-width: unset;
  }
  .reviews__slider::before,
  .reviews__slider::after {
    display: block;
    width: 12%;
  }
}
@media (max-width: 1200px) {
  .nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--bg, #101012);
    width: 240px;
    height: 100vh;
    position: absolute;
    left: -240px;
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform 0.5s, visibility 0.5s;
    will-change: transform;
  }
  .nav.open {
    top: 0;
    left: -10px;
    z-index: 1000;
    visibility: visible;
    transform: translateX(0);
    transition: transform 0.5s, visibility 0.5s;
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: unset;
    padding: 8px;
    margin-top: 8px;
  }
  .nav__item {
    width: 100%;
    margin: 0;
  }
  .nav__link {
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 48px;
    padding: 8px 16px;
    border-radius: 5px;
  }
  .nav__link.active,
  .nav__link.active-page {
    background-color: var(--grey_btn, #262a32);
  }
  .nav__link-arrow {
    display: block;
    width: 10px;
    height: 6px;
    margin: 12px;
    transition: transform 0.2s ease-out;
  }
  .nav__link.active .nav__link-arrow {
    transform: rotate(180deg);
    transition: transform 0.2s ease-out;
  }
  .nav__dropdown {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
  }
  .nav__dropdown-link {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    padding: 8px 16px 8px 32px;
  }
  .nav__link.active + .nav__dropdown {
    max-height: 100%;
  }
  .burger {
    display: block;
  }
  .header__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header__btn {
    margin-left: auto;
  }
  .select {
    margin-left: 24px;
  }
  .currency__text,
  .language__text {
    margin: 14px 0;
  }
  .currency__list,
  .language__list {
    top: unset;
    bottom: 120%;
  }
  .main {
    opacity: 1;
    transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  }
  .footer .container {
    max-width: 929px;
  }
  .footer__payment-img {
    width: 30px;
    height: 30px;
  }
  .footer__payment {
    gap: 20px;
  }
  .footer__payment-img {
    width: 30px;
    height: 30px;
  }
  .footer__payment-img:nth-child(1) {
    width: 49px;
    height: 16px;
  }
  .footer__payment-img:nth-child(2) {
    width: 42px;
    height: 26px;
  }
  .footer__payment-img:nth-child(3) {
    width: 46px;
    height: 12px;
  }
}
@media (max-width: 1153px) {
  .features__inner {
    gap: 48px;
    justify-content: space-around;
  }
  .features__item {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .hero__inner {
    flex-direction: column;
    align-items: center;
    padding: 40px 0 0;
  }
  .hero__content {
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 700px;
  }
  .hero__cover {
    width: 100%;
  }
  .hero__cover-img {
    max-width: 600px;
  }
}
@media (max-width: 999px) {
  .footer .container {
    max-width: 328px;
  }
  .footer__inner {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .footer__menu {
    flex-direction: column;
    gap: 24px;
  }
  .footer__item {
    gap: unset;
  }
  .footer__menu .logo {
    margin: 0 auto 26px;
  }
  .footer__item-title {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1.5px solid var(--secondary-border-color, #26282b);
    padding: 0 16px 20px;
  }
  .footer__list,
  .footer__social-list {
    display: none;
    width: 100%;
  }
  .footer__item-title.active + .footer__list,
  .footer__item-title.active + .footer__social-list {
    display: flex;
  }
  .footer__item-title.active .footer__item-arrow {
    transform: rotate(270deg);
    fill: var(--orange, #fbd506);
  }
  .footer__list,
  .footer__social-list {
    padding: 24px 16px 22px;
  }
  .footer__bottom {
    padding: 40px 16px 0;
  }
  .footer__bottom-item {
    gap: 32px;
  }
  .footer__help-dots:nth-child(4) {
    opacity: 0;
  }
  .footer__payment {
    display: none;
  }
  .footer__item-arrow {
    display: block;
  }
  .rec__item {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: calc(100% - 20px);
    height: auto;
    margin: 0 auto;
  }
  .rec__content {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 15px;
    padding: 24px 24px 0;
    width: 100%;
  }
  .rec__item-link {
    width: calc(100% - 52px - 15px);
  }
  .rec__item-avatar {
    width: 52px;
    height: 52px;
    margin-bottom: 41px;
  }
  .rec__item-logo {
    width: 108px;
    height: 24px;
  }
  .rec__item-sub {
    font-size: 14px;
  }
  .rec__slider-item {
    opacity: 1;
  }
  .rec__slider-item.slick-active {
    z-index: 2;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease-out;
  }
  .rec__video {
    width: 100%;
    border-radius: 24px;
    height: 215px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  h3 {
    font-size: 22px;
  }
  h5 {
    font-size: 16px;
  }
  .header__btn {
    width: 120px;
  }
  .header__btn-text {
    display: none;
  }
  .header__btn-text--mobile {
    display: block;
  }
  .hero {
    background-image: none;
    margin-bottom: 65px;
  }
  .hero__btns {
    flex-direction: column;
    gap: 20px;
  }
  .hero__btn {
    width: 100%;
  }
  .features__inner {
    flex-direction: column;
    align-items: center;
  }
  .features__item {
    max-width: 100%;
    width: min-content;
  }
  .stat__inner {
    flex-direction: column;
    gap: 32px;
    padding: 65px 0 0;
  }
  .reviews__title {
    font-size: 30px;
  }
  .reviews__body {
    flex-direction: column-reverse;
  }
  .rec__title {
    font-size: 30px;
    margin: 0 0 0 30px;
  }
  .modal__box {
    width: 100%;
    min-width: 520px;
    height: auto;
    aspect-ratio: 1/0.56;
  }
}
@media (max-width: 540px) {
  .features__item {
    width: 100%;
  }
  .features__title {
    white-space: unset;
  }
  .features {
    margin-bottom: 0;
  }
  .liveline {
    display: none;
  }
  .modal__box {
    width: 100%;
    min-width: 360px;
    height: auto;
    aspect-ratio: 1/0.56;
  }
}
@media (max-width: 520px) {
  .header__btn {
    width: 40px;
  }
  .header__btn-text--mobile {
    display: none;
  }
}
@media (max-width: 360px) {
  .modal__box {
    width: 100%;
    min-width: unset;
    height: auto;
    aspect-ratio: 1/0.56;
  }
}