styles.css 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463
  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 {
  390. border: 1px solid var(--accent-color);
  391. background: var(--accent-color);
  392. color: #fff;
  393. }
  394. .header__btn--secondary:hover {
  395. transform: translateY(-1px);
  396. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  397. }
  398. .header__burger {
  399. display: none;
  400. flex-direction: column;
  401. justify-content: space-between;
  402. width: 30px;
  403. height: 24px;
  404. background: transparent;
  405. border: none;
  406. cursor: pointer;
  407. padding: 0;
  408. z-index: 1001;
  409. transition: transform 0.3s ease;
  410. }
  411. .header__burger:hover {
  412. transform: scale(1.1);
  413. }
  414. .header__burger-line {
  415. width: 100%;
  416. height: 3px;
  417. background: #fff;
  418. border-radius: 2px;
  419. transition: all 0.3s ease;
  420. }
  421. .header__burger.active .header__burger-line:nth-child(1) {
  422. transform: translateY(10.5px) rotate(45deg);
  423. }
  424. .header__burger.active .header__burger-line:nth-child(2) {
  425. opacity: 0;
  426. }
  427. .header__burger.active .header__burger-line:nth-child(3) {
  428. transform: translateY(-10.5px) rotate(-45deg);
  429. }
  430. @media (max-width: 1199px) {
  431. .header__menu {
  432. gap: 24px;
  433. }
  434. .header__btn {
  435. padding: 8px 16px;
  436. font-size: 13px;
  437. }
  438. }
  439. @media (max-width: 768px) {
  440. .header {
  441. height: 60px;
  442. }
  443. .header__logo {
  444. width: 150px;
  445. height: 35px;
  446. }
  447. .header__logo img {
  448. width: 150px;
  449. height: 35px;
  450. }
  451. .header__burger {
  452. display: flex;
  453. }
  454. .header__nav {
  455. position: fixed;
  456. top: 60px;
  457. left: 0;
  458. width: 100%;
  459. height: calc(100vh - 60px);
  460. transform: translateX(-100%);
  461. transition: transform 0.3s ease;
  462. padding: 40px 20px;
  463. overflow-y: auto;
  464. }
  465. }
  466. @media (max-width: 768px) and (max-width: 768px) {
  467. .header__nav {
  468. background: var(--body-bg-color);
  469. }
  470. }
  471. @media (max-width: 768px) {
  472. .header__nav.active {
  473. transform: translateX(0);
  474. }
  475. .header__menu {
  476. flex-direction: column;
  477. align-items: center;
  478. width: 100%;
  479. gap: 24px;
  480. }
  481. .header__menu-link {
  482. font-size: 18px;
  483. }
  484. }
  485. @media (max-width: 768px) and (max-width: 768px) {
  486. .header__menu-link {
  487. font-size: 16px;
  488. background: var(--body-bg-color);
  489. color: var(--text-color);
  490. }
  491. }
  492. @media (max-width: 768px) {
  493. .header__actions {
  494. gap: 8px;
  495. }
  496. .header__btn {
  497. display: none;
  498. }
  499. .header__nav.active .header__btn {
  500. display: block;
  501. width: calc(100% - 40px);
  502. margin: 0 20px 16px;
  503. }
  504. }
  505. .footer {
  506. background: var(--footer-bg-color);
  507. display: flex;
  508. gap: 32px;
  509. padding: 48px 0;
  510. flex-direction: column;
  511. align-items: center;
  512. color: var(--text-color);
  513. }
  514. @media (max-width: 768px) {
  515. .footer {
  516. gap: 24px;
  517. padding: 32px 0;
  518. }
  519. }
  520. .footer__content-inner {
  521. display: flex;
  522. align-items: flex-start;
  523. gap: 60px;
  524. align-self: stretch;
  525. }
  526. @media (max-width: 768px) {
  527. .footer__content-inner {
  528. gap: 20px;
  529. flex-direction: column;
  530. }
  531. }
  532. .footer__text {
  533. font-size: 14px;
  534. font-style: normal;
  535. font-weight: 400;
  536. line-height: 20px; /* 142.857% */
  537. }
  538. @media (max-width: 768px) {
  539. .footer__text {
  540. font-size: 12px;
  541. line-height: 18px;
  542. }
  543. }
  544. .footer__logo {
  545. width: 210px;
  546. height: 48px;
  547. }
  548. @media (max-width: 768px) {
  549. .footer__logo {
  550. width: 100%;
  551. display: flex;
  552. align-items: center;
  553. justify-content: center;
  554. }
  555. }
  556. .footer__logo img {
  557. width: 190px;
  558. height: 44px;
  559. display: block;
  560. cursor: pointer;
  561. -o-object-fit: contain;
  562. object-fit: contain;
  563. transition: opacity 0.3s ease;
  564. }
  565. .footer__bottom-imgs {
  566. display: flex;
  567. justify-content: center;
  568. align-items: center;
  569. gap: 40px;
  570. align-self: stretch;
  571. list-style: none;
  572. margin: 0;
  573. padding: 0;
  574. }
  575. .footer__bottom-imgs img {
  576. opacity: 0.4;
  577. }
  578. @media (max-width: 768px) {
  579. .footer__bottom-imgs {
  580. gap: 20px;
  581. display: grid;
  582. grid-template-columns: 1fr 1fr;
  583. }
  584. }
  585. .footer__menu-list {
  586. display: flex;
  587. align-items: center;
  588. justify-content: center;
  589. gap: 24px;
  590. }
  591. @media (max-width: 768px) {
  592. .footer__menu-list {
  593. gap: 16px;
  594. }
  595. }
  596. .footer__menu-item {
  597. list-style: none;
  598. }
  599. .footer__menu-link {
  600. color: var(--Main-White, #FFF);
  601. font-size: 16px;
  602. font-style: normal;
  603. font-weight: 700;
  604. line-height: normal;
  605. text-decoration-line: underline;
  606. text-decoration-style: solid;
  607. -webkit-text-decoration-skip-ink: none;
  608. text-decoration-skip-ink: none;
  609. text-decoration-thickness: auto;
  610. text-underline-offset: auto;
  611. text-underline-position: from-font;
  612. }
  613. .footer__menu-link:hover {
  614. color: #fff;
  615. opacity: 0.9;
  616. }
  617. .footer__copyright {
  618. color: var(--Main-White, #FFF);
  619. font-size: 14px;
  620. font-style: normal;
  621. font-weight: 400;
  622. line-height: normal;
  623. }
  624. .btn-wrapper {
  625. display: flex;
  626. justify-content: center;
  627. margin-top: 24px;
  628. }
  629. .btn {
  630. display: inline-flex;
  631. align-items: center;
  632. justify-content: center;
  633. padding: 14px 32px;
  634. border-radius: 8px;
  635. font-size: 16px;
  636. font-weight: 600;
  637. line-height: 1.5;
  638. text-decoration: none;
  639. transition: all 0.3s ease;
  640. cursor: pointer;
  641. border: none;
  642. }
  643. @media (max-width: 768px) {
  644. .btn {
  645. font-size: 14px;
  646. padding: 12px 24px;
  647. }
  648. }
  649. .btn--accent {
  650. background: var(--accent-color);
  651. color: #fff;
  652. }
  653. .btn--accent:hover {
  654. transform: translateY(-1px);
  655. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  656. opacity: 0.9;
  657. }
  658. .btn--accent:active {
  659. transform: translateY(0);
  660. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  661. }
  662. .author {
  663. display: flex;
  664. align-items: center;
  665. gap: 24px;
  666. border-radius: 8px;
  667. }
  668. @media (max-width: 768px) {
  669. .author {
  670. gap: 16px;
  671. flex-direction: column;
  672. }
  673. }
  674. .author__img {
  675. flex-shrink: 0;
  676. width: 100px;
  677. height: 100px;
  678. border-radius: 50%;
  679. overflow: hidden;
  680. }
  681. @media (max-width: 768px) {
  682. .author__img {
  683. width: 60px;
  684. height: 60px;
  685. }
  686. }
  687. .author__img img {
  688. width: 100%;
  689. height: 100%;
  690. -o-object-fit: cover;
  691. object-fit: cover;
  692. }
  693. .author__info {
  694. display: flex;
  695. flex-direction: column;
  696. gap: 16px;
  697. }
  698. .author__name {
  699. font-size: 14px;
  700. font-weight: 600;
  701. }
  702. .author__name-header {
  703. display: flex;
  704. align-items: center;
  705. justify-content: space-between;
  706. }
  707. .author__name-n {
  708. color: var(--text-color);
  709. font-size: 16px;
  710. font-style: normal;
  711. font-weight: 700;
  712. line-height: 18px; /* 112.5% */
  713. }
  714. @media (max-width: 768px) {
  715. .author__name-n {
  716. font-size: 14px;
  717. }
  718. }
  719. .author__name-v {
  720. color: var(--accent-color);
  721. font-size: 18px;
  722. font-style: normal;
  723. font-weight: 700;
  724. line-height: 18px; /* 100% */
  725. }
  726. @media (max-width: 768px) {
  727. .author__name-v {
  728. font-size: 16px;
  729. }
  730. }
  731. .faq {
  732. display: flex;
  733. flex-direction: column;
  734. gap: 16px;
  735. }
  736. .faq__title {
  737. margin: 0;
  738. margin-bottom: 24px;
  739. font-weight: 600;
  740. color: var(--text-color);
  741. }
  742. .faq__item {
  743. border-radius: 12px;
  744. overflow: hidden;
  745. transition: all 0.3s ease;
  746. border: 1px solid var(--content-border-color);
  747. background: var(--content-bg-color);
  748. }
  749. .faq__item.active .faq__question::after {
  750. transform: rotate(45deg);
  751. }
  752. .faq__item.active .faq__question::before {
  753. transform: rotate(-45deg);
  754. }
  755. .faq__item.active .faq__answer {
  756. opacity: 1;
  757. }
  758. .faq__question {
  759. padding: 20px 56px 20px 24px;
  760. cursor: pointer;
  761. position: relative;
  762. -webkit-user-select: none;
  763. -moz-user-select: none;
  764. user-select: none;
  765. transition: background-color 0.2s ease;
  766. display: flex;
  767. align-items: center;
  768. gap: 16px;
  769. }
  770. @media (max-width: 768px) {
  771. .faq__question {
  772. padding: 16px 56px 16px 16px;
  773. }
  774. }
  775. .faq__question h3 {
  776. margin: 0;
  777. font-size: 16px;
  778. font-weight: 500;
  779. line-height: 24px;
  780. color: var(--text-color);
  781. }
  782. .faq__question::before, .faq__question::after {
  783. content: "";
  784. position: absolute;
  785. right: 24px;
  786. top: 50%;
  787. width: 16px;
  788. height: 2px;
  789. background-color: var(--text-color);
  790. transition: transform 0.3s ease;
  791. }
  792. .faq__question::before {
  793. transform: translateY(-50%);
  794. }
  795. .faq__question::after {
  796. transform: translateY(-50%) rotate(90deg);
  797. }
  798. .faq__number {
  799. display: flex;
  800. width: 32px;
  801. height: 32px;
  802. flex-direction: column;
  803. justify-content: center;
  804. align-items: center;
  805. gap: 10px;
  806. aspect-ratio: 1/1;
  807. font-weight: 600;
  808. background-color: var(--accent-color);
  809. color: var(--text-color);
  810. flex-shrink: 0;
  811. border-radius: 50%;
  812. }
  813. @media (max-width: 768px) {
  814. .faq__number {
  815. width: 26px;
  816. height: 26px;
  817. }
  818. }
  819. .faq__question-title {
  820. flex: 1;
  821. font-size: 16px;
  822. font-weight: 500;
  823. line-height: 24px;
  824. color: var(--text-color);
  825. }
  826. .faq__answer {
  827. max-height: 0;
  828. opacity: 0;
  829. overflow: hidden;
  830. transition: all 0.3s ease;
  831. border-top: 1px dashed var(--content-border-color);
  832. }
  833. .faq__answer p {
  834. margin: 0;
  835. font-size: 14px;
  836. line-height: 22px;
  837. color: var(--text-color);
  838. opacity: 0.8;
  839. }
  840. .faq__answer-inner {
  841. padding: 24px;
  842. }
  843. .toc {
  844. border-radius: 12px;
  845. border: 1px solid var(--content-border-color);
  846. background: var(--content-bg-color);
  847. overflow: hidden;
  848. }
  849. .toc__header {
  850. padding: 20px 56px 20px 24px;
  851. cursor: pointer;
  852. position: relative;
  853. -webkit-user-select: none;
  854. -moz-user-select: none;
  855. user-select: none;
  856. transition: background-color 0.2s ease;
  857. }
  858. .toc__header:hover {
  859. background-color: rgba(0, 0, 0, 0.02);
  860. }
  861. .toc__header::before, .toc__header::after {
  862. content: "";
  863. position: absolute;
  864. right: 24px;
  865. top: 50%;
  866. width: 16px;
  867. height: 2px;
  868. background-color: var(--text-color);
  869. transition: transform 0.3s ease;
  870. }
  871. .toc__header::before {
  872. transform: translateY(-50%) rotate(90deg);
  873. }
  874. .toc__header::after {
  875. transform: translateY(-50%);
  876. }
  877. .toc__title {
  878. margin: 0;
  879. color: var(--Main-Back, #000);
  880. font-size: 18px;
  881. font-style: normal;
  882. font-weight: 700;
  883. line-height: normal;
  884. text-transform: uppercase;
  885. color: var(--text-color);
  886. }
  887. @media (max-width: 768px) {
  888. .toc__title {
  889. font-size: 16px;
  890. }
  891. }
  892. .toc__content {
  893. max-height: 0;
  894. overflow: hidden;
  895. transition: max-height 0.3s ease;
  896. }
  897. .toc__list {
  898. list-style: none;
  899. margin: 0;
  900. padding: 0 24px 24px 24px;
  901. counter-reset: toc-counter;
  902. }
  903. @media (max-width: 768px) {
  904. .toc__list {
  905. padding: 0 16px 16px 16px;
  906. }
  907. }
  908. .toc__list--nested {
  909. padding: 8px 0 0 28px;
  910. list-style: disc;
  911. padding-left: 40px;
  912. }
  913. .toc__item {
  914. margin-bottom: 8px;
  915. position: relative;
  916. }
  917. .toc__item:last-child {
  918. margin-bottom: 0;
  919. }
  920. .toc__item > .toc__link::before {
  921. counter-increment: toc-counter;
  922. content: counter(toc-counter) ". ";
  923. font-weight: 600;
  924. margin-right: 4px;
  925. }
  926. .toc__list--nested > .toc__item > .toc__link::before {
  927. content: none;
  928. }
  929. .toc__link {
  930. display: block;
  931. color: var(--text-color);
  932. text-decoration: none;
  933. font-size: 14px;
  934. line-height: 20px;
  935. padding: 6px 12px;
  936. border-radius: 6px;
  937. transition: all 0.2s ease;
  938. }
  939. .toc__link:hover {
  940. background-color: rgba(0, 0, 0, 0.03);
  941. color: var(--link-color);
  942. }
  943. .toc__list--nested > .toc__item > .toc__link {
  944. font-size: 13px;
  945. padding-left: 8px;
  946. }
  947. .toc.active .toc__header::before {
  948. transform: translateY(-50%) rotate(45deg);
  949. }
  950. .toc.active .toc__header::after {
  951. transform: translateY(-50%) rotate(-45deg);
  952. }
  953. .toc.active .toc__content {
  954. max-height: 1000px;
  955. }
  956. .slot-item {
  957. overflow: hidden;
  958. position: relative;
  959. padding-top: 52%;
  960. border-radius: 16px;
  961. background-color: var(--body-bg-color);
  962. border: 1px solid var(--content-border-color);
  963. box-shadow: 0 2px 44px 0 rgba(188, 188, 188, 0.15);
  964. }
  965. .slot-item__inner {
  966. position: absolute;
  967. top: 0;
  968. left: 0;
  969. width: 100%;
  970. overflow: hidden;
  971. height: calc(100% - 45px);
  972. }
  973. .slot-item__thumbnail {
  974. position: absolute;
  975. top: 0;
  976. left: 0;
  977. bottom: 0;
  978. right: 0;
  979. }
  980. .slot-item__thumbnail img {
  981. display: block;
  982. width: 100%;
  983. height: 100%;
  984. -o-object-fit: cover;
  985. object-fit: cover;
  986. }
  987. .slot-item__title {
  988. height: 45px;
  989. display: flex;
  990. align-items: center;
  991. justify-content: center;
  992. padding: 12px;
  993. gap: 8px;
  994. }
  995. .slot-item__title-txt {
  996. color: var(--text-color);
  997. text-align: center;
  998. font-size: 16px;
  999. font-style: normal;
  1000. font-weight: 400;
  1001. line-height: 26px; /* 162.5% */
  1002. }
  1003. .slot-item__provider {
  1004. border-radius: 8px;
  1005. background-color: var(--body-bg-color);
  1006. backdrop-filter: blur(17px);
  1007. position: absolute;
  1008. top: 12px;
  1009. right: 12px;
  1010. padding: 8px;
  1011. }
  1012. .slot-item__rtp {
  1013. background-color: var(--accent-color);
  1014. display: flex;
  1015. height: 24px;
  1016. padding: 4px 8px;
  1017. justify-content: center;
  1018. align-items: center;
  1019. gap: 4px;
  1020. position: absolute;
  1021. bottom: 12px;
  1022. right: 12px;
  1023. color: var(--text-color);
  1024. font-size: 12px;
  1025. font-style: normal;
  1026. font-weight: 700;
  1027. line-height: 14px; /* 116.667% */
  1028. border-radius: 5px;
  1029. }
  1030. .slot-item__icon {
  1031. width: 18px;
  1032. height: 18px;
  1033. display: flex;
  1034. align-items: center;
  1035. justify-content: center;
  1036. }
  1037. .slot-item__icon svg {
  1038. fill: var(--link-color);
  1039. }
  1040. body {
  1041. padding-top: 70px;
  1042. background-color: var(--body-bg-color);
  1043. color: var(--text-color);
  1044. font-style: normal;
  1045. font-weight: 400;
  1046. line-height: 24px; /* 150% */
  1047. }
  1048. body.menu-open {
  1049. overflow: hidden;
  1050. }
  1051. .container {
  1052. max-width: var(--container-width);
  1053. width: 100%;
  1054. height: 100%;
  1055. margin: 0 auto;
  1056. padding-left: 16px !important;
  1057. padding-right: 16px !important;
  1058. }
  1059. .banner {
  1060. background: #000;
  1061. display: flex;
  1062. align-items: center;
  1063. justify-content: center;
  1064. }
  1065. .banner__img-wrp {
  1066. max-width: 1920px;
  1067. max-height: 540px;
  1068. overflow: hidden;
  1069. margin: 0 auto;
  1070. }
  1071. .banner__img {
  1072. display: block;
  1073. width: 100%;
  1074. height: 100%;
  1075. -o-object-fit: cover;
  1076. object-fit: cover;
  1077. }
  1078. .section-wrapper {
  1079. padding: 32px 0;
  1080. display: flex;
  1081. flex-direction: column;
  1082. gap: 32px;
  1083. width: 100%;
  1084. }
  1085. @media (max-width: 1199px) {
  1086. .section-wrapper {
  1087. gap: 24px;
  1088. padding: 24px 0;
  1089. }
  1090. }
  1091. @media (max-width: 768px) {
  1092. .section-wrapper {
  1093. gap: 16px;
  1094. padding: 16px 0;
  1095. }
  1096. }
  1097. .section {
  1098. padding: 32px;
  1099. border-radius: 16px;
  1100. border: 1px solid var(--content-border-color);
  1101. background: var(--content-bg-color);
  1102. }
  1103. @media (max-width: 1199px) {
  1104. .section {
  1105. padding: 24px;
  1106. }
  1107. }
  1108. @media (max-width: 768px) {
  1109. .section {
  1110. padding: 16px;
  1111. }
  1112. }
  1113. .section__title {
  1114. margin-top: 0;
  1115. }
  1116. a {
  1117. color: var(--link-color);
  1118. text-decoration: none;
  1119. transition: color 0.3s ease;
  1120. }
  1121. a:hover {
  1122. opacity: 0.8;
  1123. }
  1124. table {
  1125. background: var(--table-bg-color);
  1126. color: var(--text-color);
  1127. }
  1128. th,
  1129. thead,
  1130. table thead tr {
  1131. background-color: var(--table-header-color);
  1132. color: var(--text-color);
  1133. }
  1134. caption {
  1135. background: var(--table-header-color);
  1136. color: var(--text-color);
  1137. }
  1138. .game-item {
  1139. border-radius: var(--border-radius-main);
  1140. overflow: hidden;
  1141. position: relative;
  1142. padding-top: 52%;
  1143. box-shadow: 0px 2px 44px 0px rgba(188, 188, 188, 0.15);
  1144. background: #fff;
  1145. }
  1146. @media (max-width: 768px) {
  1147. .game-item {
  1148. padding-top: 60%;
  1149. border-radius: 12px;
  1150. box-shadow: 0px 1.4px 30.803px 0px rgba(188, 188, 188, 0.15);
  1151. }
  1152. }
  1153. .game-item__inner {
  1154. position: absolute;
  1155. top: 0;
  1156. left: 0;
  1157. width: 100%;
  1158. overflow: hidden;
  1159. height: calc(100% - 45px);
  1160. }
  1161. @media (max-width: 768px) {
  1162. .game-item__inner {
  1163. height: calc(100% - 40px);
  1164. }
  1165. }
  1166. .game-item__inner:hover .game-item__hover {
  1167. opacity: 1;
  1168. visibility: visible;
  1169. }
  1170. .game-item__title {
  1171. color: rgba(2, 0, 5, 0.8);
  1172. text-align: center;
  1173. font-size: 16px;
  1174. font-style: normal;
  1175. font-weight: 400;
  1176. line-height: 1.1em;
  1177. width: 100%;
  1178. height: 45px;
  1179. display: flex;
  1180. align-items: center;
  1181. justify-content: center;
  1182. background: #fff;
  1183. position: relative;
  1184. padding: 0 12px;
  1185. }
  1186. @media (max-width: 1199px) {
  1187. .game-item__title {
  1188. font-size: 14px;
  1189. }
  1190. }
  1191. @media (max-width: 768px) {
  1192. .game-item__title {
  1193. font-size: 12px;
  1194. height: 40px;
  1195. }
  1196. }
  1197. .game-item__link {
  1198. display: inline-flex;
  1199. align-items: center;
  1200. gap: 8px;
  1201. text-decoration: none !important;
  1202. color: rgba(2, 0, 5, 0.8) !important;
  1203. }
  1204. @media (max-width: 768px) {
  1205. .game-item__link {
  1206. gap: 4px;
  1207. }
  1208. }
  1209. .game-item__link:before {
  1210. content: "";
  1211. display: block;
  1212. width: 100%;
  1213. height: 100%;
  1214. position: absolute;
  1215. top: 0;
  1216. left: 0;
  1217. }
  1218. .game-item__link:hover {
  1219. color: var(--color-theme-red) !important;
  1220. }
  1221. .game-item__link:hover .icon {
  1222. fill: url("#icon-gradient-red");
  1223. }
  1224. .game-item__link .icon {
  1225. width: 20px;
  1226. height: 20px;
  1227. flex-shrink: 0;
  1228. fill: #0076CC;
  1229. }
  1230. @media (max-width: 768px) {
  1231. .game-item__link .icon {
  1232. width: 12px;
  1233. height: 12px;
  1234. }
  1235. }
  1236. .game-item__link-text {
  1237. display: inline-flex;
  1238. align-items: center;
  1239. }
  1240. .game-item__link-icon {
  1241. width: 20px;
  1242. height: 20px;
  1243. display: flex;
  1244. align-items: center;
  1245. justify-content: center;
  1246. fill: #0076CC;
  1247. }
  1248. .game-item__picture {
  1249. position: absolute;
  1250. top: 0;
  1251. left: 0;
  1252. bottom: 0;
  1253. right: 0;
  1254. }
  1255. .game-item__image {
  1256. display: block;
  1257. width: 100%;
  1258. height: 100%;
  1259. -o-object-fit: cover;
  1260. object-fit: cover;
  1261. transition: 0.3s ease-out;
  1262. }
  1263. .game-item__tags {
  1264. position: absolute;
  1265. top: 0;
  1266. left: 12px;
  1267. display: flex;
  1268. }
  1269. .game-item__tagsItm {
  1270. margin-right: 8px;
  1271. border-radius: 0px 0px 8px 8px;
  1272. background: linear-gradient(90deg, #2D2BA7 0%, #BA73D1 100%);
  1273. text-transform: uppercase;
  1274. overflow: hidden;
  1275. }
  1276. @media (max-width: 768px) {
  1277. .game-item__tagsItm {
  1278. border-radius: 0px 0px 5px 5px;
  1279. }
  1280. }
  1281. .game-item__tagsItm--hot {
  1282. background: #F5294D;
  1283. }
  1284. .game-item__tagsLink {
  1285. display: block;
  1286. color: #fff;
  1287. padding: 8px 16px;
  1288. color: #fff;
  1289. font-size: 12px;
  1290. font-weight: 900;
  1291. line-height: 1em;
  1292. }
  1293. @media (max-width: 768px) {
  1294. .game-item__tagsLink {
  1295. padding: 3px 11px;
  1296. font-size: 9px;
  1297. }
  1298. }
  1299. .game-item__info {
  1300. position: absolute;
  1301. top: 8px;
  1302. right: 8px;
  1303. display: flex;
  1304. align-items: center;
  1305. justify-content: end;
  1306. }
  1307. .game-item__provide {
  1308. width: 32px;
  1309. height: 32px;
  1310. border-radius: 50%;
  1311. background: #000;
  1312. display: flex;
  1313. justify-content: center;
  1314. align-items: center;
  1315. padding: 2px;
  1316. margin-right: 8px;
  1317. }
  1318. @media (max-width: 768px) {
  1319. .game-item__provide {
  1320. width: 24px;
  1321. height: 24px;
  1322. margin-right: 5px;
  1323. }
  1324. }
  1325. .game-item__provide .icon {
  1326. fill: #fff;
  1327. }
  1328. .game-item__rating {
  1329. width: 36px;
  1330. height: 36px;
  1331. position: relative;
  1332. }
  1333. @media (max-width: 768px) {
  1334. .game-item__rating {
  1335. width: 28px;
  1336. height: 28px;
  1337. }
  1338. }
  1339. .game-item__ratingVal {
  1340. font-size: 12px;
  1341. }
  1342. @media (max-width: 768px) {
  1343. .game-item__ratingVal {
  1344. font-size: 10px;
  1345. }
  1346. }
  1347. .game-item__rtp {
  1348. padding: 4px 8px;
  1349. background: linear-gradient(var(--gradient-theme-red));
  1350. border-radius: 8px;
  1351. font-size: 12px;
  1352. font-style: normal;
  1353. font-weight: 600;
  1354. color: #fff;
  1355. line-height: 1em;
  1356. height: 24px;
  1357. display: flex;
  1358. align-items: center;
  1359. position: absolute;
  1360. bottom: 8px;
  1361. right: 8px;
  1362. }
  1363. .game-item__countPlay {
  1364. color: #fff;
  1365. font-size: 12px;
  1366. padding: 4px 8px;
  1367. font-size: 12px;
  1368. line-height: 1em;
  1369. font-weight: 600;
  1370. border-radius: 8px;
  1371. background: rgba(2, 0, 5, 0.8);
  1372. position: relative;
  1373. display: flex;
  1374. height: 24px;
  1375. align-items: center;
  1376. justify-content: space-between;
  1377. position: absolute;
  1378. bottom: 8px;
  1379. left: 8px;
  1380. }
  1381. .game-item__countPlay .icon {
  1382. fill: #fff;
  1383. }
  1384. .game-item__countTxt {
  1385. padding-left: 5px;
  1386. }
  1387. .game-item__btn {
  1388. margin-top: 16px;
  1389. width: 100%;
  1390. max-width: 120px;
  1391. }
  1392. @media (max-width: 768px) {
  1393. .game-item__btn {
  1394. margin-top: 8px;
  1395. font-size: 12px;
  1396. padding: 8px 20px;
  1397. max-width: 100px;
  1398. }
  1399. }
  1400. .game-item__hover {
  1401. position: absolute;
  1402. top: 0;
  1403. left: 0;
  1404. bottom: 0;
  1405. right: 0;
  1406. background: rgba(2, 0, 5, 0.8);
  1407. display: flex;
  1408. align-items: center;
  1409. justify-content: center;
  1410. flex-direction: column;
  1411. padding: 20px;
  1412. opacity: 0;
  1413. z-index: 1;
  1414. transition: 0.5s ease-out;
  1415. visibility: hidden;
  1416. cursor: pointer;
  1417. }
  1418. .slots-grid {
  1419. display: grid;
  1420. grid-template-columns: repeat(5, 1fr);
  1421. gap: 8px;
  1422. }
  1423. @media (max-width: 1199px) {
  1424. .slots-grid {
  1425. grid-template-columns: repeat(3, 1fr);
  1426. }
  1427. }
  1428. @media (max-width: 768px) {
  1429. .slots-grid {
  1430. grid-template-columns: repeat(2, 1fr);
  1431. }
  1432. }
  1433. /*# sourceMappingURL=styles.css.map */