styles.css 23 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249
  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. }
  189. @media (max-width: 575px) {
  190. .text .table-wrapper-scroll {
  191. background: none;
  192. border-radius: 0;
  193. padding-bottom: 8px;
  194. overflow-x: auto;
  195. margin: 20px 0;
  196. }
  197. .text .table-wrapper-scroll::-webkit-scrollbar {
  198. height: 4px;
  199. }
  200. .text .table-wrapper-scroll::-webkit-scrollbar-track {
  201. background: transparent;
  202. }
  203. .text .table-wrapper-scroll::-webkit-scrollbar-thumb {
  204. background: var(--scrollbar-color);
  205. }
  206. }
  207. .text .table-wrapper {
  208. background: #E0E5EF;
  209. border-radius: 9px;
  210. }
  211. @media (max-width: 575px) {
  212. .text .table-wrapper.large-table {
  213. width: 640px;
  214. }
  215. }
  216. .text .table-wrapper table {
  217. margin: 0;
  218. padding: 0;
  219. }
  220. .text table {
  221. margin: 0;
  222. position: relative;
  223. width: 100%;
  224. table-layout: auto;
  225. border-collapse: collapse;
  226. border-radius: 9px;
  227. overflow: hidden;
  228. border: 1px solid var(--Solid-Black-10, rgba(2, 0, 5, 0.1));
  229. }
  230. .text table thead th, .text table thead td {
  231. padding: 12px;
  232. text-align: center;
  233. font-size: 16px;
  234. font-style: normal;
  235. font-weight: 600;
  236. line-height: 1.2em;
  237. vertical-align: middle;
  238. background: transparent;
  239. }
  240. @media (max-width: 575px) {
  241. .text table thead th, .text table thead td {
  242. vertical-align: middle;
  243. font-size: 13px;
  244. padding: 8px;
  245. }
  246. }
  247. .text table tr:first-child th {
  248. padding: 12px;
  249. text-align: center;
  250. font-size: 16px;
  251. font-style: normal;
  252. font-weight: 600;
  253. line-height: 1.2em;
  254. vertical-align: middle;
  255. }
  256. @media (max-width: 575px) {
  257. .text table tr:first-child th {
  258. vertical-align: middle;
  259. font-size: 13px;
  260. padding: 8px;
  261. }
  262. }
  263. .text table tr:first-child:has(th) {
  264. overflow: hidden;
  265. height: auto !important;
  266. background: #E0E5EF;
  267. }
  268. .text table tbody td {
  269. padding: 12px;
  270. vertical-align: middle;
  271. word-wrap: break-word;
  272. }
  273. @media (max-width: 1199px) {
  274. .text table tbody td {
  275. font-size: 14px;
  276. font-style: normal;
  277. font-weight: 400;
  278. line-height: 16px;
  279. }
  280. }
  281. @media (max-width: 575px) {
  282. .text table tbody td {
  283. font-size: 13px;
  284. padding: 8px;
  285. }
  286. }
  287. .header {
  288. position: fixed;
  289. width: 100%;
  290. top: 0;
  291. left: 0;
  292. height: 70px;
  293. z-index: 1000;
  294. background: var(--header-color);
  295. }
  296. .header .container {
  297. display: flex;
  298. justify-content: space-between;
  299. align-items: center;
  300. height: 100%;
  301. gap: 20px;
  302. }
  303. .header__logo {
  304. width: 190px;
  305. height: 44px;
  306. flex-shrink: 0;
  307. display: flex;
  308. justify-content: center;
  309. align-items: center;
  310. z-index: 1001;
  311. }
  312. .header__logo-link {
  313. display: inline-block;
  314. line-height: 0;
  315. }
  316. .header__logo img {
  317. width: 190px;
  318. height: 44px;
  319. display: block;
  320. cursor: pointer;
  321. -o-object-fit: contain;
  322. object-fit: contain;
  323. transition: opacity 0.3s ease;
  324. }
  325. .header__nav {
  326. flex: 1;
  327. display: flex;
  328. justify-content: center;
  329. }
  330. .header__menu {
  331. list-style: none;
  332. margin: 0;
  333. padding: 0;
  334. display: flex;
  335. align-items: center;
  336. gap: 40px;
  337. }
  338. .header__menu-link {
  339. text-decoration: none;
  340. font-size: 16px;
  341. font-weight: 500;
  342. transition: opacity 0.3s ease;
  343. color: #fff;
  344. white-space: nowrap;
  345. opacity: 0.9;
  346. }
  347. .header__menu-link:hover {
  348. opacity: 1;
  349. color: #fff;
  350. }
  351. .header__actions {
  352. display: flex;
  353. align-items: center;
  354. gap: 12px;
  355. flex-shrink: 0;
  356. }
  357. .header__btn {
  358. border-radius: 6px;
  359. border: 1px solid #FFF;
  360. display: flex;
  361. height: 42px;
  362. padding: 8px 32px;
  363. justify-content: center;
  364. align-items: center;
  365. gap: 8px;
  366. color: #FFF;
  367. font-size: 14px;
  368. font-style: normal;
  369. font-weight: 600;
  370. line-height: normal;
  371. text-transform: uppercase;
  372. background: none;
  373. cursor: pointer;
  374. }
  375. .header__btn--primary:hover {
  376. transform: translateY(-1px);
  377. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  378. }
  379. .header__btn--secondary:hover {
  380. transform: translateY(-1px);
  381. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  382. }
  383. .header__burger {
  384. display: none;
  385. flex-direction: column;
  386. justify-content: space-between;
  387. width: 30px;
  388. height: 24px;
  389. background: transparent;
  390. border: none;
  391. cursor: pointer;
  392. padding: 0;
  393. z-index: 1001;
  394. transition: transform 0.3s ease;
  395. }
  396. .header__burger:hover {
  397. transform: scale(1.1);
  398. }
  399. .header__burger-line {
  400. width: 100%;
  401. height: 3px;
  402. background: #fff;
  403. border-radius: 2px;
  404. transition: all 0.3s ease;
  405. }
  406. .header__burger.active .header__burger-line:nth-child(1) {
  407. transform: translateY(10.5px) rotate(45deg);
  408. }
  409. .header__burger.active .header__burger-line:nth-child(2) {
  410. opacity: 0;
  411. }
  412. .header__burger.active .header__burger-line:nth-child(3) {
  413. transform: translateY(-10.5px) rotate(-45deg);
  414. }
  415. @media (max-width: 1199px) {
  416. .header__menu {
  417. gap: 24px;
  418. }
  419. .header__btn {
  420. padding: 8px 16px;
  421. font-size: 13px;
  422. }
  423. }
  424. @media (max-width: 768px) {
  425. .header {
  426. height: 60px;
  427. }
  428. .header__logo {
  429. width: 150px;
  430. height: 35px;
  431. }
  432. .header__logo img {
  433. width: 150px;
  434. height: 35px;
  435. }
  436. .header__burger {
  437. display: flex;
  438. }
  439. .header__nav {
  440. position: fixed;
  441. top: 60px;
  442. left: 0;
  443. width: 100%;
  444. height: calc(100vh - 60px);
  445. transform: translateX(-100%);
  446. transition: transform 0.3s ease;
  447. padding: 40px 20px;
  448. overflow-y: auto;
  449. }
  450. }
  451. @media (max-width: 768px) and (max-width: 768px) {
  452. .header__nav {
  453. background: var(--body-bg-color);
  454. }
  455. }
  456. @media (max-width: 768px) {
  457. .header__nav.active {
  458. transform: translateX(0);
  459. }
  460. .header__menu {
  461. flex-direction: column;
  462. align-items: center;
  463. width: 100%;
  464. gap: 24px;
  465. }
  466. .header__menu-link {
  467. font-size: 18px;
  468. }
  469. }
  470. @media (max-width: 768px) and (max-width: 768px) {
  471. .header__menu-link {
  472. font-size: 16px;
  473. background: var(--body-bg-color);
  474. color: var(--text-color);
  475. }
  476. }
  477. @media (max-width: 768px) {
  478. .header__actions {
  479. gap: 8px;
  480. }
  481. .header__btn {
  482. display: none;
  483. }
  484. .header__nav.active .header__btn {
  485. display: block;
  486. width: calc(100% - 40px);
  487. margin: 0 20px 16px;
  488. }
  489. }
  490. .footer {
  491. background: var(--footer-bg-color);
  492. display: flex;
  493. gap: 32px;
  494. padding: 48px 0;
  495. flex-direction: column;
  496. align-items: center;
  497. color: var(--text-color);
  498. }
  499. @media (max-width: 768px) {
  500. .footer {
  501. gap: 24px;
  502. padding: 32px 0;
  503. }
  504. }
  505. .footer__content-inner {
  506. display: flex;
  507. align-items: flex-start;
  508. gap: 60px;
  509. align-self: stretch;
  510. }
  511. @media (max-width: 768px) {
  512. .footer__content-inner {
  513. gap: 20px;
  514. flex-direction: column;
  515. }
  516. }
  517. .footer__text {
  518. font-size: 14px;
  519. font-style: normal;
  520. font-weight: 400;
  521. line-height: 20px; /* 142.857% */
  522. }
  523. @media (max-width: 768px) {
  524. .footer__text {
  525. font-size: 12px;
  526. line-height: 18px;
  527. }
  528. }
  529. .footer__logo {
  530. width: 210px;
  531. height: 48px;
  532. }
  533. @media (max-width: 768px) {
  534. .footer__logo {
  535. width: 100%;
  536. display: flex;
  537. align-items: center;
  538. justify-content: center;
  539. }
  540. }
  541. .footer__logo img {
  542. width: 190px;
  543. height: 44px;
  544. display: block;
  545. cursor: pointer;
  546. -o-object-fit: contain;
  547. object-fit: contain;
  548. transition: opacity 0.3s ease;
  549. }
  550. .footer__bottom-imgs {
  551. display: flex;
  552. justify-content: center;
  553. align-items: center;
  554. gap: 40px;
  555. align-self: stretch;
  556. list-style: none;
  557. margin: 0;
  558. padding: 0;
  559. }
  560. .footer__bottom-imgs img {
  561. opacity: 0.4;
  562. }
  563. @media (max-width: 768px) {
  564. .footer__bottom-imgs {
  565. gap: 20px;
  566. display: grid;
  567. grid-template-columns: 1fr 1fr;
  568. }
  569. }
  570. .footer__menu-list {
  571. display: flex;
  572. align-items: center;
  573. justify-content: center;
  574. gap: 24px;
  575. }
  576. @media (max-width: 768px) {
  577. .footer__menu-list {
  578. gap: 16px;
  579. }
  580. }
  581. .footer__menu-item {
  582. list-style: none;
  583. }
  584. .footer__menu-link {
  585. color: var(--Main-White, #FFF);
  586. font-size: 16px;
  587. font-style: normal;
  588. font-weight: 700;
  589. line-height: normal;
  590. text-decoration-line: underline;
  591. text-decoration-style: solid;
  592. -webkit-text-decoration-skip-ink: none;
  593. text-decoration-skip-ink: none;
  594. text-decoration-thickness: auto;
  595. text-underline-offset: auto;
  596. text-underline-position: from-font;
  597. }
  598. .footer__menu-link:hover {
  599. color: #fff;
  600. opacity: 0.9;
  601. }
  602. .footer__copyright {
  603. color: var(--Main-White, #FFF);
  604. font-size: 14px;
  605. font-style: normal;
  606. font-weight: 400;
  607. line-height: normal;
  608. }
  609. .btn-wrapper {
  610. display: flex;
  611. justify-content: center;
  612. margin-top: 24px;
  613. }
  614. .btn {
  615. display: inline-flex;
  616. align-items: center;
  617. justify-content: center;
  618. padding: 14px 32px;
  619. border-radius: 8px;
  620. font-size: 16px;
  621. font-weight: 600;
  622. line-height: 1.5;
  623. text-decoration: none;
  624. transition: all 0.3s ease;
  625. cursor: pointer;
  626. border: none;
  627. }
  628. .btn--accent {
  629. background: var(--accent-color);
  630. color: #fff;
  631. }
  632. .btn--accent:hover {
  633. transform: translateY(-1px);
  634. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  635. opacity: 0.9;
  636. }
  637. .btn--accent:active {
  638. transform: translateY(0);
  639. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  640. }
  641. .author {
  642. display: flex;
  643. align-items: center;
  644. gap: 12px;
  645. border-radius: 8px;
  646. }
  647. .author__img {
  648. flex-shrink: 0;
  649. width: 40px;
  650. height: 40px;
  651. border-radius: 50%;
  652. overflow: hidden;
  653. }
  654. .author__img img {
  655. width: 100%;
  656. height: 100%;
  657. -o-object-fit: cover;
  658. object-fit: cover;
  659. }
  660. .author__info {
  661. display: flex;
  662. flex-direction: column;
  663. gap: 2px;
  664. }
  665. .author__name {
  666. font-size: 14px;
  667. font-weight: 600;
  668. }
  669. .author__date {
  670. font-size: 12px;
  671. }
  672. .faq {
  673. display: flex;
  674. flex-direction: column;
  675. gap: 16px;
  676. }
  677. .faq__title {
  678. margin: 0;
  679. margin-bottom: 24px;
  680. font-weight: 600;
  681. color: var(--text-color);
  682. }
  683. .faq__item {
  684. border-radius: 12px;
  685. overflow: hidden;
  686. transition: all 0.3s ease;
  687. border: 1px solid var(--content-border-color);
  688. background: var(--content-bg-color);
  689. }
  690. .faq__item.active .faq__question::after {
  691. transform: rotate(45deg);
  692. }
  693. .faq__item.active .faq__question::before {
  694. transform: rotate(-45deg);
  695. }
  696. .faq__item.active .faq__answer {
  697. max-height: 500px;
  698. opacity: 1;
  699. }
  700. .faq__question {
  701. padding: 20px 56px 20px 24px;
  702. cursor: pointer;
  703. position: relative;
  704. -webkit-user-select: none;
  705. -moz-user-select: none;
  706. user-select: none;
  707. transition: background-color 0.2s ease;
  708. }
  709. .faq__question h3 {
  710. margin: 0;
  711. font-size: 16px;
  712. font-weight: 500;
  713. line-height: 24px;
  714. color: var(--text-color);
  715. }
  716. .faq__question::before, .faq__question::after {
  717. content: "";
  718. position: absolute;
  719. right: 24px;
  720. top: 50%;
  721. width: 16px;
  722. height: 2px;
  723. background-color: var(--text-color);
  724. transition: transform 0.3s ease;
  725. }
  726. .faq__question::before {
  727. transform: translateY(-50%);
  728. }
  729. .faq__question::after {
  730. transform: translateY(-50%) rotate(90deg);
  731. }
  732. .faq__answer {
  733. max-height: 0;
  734. opacity: 0;
  735. overflow: hidden;
  736. transition: all 0.3s ease;
  737. border-top: 1px dashed var(--content-border-color);
  738. }
  739. .faq__answer p {
  740. margin: 0;
  741. font-size: 14px;
  742. line-height: 22px;
  743. color: var(--text-color);
  744. opacity: 0.8;
  745. }
  746. .faq__answer-inner {
  747. padding: 24px;
  748. }
  749. .toc {
  750. border-radius: 12px;
  751. border: 1px solid var(--content-border-color);
  752. background: var(--content-bg-color);
  753. overflow: hidden;
  754. }
  755. .toc__header {
  756. padding: 20px 56px 20px 24px;
  757. cursor: pointer;
  758. position: relative;
  759. -webkit-user-select: none;
  760. -moz-user-select: none;
  761. user-select: none;
  762. transition: background-color 0.2s ease;
  763. }
  764. .toc__header:hover {
  765. background-color: rgba(0, 0, 0, 0.02);
  766. }
  767. .toc__header::before, .toc__header::after {
  768. content: "";
  769. position: absolute;
  770. right: 24px;
  771. top: 50%;
  772. width: 16px;
  773. height: 2px;
  774. background-color: var(--text-color);
  775. transition: transform 0.3s ease;
  776. }
  777. .toc__header::before {
  778. transform: translateY(-50%) rotate(90deg);
  779. }
  780. .toc__header::after {
  781. transform: translateY(-50%);
  782. }
  783. .toc__title {
  784. margin: 0;
  785. color: var(--Main-Back, #000);
  786. font-size: 18px;
  787. font-style: normal;
  788. font-weight: 700;
  789. line-height: normal;
  790. text-transform: uppercase;
  791. color: var(--text-color);
  792. }
  793. @media (max-width: 768px) {
  794. .toc__title {
  795. font-size: 16px;
  796. }
  797. }
  798. .toc__content {
  799. max-height: 0;
  800. overflow: hidden;
  801. transition: max-height 0.3s ease;
  802. }
  803. .toc__list {
  804. list-style: none;
  805. margin: 0;
  806. padding: 0 24px 24px 24px;
  807. counter-reset: toc-counter;
  808. }
  809. .toc__list--nested {
  810. padding: 8px 0 0 28px;
  811. list-style: disc;
  812. padding-left: 40px;
  813. }
  814. .toc__item {
  815. margin-bottom: 8px;
  816. position: relative;
  817. }
  818. .toc__item:last-child {
  819. margin-bottom: 0;
  820. }
  821. .toc__item > .toc__link::before {
  822. counter-increment: toc-counter;
  823. content: counter(toc-counter) ". ";
  824. font-weight: 600;
  825. margin-right: 4px;
  826. }
  827. .toc__list--nested > .toc__item > .toc__link::before {
  828. content: none;
  829. }
  830. .toc__link {
  831. display: block;
  832. color: var(--text-color);
  833. text-decoration: none;
  834. font-size: 14px;
  835. line-height: 20px;
  836. padding: 6px 12px;
  837. border-radius: 6px;
  838. transition: all 0.2s ease;
  839. }
  840. .toc__link:hover {
  841. background-color: rgba(0, 0, 0, 0.03);
  842. color: var(--link-color);
  843. }
  844. .toc__list--nested > .toc__item > .toc__link {
  845. font-size: 13px;
  846. padding-left: 8px;
  847. }
  848. .toc.active .toc__header::before {
  849. transform: translateY(-50%) rotate(45deg);
  850. }
  851. .toc.active .toc__header::after {
  852. transform: translateY(-50%) rotate(-45deg);
  853. }
  854. .toc.active .toc__content {
  855. max-height: 1000px;
  856. }
  857. body {
  858. padding-top: 70px;
  859. background-color: var(--body-bg-color);
  860. color: var(--text-color);
  861. font-style: normal;
  862. font-weight: 400;
  863. line-height: 24px; /* 150% */
  864. }
  865. body.menu-open {
  866. overflow: hidden;
  867. }
  868. .container {
  869. max-width: var(--container-width);
  870. width: 100%;
  871. height: 100%;
  872. margin: 0 auto;
  873. padding-left: 16px !important;
  874. padding-right: 16px !important;
  875. }
  876. .banner {
  877. background: #000;
  878. display: flex;
  879. align-items: center;
  880. justify-content: center;
  881. }
  882. .banner__img-wrp {
  883. max-width: 1920px;
  884. max-height: 540px;
  885. overflow: hidden;
  886. margin: 0 auto;
  887. }
  888. .banner__img {
  889. display: block;
  890. width: 100%;
  891. height: 100%;
  892. -o-object-fit: cover;
  893. object-fit: cover;
  894. }
  895. .section-wrapper {
  896. padding: 32px 0;
  897. display: flex;
  898. flex-direction: column;
  899. gap: 32px;
  900. width: 100%;
  901. }
  902. @media (max-width: 768px) {
  903. .section-wrapper {
  904. gap: 24px;
  905. padding: 24px 0;
  906. }
  907. }
  908. .section {
  909. padding: 32px;
  910. border-radius: 16px;
  911. border: 1px solid var(--content-border-color);
  912. background: var(--content-bg-color);
  913. }
  914. @media (max-width: 768px) {
  915. .section {
  916. padding: 24px;
  917. }
  918. }
  919. a {
  920. color: var(--link-color);
  921. text-decoration: none;
  922. transition: color 0.3s ease;
  923. }
  924. a:hover {
  925. opacity: 0.8;
  926. }
  927. table {
  928. background: var(--table-bg-color);
  929. color: var(--text-color);
  930. }
  931. th,
  932. thead,
  933. table thead tr {
  934. background-color: var(--table-header-color);
  935. color: var(--text-color);
  936. }
  937. caption {
  938. background: var(--table-header-color);
  939. color: var(--text-color);
  940. }
  941. .game-item {
  942. border-radius: var(--border-radius-main);
  943. overflow: hidden;
  944. position: relative;
  945. padding-top: 52%;
  946. box-shadow: 0px 2px 44px 0px rgba(188, 188, 188, 0.15);
  947. background: #fff;
  948. }
  949. @media (max-width: 768px) {
  950. .game-item {
  951. padding-top: 60%;
  952. border-radius: 12px;
  953. box-shadow: 0px 1.4px 30.803px 0px rgba(188, 188, 188, 0.15);
  954. }
  955. }
  956. .game-item__inner {
  957. position: absolute;
  958. top: 0;
  959. left: 0;
  960. width: 100%;
  961. overflow: hidden;
  962. height: calc(100% - 45px);
  963. }
  964. @media (max-width: 768px) {
  965. .game-item__inner {
  966. height: calc(100% - 40px);
  967. }
  968. }
  969. .game-item__inner:hover .game-item__hover {
  970. opacity: 1;
  971. visibility: visible;
  972. }
  973. .game-item__title {
  974. color: rgba(2, 0, 5, 0.8);
  975. text-align: center;
  976. font-size: 16px;
  977. font-style: normal;
  978. font-weight: 400;
  979. line-height: 1.1em;
  980. width: 100%;
  981. height: 45px;
  982. display: flex;
  983. align-items: center;
  984. justify-content: center;
  985. background: #fff;
  986. position: relative;
  987. padding: 0 12px;
  988. }
  989. @media (max-width: 1199px) {
  990. .game-item__title {
  991. font-size: 14px;
  992. }
  993. }
  994. @media (max-width: 768px) {
  995. .game-item__title {
  996. font-size: 12px;
  997. height: 40px;
  998. }
  999. }
  1000. .game-item__link {
  1001. display: inline-flex;
  1002. align-items: center;
  1003. gap: 8px;
  1004. text-decoration: none !important;
  1005. color: rgba(2, 0, 5, 0.8) !important;
  1006. }
  1007. @media (max-width: 768px) {
  1008. .game-item__link {
  1009. gap: 4px;
  1010. }
  1011. }
  1012. .game-item__link:before {
  1013. content: "";
  1014. display: block;
  1015. width: 100%;
  1016. height: 100%;
  1017. position: absolute;
  1018. top: 0;
  1019. left: 0;
  1020. }
  1021. .game-item__link:hover {
  1022. color: var(--color-theme-red) !important;
  1023. }
  1024. .game-item__link:hover .icon {
  1025. fill: url("#icon-gradient-red");
  1026. }
  1027. .game-item__link .icon {
  1028. width: 20px;
  1029. height: 20px;
  1030. flex-shrink: 0;
  1031. fill: #0076CC;
  1032. }
  1033. @media (max-width: 768px) {
  1034. .game-item__link .icon {
  1035. width: 12px;
  1036. height: 12px;
  1037. }
  1038. }
  1039. .game-item__link-text {
  1040. display: inline-flex;
  1041. align-items: center;
  1042. }
  1043. .game-item__link-icon {
  1044. width: 20px;
  1045. height: 20px;
  1046. display: flex;
  1047. align-items: center;
  1048. justify-content: center;
  1049. fill: #0076CC;
  1050. }
  1051. .game-item__picture {
  1052. position: absolute;
  1053. top: 0;
  1054. left: 0;
  1055. bottom: 0;
  1056. right: 0;
  1057. }
  1058. .game-item__image {
  1059. display: block;
  1060. width: 100%;
  1061. height: 100%;
  1062. -o-object-fit: cover;
  1063. object-fit: cover;
  1064. transition: 0.3s ease-out;
  1065. }
  1066. .game-item__tags {
  1067. position: absolute;
  1068. top: 0;
  1069. left: 12px;
  1070. display: flex;
  1071. }
  1072. .game-item__tagsItm {
  1073. margin-right: 8px;
  1074. border-radius: 0px 0px 8px 8px;
  1075. background: linear-gradient(90deg, #2D2BA7 0%, #BA73D1 100%);
  1076. text-transform: uppercase;
  1077. overflow: hidden;
  1078. }
  1079. @media (max-width: 768px) {
  1080. .game-item__tagsItm {
  1081. border-radius: 0px 0px 5px 5px;
  1082. }
  1083. }
  1084. .game-item__tagsItm--hot {
  1085. background: #F5294D;
  1086. }
  1087. .game-item__tagsLink {
  1088. display: block;
  1089. color: #fff;
  1090. padding: 8px 16px;
  1091. color: #fff;
  1092. font-size: 12px;
  1093. font-weight: 900;
  1094. line-height: 1em;
  1095. }
  1096. @media (max-width: 768px) {
  1097. .game-item__tagsLink {
  1098. padding: 3px 11px;
  1099. font-size: 9px;
  1100. }
  1101. }
  1102. .game-item__info {
  1103. position: absolute;
  1104. top: 8px;
  1105. right: 8px;
  1106. display: flex;
  1107. align-items: center;
  1108. justify-content: end;
  1109. }
  1110. .game-item__provide {
  1111. width: 32px;
  1112. height: 32px;
  1113. border-radius: 50%;
  1114. background: #000;
  1115. display: flex;
  1116. justify-content: center;
  1117. align-items: center;
  1118. padding: 2px;
  1119. margin-right: 8px;
  1120. }
  1121. @media (max-width: 768px) {
  1122. .game-item__provide {
  1123. width: 24px;
  1124. height: 24px;
  1125. margin-right: 5px;
  1126. }
  1127. }
  1128. .game-item__provide .icon {
  1129. fill: #fff;
  1130. }
  1131. .game-item__rating {
  1132. width: 36px;
  1133. height: 36px;
  1134. position: relative;
  1135. }
  1136. @media (max-width: 768px) {
  1137. .game-item__rating {
  1138. width: 28px;
  1139. height: 28px;
  1140. }
  1141. }
  1142. .game-item__ratingVal {
  1143. font-size: 12px;
  1144. }
  1145. @media (max-width: 768px) {
  1146. .game-item__ratingVal {
  1147. font-size: 10px;
  1148. }
  1149. }
  1150. .game-item__rtp {
  1151. padding: 4px 8px;
  1152. background: linear-gradient(var(--gradient-theme-red));
  1153. border-radius: 8px;
  1154. font-size: 12px;
  1155. font-style: normal;
  1156. font-weight: 600;
  1157. color: #fff;
  1158. line-height: 1em;
  1159. height: 24px;
  1160. display: flex;
  1161. align-items: center;
  1162. position: absolute;
  1163. bottom: 8px;
  1164. right: 8px;
  1165. }
  1166. .game-item__countPlay {
  1167. color: #fff;
  1168. font-size: 12px;
  1169. padding: 4px 8px;
  1170. font-size: 12px;
  1171. line-height: 1em;
  1172. font-weight: 600;
  1173. border-radius: 8px;
  1174. background: rgba(2, 0, 5, 0.8);
  1175. position: relative;
  1176. display: flex;
  1177. height: 24px;
  1178. align-items: center;
  1179. justify-content: space-between;
  1180. position: absolute;
  1181. bottom: 8px;
  1182. left: 8px;
  1183. }
  1184. .game-item__countPlay .icon {
  1185. fill: #fff;
  1186. }
  1187. .game-item__countTxt {
  1188. padding-left: 5px;
  1189. }
  1190. .game-item__btn {
  1191. margin-top: 16px;
  1192. width: 100%;
  1193. max-width: 120px;
  1194. }
  1195. @media (max-width: 768px) {
  1196. .game-item__btn {
  1197. margin-top: 8px;
  1198. font-size: 12px;
  1199. padding: 8px 20px;
  1200. max-width: 100px;
  1201. }
  1202. }
  1203. .game-item__hover {
  1204. position: absolute;
  1205. top: 0;
  1206. left: 0;
  1207. bottom: 0;
  1208. right: 0;
  1209. background: rgba(2, 0, 5, 0.8);
  1210. display: flex;
  1211. align-items: center;
  1212. justify-content: center;
  1213. flex-direction: column;
  1214. padding: 20px;
  1215. opacity: 0;
  1216. z-index: 1;
  1217. transition: 0.5s ease-out;
  1218. visibility: hidden;
  1219. cursor: pointer;
  1220. }
  1221. /*# sourceMappingURL=styles.css.map */