styles.css 26 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. html {
  7. scroll-behavior: smooth;
  8. }
  9. @font-face {
  10. font-family: "Montserrat";
  11. font-weight: 400;
  12. font-style: normal;
  13. font-display: swap;
  14. src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  15. }
  16. @font-face {
  17. font-family: "Montserrat";
  18. font-weight: 600;
  19. font-style: normal;
  20. font-display: swap;
  21. src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  22. }
  23. @font-face {
  24. font-family: "Montserrat";
  25. font-weight: 700;
  26. font-style: normal;
  27. font-display: swap;
  28. src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  29. }
  30. :root {
  31. --container-width: 1400px;
  32. --transition: 0.3s ease;
  33. --default-font-family: 'Montserrat';
  34. --heading-font-family: 'Montserrat';
  35. --scrollbar-color:#F0F3F6;
  36. --text-color: rgba(2, 0, 5, 0.80);
  37. --fz-default: 16px;
  38. --lh-default: 24px;
  39. --h1: 24px;
  40. --h2: 20px;
  41. --h3: 18px;
  42. --h4: 16px;
  43. }
  44. @media (max-width: 1199px) {
  45. :root {
  46. --container-width: 1199px;
  47. --fz-default: 16px;
  48. --lh-default: 26px;
  49. --h1: 22px;
  50. --h2: 18px;
  51. --h3: 16px;
  52. --h4: 14px;
  53. }
  54. }
  55. @media (max-width: 768px) {
  56. :root {
  57. --container-width: 768px;
  58. --fz-default: 14px;
  59. --lh-default: 20px;
  60. --h1: 22px;
  61. --h2: 18px;
  62. --h3: 16px;
  63. --h4: 14px;
  64. }
  65. }
  66. body {
  67. display: flex;
  68. flex-direction: column;
  69. min-height: 100vh;
  70. margin: 0;
  71. padding: 0;
  72. font-family: var(--default-font-family), Helvetica, Arial, sans-serif;
  73. font-weight: 400;
  74. font-size: var(--fz-default);
  75. font-style: normal;
  76. font-weight: 400;
  77. line-height: var(--lh-default);
  78. min-width: 360px;
  79. color: var(--text-color);
  80. position: relative;
  81. scroll-behavior: smooth;
  82. -webkit-font-smoothing: antialiased;
  83. -moz-osx-font-smoothing: grayscale;
  84. text-rendering: optimizeLegibility;
  85. }
  86. h1 {
  87. font-family: var(--heading-font-family);
  88. font-weight: 600;
  89. font-size: var(--h1);
  90. line-height: 106%;
  91. text-transform: uppercase;
  92. }
  93. h2 {
  94. font-family: var(--heading-font-family);
  95. font-weight: 600;
  96. font-size: var(--h2);
  97. line-height: 125%;
  98. text-transform: uppercase;
  99. }
  100. h3 {
  101. font-family: var(--heading-font-family);
  102. font-weight: 600;
  103. font-size: var(--h3);
  104. line-height: 130%;
  105. }
  106. h4 {
  107. font-family: var(--heading-font-family);
  108. font-weight: 600;
  109. font-size: var(--h4);
  110. line-height: 133%;
  111. }
  112. h5 {
  113. font-family: var(--heading-font-family);
  114. font-weight: 600;
  115. font-size: var(--m);
  116. line-height: 135%;
  117. }
  118. h6 {
  119. font-family: var(--heading-font-family);
  120. font-weight: 900;
  121. font-size: var(--m);
  122. line-height: 140%;
  123. }
  124. h1, h2, h3, h4, h5, h6 {
  125. margin: 32px 0 20px 0;
  126. }
  127. @media (max-width: 768px) {
  128. h1, h2, h3, h4, h5, h6 {
  129. margin: 24px 0 12px 0;
  130. }
  131. }
  132. .text > h1:first-child, .text > h2:first-child, .text > h3:first-child, .text > h4:first-child, .text > h5:first-child, .text > h6:first-child {
  133. margin-top: 0;
  134. }
  135. .text p {
  136. margin-bottom: 24px;
  137. }
  138. @media (max-width: 768px) {
  139. .text p {
  140. margin-bottom: 16px;
  141. }
  142. }
  143. .text p:last-child {
  144. margin-bottom: 0;
  145. }
  146. .text a {
  147. color: var(--color-link-text);
  148. text-decoration: underline;
  149. text-underline-offset: 3px;
  150. text-decoration-thickness: 1px;
  151. }
  152. .text a:hover {
  153. text-decoration: none;
  154. color: var(--color-theme-red);
  155. }
  156. .text ol, .text ul {
  157. margin: 24px 0;
  158. list-style-position: inside;
  159. }
  160. @media (max-width: 768px) {
  161. .text ol, .text ul {
  162. margin: 12px 0;
  163. padding-left: 8px;
  164. }
  165. }
  166. .text ol li, .text ul li {
  167. margin: 12px 0;
  168. margin-left: 32px;
  169. }
  170. @media (max-width: 768px) {
  171. .text ol li, .text ul li {
  172. margin-left: 16px;
  173. }
  174. }
  175. .text ul {
  176. list-style: disc;
  177. }
  178. .text ol {
  179. list-style: decimal;
  180. }
  181. .text img {
  182. max-width: 100%;
  183. height: auto;
  184. border-radius: 12px;
  185. }
  186. .text .table-wrapper-scroll {
  187. margin: 30px 0;
  188. background: var(--table-bg-color);
  189. border: 1px solid var(--content-border-color);
  190. border-radius: 9px;
  191. overflow: hidden;
  192. }
  193. @media (max-width: 575px) {
  194. .text .table-wrapper-scroll {
  195. overflow-x: auto;
  196. margin: 20px 0;
  197. }
  198. .text .table-wrapper-scroll::-webkit-scrollbar {
  199. height: 6px;
  200. }
  201. .text .table-wrapper-scroll::-webkit-scrollbar-track {
  202. background: var(--table-bg-color);
  203. border-radius: 9px;
  204. }
  205. .text .table-wrapper-scroll::-webkit-scrollbar-thumb {
  206. background: var(--content-border-color);
  207. border-radius: 9px;
  208. }
  209. .text .table-wrapper-scroll::-webkit-scrollbar-thumb:hover {
  210. background: var(--accent-color);
  211. }
  212. }
  213. .text .table-wrapper {
  214. border-radius: 9px;
  215. }
  216. @media (max-width: 575px) {
  217. .text .table-wrapper.large-table {
  218. width: 640px;
  219. }
  220. }
  221. .text table {
  222. margin: 0;
  223. position: relative;
  224. width: 100%;
  225. table-layout: auto;
  226. border-collapse: collapse;
  227. border-radius: 9px;
  228. overflow: hidden;
  229. background: var(--table-bg-color);
  230. }
  231. .text table thead th, .text table thead td {
  232. padding: 12px;
  233. text-align: center;
  234. font-size: 16px;
  235. font-style: normal;
  236. font-weight: 600;
  237. line-height: 1.2em;
  238. vertical-align: middle;
  239. background: var(--table-header-color);
  240. border: 1px solid var(--content-border-color);
  241. }
  242. @media (max-width: 575px) {
  243. .text table thead th, .text table thead td {
  244. vertical-align: middle;
  245. font-size: 13px;
  246. padding: 8px;
  247. }
  248. }
  249. .text table tr:first-child th {
  250. padding: 12px;
  251. text-align: center;
  252. font-size: 16px;
  253. font-style: normal;
  254. font-weight: 600;
  255. line-height: 1.2em;
  256. vertical-align: middle;
  257. background: var(--table-header-color);
  258. border: 1px solid var(--content-border-color);
  259. }
  260. @media (max-width: 575px) {
  261. .text table tr:first-child th {
  262. vertical-align: middle;
  263. font-size: 13px;
  264. padding: 8px;
  265. }
  266. }
  267. .text table tr:first-child:has(th) {
  268. overflow: hidden;
  269. height: auto !important;
  270. }
  271. .text table tbody tr {
  272. border: 1px solid var(--content-border-color);
  273. }
  274. .text table tbody tr:nth-child(even) {
  275. background: rgba(var(--table-header-color-rgb, 42, 42, 42), 0.3);
  276. }
  277. .text table tbody td {
  278. padding: 12px;
  279. vertical-align: middle;
  280. word-wrap: break-word;
  281. border: 1px solid var(--content-border-color);
  282. }
  283. @media (max-width: 1199px) {
  284. .text table tbody td {
  285. font-size: 14px;
  286. font-style: normal;
  287. font-weight: 400;
  288. line-height: 16px;
  289. }
  290. }
  291. @media (max-width: 575px) {
  292. .text table tbody td {
  293. font-size: 13px;
  294. padding: 8px;
  295. }
  296. }
  297. .header {
  298. position: fixed;
  299. width: 100%;
  300. top: 0;
  301. left: 0;
  302. height: 70px;
  303. z-index: 1000;
  304. background: var(--header-color);
  305. }
  306. .header .container {
  307. display: flex;
  308. justify-content: space-between;
  309. align-items: center;
  310. height: 100%;
  311. gap: 20px;
  312. }
  313. .header__logo {
  314. width: 190px;
  315. height: 44px;
  316. flex-shrink: 0;
  317. display: flex;
  318. justify-content: center;
  319. align-items: center;
  320. z-index: 1001;
  321. }
  322. .header__logo-link {
  323. display: inline-block;
  324. line-height: 0;
  325. }
  326. .header__logo img {
  327. width: 190px;
  328. height: 44px;
  329. display: block;
  330. cursor: pointer;
  331. -o-object-fit: contain;
  332. object-fit: contain;
  333. transition: opacity 0.3s ease;
  334. }
  335. .header__nav {
  336. flex: 1;
  337. display: flex;
  338. justify-content: center;
  339. }
  340. .header__menu {
  341. list-style: none;
  342. margin: 0;
  343. padding: 0;
  344. display: flex;
  345. align-items: center;
  346. gap: 40px;
  347. }
  348. .header__menu-link {
  349. text-decoration: none;
  350. font-size: 16px;
  351. font-weight: 500;
  352. transition: opacity 0.3s ease;
  353. color: #fff;
  354. white-space: nowrap;
  355. opacity: 0.9;
  356. }
  357. .header__menu-link:hover {
  358. opacity: 1;
  359. color: #fff;
  360. }
  361. .header__actions {
  362. display: flex;
  363. align-items: center;
  364. gap: 12px;
  365. flex-shrink: 0;
  366. }
  367. .header__btn {
  368. border-radius: 6px;
  369. border: 1px solid #FFF;
  370. display: flex;
  371. height: 42px;
  372. padding: 8px 32px;
  373. justify-content: center;
  374. align-items: center;
  375. gap: 8px;
  376. color: #FFF;
  377. font-size: 14px;
  378. font-style: normal;
  379. font-weight: 600;
  380. line-height: normal;
  381. text-transform: uppercase;
  382. background: none;
  383. cursor: pointer;
  384. }
  385. .header__btn--primary:hover {
  386. transform: translateY(-1px);
  387. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  388. }
  389. .header__btn--secondary:hover {
  390. transform: translateY(-1px);
  391. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  392. }
  393. .header__burger {
  394. display: none;
  395. flex-direction: column;
  396. justify-content: space-between;
  397. width: 30px;
  398. height: 24px;
  399. background: transparent;
  400. border: none;
  401. cursor: pointer;
  402. padding: 0;
  403. z-index: 1001;
  404. transition: transform 0.3s ease;
  405. }
  406. .header__burger:hover {
  407. transform: scale(1.1);
  408. }
  409. .header__burger-line {
  410. width: 100%;
  411. height: 3px;
  412. background: #fff;
  413. border-radius: 2px;
  414. transition: all 0.3s ease;
  415. }
  416. .header__burger.active .header__burger-line:nth-child(1) {
  417. transform: translateY(10.5px) rotate(45deg);
  418. }
  419. .header__burger.active .header__burger-line:nth-child(2) {
  420. opacity: 0;
  421. }
  422. .header__burger.active .header__burger-line:nth-child(3) {
  423. transform: translateY(-10.5px) rotate(-45deg);
  424. }
  425. @media (max-width: 1199px) {
  426. .header__menu {
  427. gap: 24px;
  428. }
  429. .header__btn {
  430. padding: 8px 16px;
  431. font-size: 13px;
  432. }
  433. }
  434. @media (max-width: 768px) {
  435. .header {
  436. height: 60px;
  437. }
  438. .header__logo {
  439. width: 150px;
  440. height: 35px;
  441. }
  442. .header__logo img {
  443. width: 150px;
  444. height: 35px;
  445. }
  446. .header__burger {
  447. display: flex;
  448. }
  449. .header__nav {
  450. position: fixed;
  451. top: 60px;
  452. left: 0;
  453. width: 100%;
  454. height: calc(100vh - 60px);
  455. transform: translateX(-100%);
  456. transition: transform 0.3s ease;
  457. padding: 40px 20px;
  458. overflow-y: auto;
  459. }
  460. }
  461. @media (max-width: 768px) and (max-width: 768px) {
  462. .header__nav {
  463. background: var(--body-bg-color);
  464. }
  465. }
  466. @media (max-width: 768px) {
  467. .header__nav.active {
  468. transform: translateX(0);
  469. }
  470. .header__menu {
  471. flex-direction: column;
  472. align-items: center;
  473. width: 100%;
  474. gap: 24px;
  475. }
  476. .header__menu-link {
  477. font-size: 18px;
  478. }
  479. }
  480. @media (max-width: 768px) and (max-width: 768px) {
  481. .header__menu-link {
  482. font-size: 16px;
  483. background: var(--body-bg-color);
  484. color: var(--text-color);
  485. }
  486. }
  487. @media (max-width: 768px) {
  488. .header__actions {
  489. gap: 8px;
  490. }
  491. .header__btn {
  492. display: none;
  493. }
  494. .header__nav.active .header__btn {
  495. display: block;
  496. width: calc(100% - 40px);
  497. margin: 0 20px 16px;
  498. }
  499. }
  500. .footer {
  501. background: var(--footer-bg-color);
  502. display: flex;
  503. gap: 32px;
  504. padding: 48px 0;
  505. flex-direction: column;
  506. align-items: center;
  507. color: var(--text-color);
  508. }
  509. @media (max-width: 768px) {
  510. .footer {
  511. gap: 24px;
  512. padding: 32px 0;
  513. }
  514. }
  515. .footer__content-inner {
  516. display: flex;
  517. align-items: flex-start;
  518. gap: 60px;
  519. align-self: stretch;
  520. }
  521. @media (max-width: 768px) {
  522. .footer__content-inner {
  523. gap: 20px;
  524. flex-direction: column;
  525. }
  526. }
  527. .footer__text {
  528. font-size: 14px;
  529. font-style: normal;
  530. font-weight: 400;
  531. line-height: 20px; /* 142.857% */
  532. }
  533. @media (max-width: 768px) {
  534. .footer__text {
  535. font-size: 12px;
  536. line-height: 18px;
  537. }
  538. }
  539. .footer__logo {
  540. width: 210px;
  541. height: 48px;
  542. }
  543. @media (max-width: 768px) {
  544. .footer__logo {
  545. width: 100%;
  546. display: flex;
  547. align-items: center;
  548. justify-content: center;
  549. }
  550. }
  551. .footer__logo img {
  552. width: 190px;
  553. height: 44px;
  554. display: block;
  555. cursor: pointer;
  556. -o-object-fit: contain;
  557. object-fit: contain;
  558. transition: opacity 0.3s ease;
  559. }
  560. .footer__bottom-imgs {
  561. display: flex;
  562. justify-content: center;
  563. align-items: center;
  564. gap: 40px;
  565. align-self: stretch;
  566. list-style: none;
  567. margin: 0;
  568. padding: 0;
  569. }
  570. .footer__bottom-imgs img {
  571. opacity: 0.4;
  572. }
  573. @media (max-width: 768px) {
  574. .footer__bottom-imgs {
  575. gap: 20px;
  576. display: grid;
  577. grid-template-columns: 1fr 1fr;
  578. }
  579. }
  580. .footer__menu-list {
  581. display: flex;
  582. align-items: center;
  583. justify-content: center;
  584. gap: 24px;
  585. }
  586. @media (max-width: 768px) {
  587. .footer__menu-list {
  588. gap: 16px;
  589. }
  590. }
  591. .footer__menu-item {
  592. list-style: none;
  593. }
  594. .footer__menu-link {
  595. color: var(--Main-White, #FFF);
  596. font-size: 16px;
  597. font-style: normal;
  598. font-weight: 700;
  599. line-height: normal;
  600. text-decoration-line: underline;
  601. text-decoration-style: solid;
  602. -webkit-text-decoration-skip-ink: none;
  603. text-decoration-skip-ink: none;
  604. text-decoration-thickness: auto;
  605. text-underline-offset: auto;
  606. text-underline-position: from-font;
  607. }
  608. .footer__menu-link:hover {
  609. color: #fff;
  610. opacity: 0.9;
  611. }
  612. .footer__copyright {
  613. color: var(--Main-White, #FFF);
  614. font-size: 14px;
  615. font-style: normal;
  616. font-weight: 400;
  617. line-height: normal;
  618. }
  619. .btn-wrapper {
  620. display: flex;
  621. justify-content: center;
  622. margin-top: 24px;
  623. }
  624. .btn {
  625. display: inline-flex;
  626. align-items: center;
  627. justify-content: center;
  628. padding: 14px 32px;
  629. border-radius: 8px;
  630. font-size: 16px;
  631. font-weight: 600;
  632. line-height: 1.5;
  633. text-decoration: none;
  634. transition: all 0.3s ease;
  635. cursor: pointer;
  636. border: none;
  637. }
  638. .btn--accent {
  639. background: var(--accent-color);
  640. color: #fff;
  641. }
  642. .btn--accent:hover {
  643. transform: translateY(-1px);
  644. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  645. opacity: 0.9;
  646. }
  647. .btn--accent:active {
  648. transform: translateY(0);
  649. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  650. }
  651. .author {
  652. display: flex;
  653. align-items: center;
  654. gap: 24px;
  655. border-radius: 8px;
  656. }
  657. .author__img {
  658. flex-shrink: 0;
  659. width: 100px;
  660. height: 100px;
  661. border-radius: 50%;
  662. overflow: hidden;
  663. }
  664. .author__img img {
  665. width: 100%;
  666. height: 100%;
  667. -o-object-fit: cover;
  668. object-fit: cover;
  669. }
  670. .author__info {
  671. display: flex;
  672. flex-direction: column;
  673. gap: 16px;
  674. }
  675. .author__name {
  676. font-size: 14px;
  677. font-weight: 600;
  678. }
  679. .author__name-header {
  680. display: flex;
  681. align-items: center;
  682. justify-content: space-between;
  683. }
  684. .author__name-n {
  685. color: var(--text-color);
  686. font-size: 16px;
  687. font-style: normal;
  688. font-weight: 700;
  689. line-height: 18px; /* 112.5% */
  690. }
  691. .author__name-v {
  692. color: var(--accent-color);
  693. font-size: 18px;
  694. font-style: normal;
  695. font-weight: 700;
  696. line-height: 18px; /* 100% */
  697. }
  698. .faq {
  699. display: flex;
  700. flex-direction: column;
  701. gap: 16px;
  702. }
  703. .faq__title {
  704. margin: 0;
  705. margin-bottom: 24px;
  706. font-weight: 600;
  707. color: var(--text-color);
  708. }
  709. .faq__item {
  710. border-radius: 12px;
  711. overflow: hidden;
  712. transition: all 0.3s ease;
  713. border: 1px solid var(--content-border-color);
  714. background: var(--content-bg-color);
  715. }
  716. .faq__item.active .faq__question::after {
  717. transform: rotate(45deg);
  718. }
  719. .faq__item.active .faq__question::before {
  720. transform: rotate(-45deg);
  721. }
  722. .faq__item.active .faq__answer {
  723. opacity: 1;
  724. }
  725. .faq__question {
  726. padding: 20px 56px 20px 24px;
  727. cursor: pointer;
  728. position: relative;
  729. -webkit-user-select: none;
  730. -moz-user-select: none;
  731. user-select: none;
  732. transition: background-color 0.2s ease;
  733. display: flex;
  734. align-items: center;
  735. gap: 16px;
  736. }
  737. .faq__question h3 {
  738. margin: 0;
  739. font-size: 16px;
  740. font-weight: 500;
  741. line-height: 24px;
  742. color: var(--text-color);
  743. }
  744. .faq__question::before, .faq__question::after {
  745. content: "";
  746. position: absolute;
  747. right: 24px;
  748. top: 50%;
  749. width: 16px;
  750. height: 2px;
  751. background-color: var(--text-color);
  752. transition: transform 0.3s ease;
  753. }
  754. .faq__question::before {
  755. transform: translateY(-50%);
  756. }
  757. .faq__question::after {
  758. transform: translateY(-50%) rotate(90deg);
  759. }
  760. .faq__number {
  761. display: flex;
  762. width: 32px;
  763. height: 32px;
  764. flex-direction: column;
  765. justify-content: center;
  766. align-items: center;
  767. gap: 10px;
  768. aspect-ratio: 1/1;
  769. font-weight: 600;
  770. background-color: var(--accent-color);
  771. color: var(--text-color);
  772. min-width: 32px;
  773. flex-shrink: 0;
  774. border-radius: 50%;
  775. }
  776. .faq__question-title {
  777. flex: 1;
  778. font-size: 16px;
  779. font-weight: 500;
  780. line-height: 24px;
  781. color: var(--text-color);
  782. }
  783. .faq__answer {
  784. max-height: 0;
  785. opacity: 0;
  786. overflow: hidden;
  787. transition: all 0.3s ease;
  788. border-top: 1px dashed var(--content-border-color);
  789. }
  790. .faq__answer p {
  791. margin: 0;
  792. font-size: 14px;
  793. line-height: 22px;
  794. color: var(--text-color);
  795. opacity: 0.8;
  796. }
  797. .faq__answer-inner {
  798. padding: 24px;
  799. }
  800. .toc {
  801. border-radius: 12px;
  802. border: 1px solid var(--content-border-color);
  803. background: var(--content-bg-color);
  804. overflow: hidden;
  805. }
  806. .toc__header {
  807. padding: 20px 56px 20px 24px;
  808. cursor: pointer;
  809. position: relative;
  810. -webkit-user-select: none;
  811. -moz-user-select: none;
  812. user-select: none;
  813. transition: background-color 0.2s ease;
  814. }
  815. .toc__header:hover {
  816. background-color: rgba(0, 0, 0, 0.02);
  817. }
  818. .toc__header::before, .toc__header::after {
  819. content: "";
  820. position: absolute;
  821. right: 24px;
  822. top: 50%;
  823. width: 16px;
  824. height: 2px;
  825. background-color: var(--text-color);
  826. transition: transform 0.3s ease;
  827. }
  828. .toc__header::before {
  829. transform: translateY(-50%) rotate(90deg);
  830. }
  831. .toc__header::after {
  832. transform: translateY(-50%);
  833. }
  834. .toc__title {
  835. margin: 0;
  836. color: var(--Main-Back, #000);
  837. font-size: 18px;
  838. font-style: normal;
  839. font-weight: 700;
  840. line-height: normal;
  841. text-transform: uppercase;
  842. color: var(--text-color);
  843. }
  844. @media (max-width: 768px) {
  845. .toc__title {
  846. font-size: 16px;
  847. }
  848. }
  849. .toc__content {
  850. max-height: 0;
  851. overflow: hidden;
  852. transition: max-height 0.3s ease;
  853. }
  854. .toc__list {
  855. list-style: none;
  856. margin: 0;
  857. padding: 0 24px 24px 24px;
  858. counter-reset: toc-counter;
  859. }
  860. @media (max-width: 768px) {
  861. .toc__list {
  862. padding: 0 16px 16px 16px;
  863. }
  864. }
  865. .toc__list--nested {
  866. padding: 8px 0 0 28px;
  867. list-style: disc;
  868. padding-left: 40px;
  869. }
  870. .toc__item {
  871. margin-bottom: 8px;
  872. position: relative;
  873. }
  874. .toc__item:last-child {
  875. margin-bottom: 0;
  876. }
  877. .toc__item > .toc__link::before {
  878. counter-increment: toc-counter;
  879. content: counter(toc-counter) ". ";
  880. font-weight: 600;
  881. margin-right: 4px;
  882. }
  883. .toc__list--nested > .toc__item > .toc__link::before {
  884. content: none;
  885. }
  886. .toc__link {
  887. display: block;
  888. color: var(--text-color);
  889. text-decoration: none;
  890. font-size: 14px;
  891. line-height: 20px;
  892. padding: 6px 12px;
  893. border-radius: 6px;
  894. transition: all 0.2s ease;
  895. }
  896. .toc__link:hover {
  897. background-color: rgba(0, 0, 0, 0.03);
  898. color: var(--link-color);
  899. }
  900. .toc__list--nested > .toc__item > .toc__link {
  901. font-size: 13px;
  902. padding-left: 8px;
  903. }
  904. .toc.active .toc__header::before {
  905. transform: translateY(-50%) rotate(45deg);
  906. }
  907. .toc.active .toc__header::after {
  908. transform: translateY(-50%) rotate(-45deg);
  909. }
  910. .toc.active .toc__content {
  911. max-height: 1000px;
  912. }
  913. .slot-item {
  914. overflow: hidden;
  915. position: relative;
  916. padding-top: 52%;
  917. border-radius: 16px;
  918. background-color: var(--body-bg-color);
  919. border: 1px solid var(--content-border-color);
  920. box-shadow: 0 2px 44px 0 rgba(188, 188, 188, 0.15);
  921. }
  922. .slot-item__inner {
  923. position: absolute;
  924. top: 0;
  925. left: 0;
  926. width: 100%;
  927. overflow: hidden;
  928. height: calc(100% - 45px);
  929. }
  930. .slot-item__thumbnail {
  931. position: absolute;
  932. top: 0;
  933. left: 0;
  934. bottom: 0;
  935. right: 0;
  936. }
  937. .slot-item__thumbnail img {
  938. display: block;
  939. width: 100%;
  940. height: 100%;
  941. -o-object-fit: cover;
  942. object-fit: cover;
  943. }
  944. .slot-item__title {
  945. height: 45px;
  946. display: flex;
  947. align-items: center;
  948. justify-content: center;
  949. padding: 12px;
  950. gap: 8px;
  951. }
  952. .slot-item__title-txt {
  953. color: var(--text-color);
  954. text-align: center;
  955. font-size: 16px;
  956. font-style: normal;
  957. font-weight: 400;
  958. line-height: 26px; /* 162.5% */
  959. }
  960. .slot-item__provider {
  961. border-radius: 8px;
  962. background-color: var(--body-bg-color);
  963. backdrop-filter: blur(17px);
  964. position: absolute;
  965. top: 12px;
  966. right: 12px;
  967. padding: 8px;
  968. }
  969. .slot-item__rtp {
  970. background-color: var(--accent-color);
  971. display: flex;
  972. height: 24px;
  973. padding: 4px 8px;
  974. justify-content: center;
  975. align-items: center;
  976. gap: 4px;
  977. position: absolute;
  978. bottom: 12px;
  979. right: 12px;
  980. color: var(--text-color);
  981. font-size: 12px;
  982. font-style: normal;
  983. font-weight: 700;
  984. line-height: 14px; /* 116.667% */
  985. border-radius: 5px;
  986. }
  987. .slot-item__icon {
  988. width: 18px;
  989. height: 18px;
  990. display: flex;
  991. align-items: center;
  992. justify-content: center;
  993. }
  994. .slot-item__icon svg {
  995. fill: var(--link-color);
  996. }
  997. body {
  998. padding-top: 70px;
  999. background-color: var(--body-bg-color);
  1000. color: var(--text-color);
  1001. font-style: normal;
  1002. font-weight: 400;
  1003. line-height: 24px; /* 150% */
  1004. }
  1005. body.menu-open {
  1006. overflow: hidden;
  1007. }
  1008. .container {
  1009. max-width: var(--container-width);
  1010. width: 100%;
  1011. height: 100%;
  1012. margin: 0 auto;
  1013. padding-left: 16px !important;
  1014. padding-right: 16px !important;
  1015. }
  1016. .banner {
  1017. background: #000;
  1018. display: flex;
  1019. align-items: center;
  1020. justify-content: center;
  1021. }
  1022. .banner__img-wrp {
  1023. max-width: 1920px;
  1024. max-height: 540px;
  1025. overflow: hidden;
  1026. margin: 0 auto;
  1027. }
  1028. .banner__img {
  1029. display: block;
  1030. width: 100%;
  1031. height: 100%;
  1032. -o-object-fit: cover;
  1033. object-fit: cover;
  1034. }
  1035. .section-wrapper {
  1036. padding: 32px 0;
  1037. display: flex;
  1038. flex-direction: column;
  1039. gap: 32px;
  1040. width: 100%;
  1041. }
  1042. @media (max-width: 1199px) {
  1043. .section-wrapper {
  1044. gap: 24px;
  1045. padding: 24px 0;
  1046. }
  1047. }
  1048. @media (max-width: 768px) {
  1049. .section-wrapper {
  1050. gap: 16px;
  1051. padding: 16px 0;
  1052. }
  1053. }
  1054. .section {
  1055. padding: 32px;
  1056. border-radius: 16px;
  1057. border: 1px solid var(--content-border-color);
  1058. background: var(--content-bg-color);
  1059. }
  1060. @media (max-width: 1199px) {
  1061. .section {
  1062. padding: 24px;
  1063. }
  1064. }
  1065. @media (max-width: 768px) {
  1066. .section {
  1067. padding: 16px;
  1068. }
  1069. }
  1070. .section__title {
  1071. margin-top: 0;
  1072. }
  1073. a {
  1074. color: var(--link-color);
  1075. text-decoration: none;
  1076. transition: color 0.3s ease;
  1077. }
  1078. a:hover {
  1079. opacity: 0.8;
  1080. }
  1081. table {
  1082. background: var(--table-bg-color);
  1083. color: var(--text-color);
  1084. }
  1085. th,
  1086. thead,
  1087. table thead tr {
  1088. background-color: var(--table-header-color);
  1089. color: var(--text-color);
  1090. }
  1091. caption {
  1092. background: var(--table-header-color);
  1093. color: var(--text-color);
  1094. }
  1095. .game-item {
  1096. border-radius: var(--border-radius-main);
  1097. overflow: hidden;
  1098. position: relative;
  1099. padding-top: 52%;
  1100. box-shadow: 0px 2px 44px 0px rgba(188, 188, 188, 0.15);
  1101. background: #fff;
  1102. }
  1103. @media (max-width: 768px) {
  1104. .game-item {
  1105. padding-top: 60%;
  1106. border-radius: 12px;
  1107. box-shadow: 0px 1.4px 30.803px 0px rgba(188, 188, 188, 0.15);
  1108. }
  1109. }
  1110. .game-item__inner {
  1111. position: absolute;
  1112. top: 0;
  1113. left: 0;
  1114. width: 100%;
  1115. overflow: hidden;
  1116. height: calc(100% - 45px);
  1117. }
  1118. @media (max-width: 768px) {
  1119. .game-item__inner {
  1120. height: calc(100% - 40px);
  1121. }
  1122. }
  1123. .game-item__inner:hover .game-item__hover {
  1124. opacity: 1;
  1125. visibility: visible;
  1126. }
  1127. .game-item__title {
  1128. color: rgba(2, 0, 5, 0.8);
  1129. text-align: center;
  1130. font-size: 16px;
  1131. font-style: normal;
  1132. font-weight: 400;
  1133. line-height: 1.1em;
  1134. width: 100%;
  1135. height: 45px;
  1136. display: flex;
  1137. align-items: center;
  1138. justify-content: center;
  1139. background: #fff;
  1140. position: relative;
  1141. padding: 0 12px;
  1142. }
  1143. @media (max-width: 1199px) {
  1144. .game-item__title {
  1145. font-size: 14px;
  1146. }
  1147. }
  1148. @media (max-width: 768px) {
  1149. .game-item__title {
  1150. font-size: 12px;
  1151. height: 40px;
  1152. }
  1153. }
  1154. .game-item__link {
  1155. display: inline-flex;
  1156. align-items: center;
  1157. gap: 8px;
  1158. text-decoration: none !important;
  1159. color: rgba(2, 0, 5, 0.8) !important;
  1160. }
  1161. @media (max-width: 768px) {
  1162. .game-item__link {
  1163. gap: 4px;
  1164. }
  1165. }
  1166. .game-item__link:before {
  1167. content: "";
  1168. display: block;
  1169. width: 100%;
  1170. height: 100%;
  1171. position: absolute;
  1172. top: 0;
  1173. left: 0;
  1174. }
  1175. .game-item__link:hover {
  1176. color: var(--color-theme-red) !important;
  1177. }
  1178. .game-item__link:hover .icon {
  1179. fill: url("#icon-gradient-red");
  1180. }
  1181. .game-item__link .icon {
  1182. width: 20px;
  1183. height: 20px;
  1184. flex-shrink: 0;
  1185. fill: #0076CC;
  1186. }
  1187. @media (max-width: 768px) {
  1188. .game-item__link .icon {
  1189. width: 12px;
  1190. height: 12px;
  1191. }
  1192. }
  1193. .game-item__link-text {
  1194. display: inline-flex;
  1195. align-items: center;
  1196. }
  1197. .game-item__link-icon {
  1198. width: 20px;
  1199. height: 20px;
  1200. display: flex;
  1201. align-items: center;
  1202. justify-content: center;
  1203. fill: #0076CC;
  1204. }
  1205. .game-item__picture {
  1206. position: absolute;
  1207. top: 0;
  1208. left: 0;
  1209. bottom: 0;
  1210. right: 0;
  1211. }
  1212. .game-item__image {
  1213. display: block;
  1214. width: 100%;
  1215. height: 100%;
  1216. -o-object-fit: cover;
  1217. object-fit: cover;
  1218. transition: 0.3s ease-out;
  1219. }
  1220. .game-item__tags {
  1221. position: absolute;
  1222. top: 0;
  1223. left: 12px;
  1224. display: flex;
  1225. }
  1226. .game-item__tagsItm {
  1227. margin-right: 8px;
  1228. border-radius: 0px 0px 8px 8px;
  1229. background: linear-gradient(90deg, #2D2BA7 0%, #BA73D1 100%);
  1230. text-transform: uppercase;
  1231. overflow: hidden;
  1232. }
  1233. @media (max-width: 768px) {
  1234. .game-item__tagsItm {
  1235. border-radius: 0px 0px 5px 5px;
  1236. }
  1237. }
  1238. .game-item__tagsItm--hot {
  1239. background: #F5294D;
  1240. }
  1241. .game-item__tagsLink {
  1242. display: block;
  1243. color: #fff;
  1244. padding: 8px 16px;
  1245. color: #fff;
  1246. font-size: 12px;
  1247. font-weight: 900;
  1248. line-height: 1em;
  1249. }
  1250. @media (max-width: 768px) {
  1251. .game-item__tagsLink {
  1252. padding: 3px 11px;
  1253. font-size: 9px;
  1254. }
  1255. }
  1256. .game-item__info {
  1257. position: absolute;
  1258. top: 8px;
  1259. right: 8px;
  1260. display: flex;
  1261. align-items: center;
  1262. justify-content: end;
  1263. }
  1264. .game-item__provide {
  1265. width: 32px;
  1266. height: 32px;
  1267. border-radius: 50%;
  1268. background: #000;
  1269. display: flex;
  1270. justify-content: center;
  1271. align-items: center;
  1272. padding: 2px;
  1273. margin-right: 8px;
  1274. }
  1275. @media (max-width: 768px) {
  1276. .game-item__provide {
  1277. width: 24px;
  1278. height: 24px;
  1279. margin-right: 5px;
  1280. }
  1281. }
  1282. .game-item__provide .icon {
  1283. fill: #fff;
  1284. }
  1285. .game-item__rating {
  1286. width: 36px;
  1287. height: 36px;
  1288. position: relative;
  1289. }
  1290. @media (max-width: 768px) {
  1291. .game-item__rating {
  1292. width: 28px;
  1293. height: 28px;
  1294. }
  1295. }
  1296. .game-item__ratingVal {
  1297. font-size: 12px;
  1298. }
  1299. @media (max-width: 768px) {
  1300. .game-item__ratingVal {
  1301. font-size: 10px;
  1302. }
  1303. }
  1304. .game-item__rtp {
  1305. padding: 4px 8px;
  1306. background: linear-gradient(var(--gradient-theme-red));
  1307. border-radius: 8px;
  1308. font-size: 12px;
  1309. font-style: normal;
  1310. font-weight: 600;
  1311. color: #fff;
  1312. line-height: 1em;
  1313. height: 24px;
  1314. display: flex;
  1315. align-items: center;
  1316. position: absolute;
  1317. bottom: 8px;
  1318. right: 8px;
  1319. }
  1320. .game-item__countPlay {
  1321. color: #fff;
  1322. font-size: 12px;
  1323. padding: 4px 8px;
  1324. font-size: 12px;
  1325. line-height: 1em;
  1326. font-weight: 600;
  1327. border-radius: 8px;
  1328. background: rgba(2, 0, 5, 0.8);
  1329. position: relative;
  1330. display: flex;
  1331. height: 24px;
  1332. align-items: center;
  1333. justify-content: space-between;
  1334. position: absolute;
  1335. bottom: 8px;
  1336. left: 8px;
  1337. }
  1338. .game-item__countPlay .icon {
  1339. fill: #fff;
  1340. }
  1341. .game-item__countTxt {
  1342. padding-left: 5px;
  1343. }
  1344. .game-item__btn {
  1345. margin-top: 16px;
  1346. width: 100%;
  1347. max-width: 120px;
  1348. }
  1349. @media (max-width: 768px) {
  1350. .game-item__btn {
  1351. margin-top: 8px;
  1352. font-size: 12px;
  1353. padding: 8px 20px;
  1354. max-width: 100px;
  1355. }
  1356. }
  1357. .game-item__hover {
  1358. position: absolute;
  1359. top: 0;
  1360. left: 0;
  1361. bottom: 0;
  1362. right: 0;
  1363. background: rgba(2, 0, 5, 0.8);
  1364. display: flex;
  1365. align-items: center;
  1366. justify-content: center;
  1367. flex-direction: column;
  1368. padding: 20px;
  1369. opacity: 0;
  1370. z-index: 1;
  1371. transition: 0.5s ease-out;
  1372. visibility: hidden;
  1373. cursor: pointer;
  1374. }
  1375. .slots-grid {
  1376. display: grid;
  1377. grid-template-columns: repeat(5, 1fr);
  1378. gap: 8px;
  1379. }
  1380. @media (max-width: 1199px) {
  1381. .slots-grid {
  1382. grid-template-columns: repeat(3, 1fr);
  1383. }
  1384. }
  1385. @media (max-width: 768px) {
  1386. .slots-grid {
  1387. grid-template-columns: repeat(2, 1fr);
  1388. }
  1389. }
  1390. /*# sourceMappingURL=styles.css.map */