styles.css 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  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: 44px;
  40. --h2: 24px;
  41. --h3: 20px;
  42. --h4: 18px;
  43. --l: 20px;
  44. --m: 16px;
  45. --s: 14px;
  46. }
  47. @media (max-width: 1199px) {
  48. :root {
  49. --container-width: 1199px;
  50. --fz-default: 16px;
  51. --lh-default: 26px;
  52. --h1: 28px;
  53. --h2: 20px;
  54. --h3: 18px;
  55. --h4: 16px;
  56. --l: 20px;
  57. --m: 16px;
  58. --s: 14px;
  59. --sp: 32px 0;
  60. }
  61. }
  62. @media (max-width: 768px) {
  63. :root {
  64. --container-width: 768px;
  65. --fz-default: 16px;
  66. --lh-default: 26px;
  67. --h1: 28px;
  68. --h2: 20px;
  69. --h3: 18px;
  70. --h4: 16px;
  71. --l: 20px;
  72. --m: 16px;
  73. --s: 14px;
  74. --sp: 32px 0;
  75. }
  76. }
  77. @media (max-width: 575px) {
  78. :root {
  79. --container-width: 575px;
  80. --fz-default: 16px;
  81. --lh-default: 26px;
  82. --h1: 24px;
  83. --h2: 18px;
  84. --h3: 16px;
  85. --h4: 14px;
  86. --l: 20px;
  87. --m: 16px;
  88. --s: 14px;
  89. }
  90. }
  91. body {
  92. display: flex;
  93. flex-direction: column;
  94. min-height: 100vh;
  95. margin: 0;
  96. padding: 0;
  97. font-family: var(--default-font-family), Helvetica, Arial, sans-serif;
  98. font-weight: 400;
  99. font-size: var(--fz-default);
  100. font-style: normal;
  101. font-weight: 400;
  102. line-height: var(--lh-default);
  103. min-width: 360px;
  104. color: var(--text-color);
  105. position: relative;
  106. background-color: #FFF;
  107. scroll-behavior: smooth;
  108. -webkit-font-smoothing: antialiased;
  109. -moz-osx-font-smoothing: grayscale;
  110. text-rendering: optimizeLegibility;
  111. }
  112. h1 {
  113. font-family: var(--heading-font-family);
  114. font-weight: 600;
  115. font-size: var(--h1);
  116. line-height: 106%;
  117. }
  118. h2 {
  119. font-family: var(--heading-font-family);
  120. font-weight: 600;
  121. font-size: var(--h2);
  122. line-height: 125%;
  123. }
  124. h3 {
  125. font-family: var(--heading-font-family);
  126. font-weight: 600;
  127. font-size: var(--h3);
  128. line-height: 130%;
  129. }
  130. h4 {
  131. font-family: var(--heading-font-family);
  132. font-weight: 600;
  133. font-size: var(--h4);
  134. line-height: 133%;
  135. }
  136. h5 {
  137. font-family: var(--heading-font-family);
  138. font-weight: 600;
  139. font-size: var(--m);
  140. line-height: 135%;
  141. }
  142. h6 {
  143. font-family: var(--heading-font-family);
  144. font-weight: 900;
  145. font-size: var(--m);
  146. line-height: 140%;
  147. }
  148. h1, h2, h3, h4, h5, h6 {
  149. margin: 32px 0 20px 0;
  150. }
  151. @media (max-width: 768px) {
  152. h1, h2, h3, h4, h5, h6 {
  153. margin: 24px 0 12px 0;
  154. }
  155. }
  156. .text > h1:first-child, .text > h2:first-child, .text > h3:first-child, .text > h4:first-child, .text > h5:first-child, .text > h6:first-child {
  157. margin-top: 0;
  158. }
  159. .text p {
  160. margin-bottom: 24px;
  161. }
  162. @media (max-width: 768px) {
  163. .text p {
  164. margin-bottom: 16px;
  165. }
  166. }
  167. .text p:last-child {
  168. margin-bottom: 0;
  169. }
  170. .text a {
  171. color: var(--color-link-text);
  172. text-decoration: underline;
  173. text-underline-offset: 3px;
  174. text-decoration-thickness: 1px;
  175. }
  176. .text a:hover {
  177. text-decoration: none;
  178. color: var(--color-theme-red);
  179. }
  180. .text ol, .text ul {
  181. margin: 24px 0;
  182. list-style-position: inside;
  183. }
  184. @media (max-width: 768px) {
  185. .text ol, .text ul {
  186. margin: 12px 0;
  187. padding-left: 8px;
  188. }
  189. }
  190. .text ol li, .text ul li {
  191. margin: 12px 0;
  192. margin-left: 32px;
  193. }
  194. @media (max-width: 768px) {
  195. .text ol li, .text ul li {
  196. margin-left: 16px;
  197. }
  198. }
  199. .text ul {
  200. list-style: disc;
  201. }
  202. .text ol {
  203. list-style: decimal;
  204. }
  205. .header {
  206. position: fixed;
  207. width: 100%;
  208. top: 0;
  209. left: 0;
  210. height: 70px;
  211. z-index: 1000;
  212. }
  213. .header .container {
  214. display: flex;
  215. justify-content: space-between;
  216. align-items: center;
  217. height: 100%;
  218. gap: 20px;
  219. }
  220. .header__logo {
  221. width: 190px;
  222. height: 44px;
  223. flex-shrink: 0;
  224. display: flex;
  225. justify-content: center;
  226. align-items: center;
  227. z-index: 1001;
  228. }
  229. .header__logo-link {
  230. display: inline-block;
  231. line-height: 0;
  232. }
  233. .header__logo img {
  234. width: 190px;
  235. height: 44px;
  236. display: block;
  237. cursor: pointer;
  238. -o-object-fit: contain;
  239. object-fit: contain;
  240. transition: opacity 0.3s ease;
  241. }
  242. .header__nav {
  243. flex: 1;
  244. display: flex;
  245. justify-content: center;
  246. }
  247. .header__menu {
  248. list-style: none;
  249. margin: 0;
  250. padding: 0;
  251. display: flex;
  252. align-items: center;
  253. gap: 40px;
  254. }
  255. .header__menu-link {
  256. text-decoration: none;
  257. font-size: 16px;
  258. font-weight: 500;
  259. transition: opacity 0.3s ease;
  260. color: #fff;
  261. white-space: nowrap;
  262. opacity: 0.9;
  263. }
  264. .header__menu-link:hover {
  265. opacity: 1;
  266. color: #fff;
  267. }
  268. .header__actions {
  269. display: flex;
  270. align-items: center;
  271. gap: 12px;
  272. flex-shrink: 0;
  273. }
  274. .header__btn {
  275. border-radius: 6px;
  276. border: 1px solid #FFF;
  277. display: flex;
  278. height: 42px;
  279. padding: 8px 32px;
  280. justify-content: center;
  281. align-items: center;
  282. gap: 8px;
  283. color: #FFF;
  284. font-size: 14px;
  285. font-style: normal;
  286. font-weight: 600;
  287. line-height: normal;
  288. text-transform: uppercase;
  289. background: none;
  290. cursor: pointer;
  291. }
  292. .header__btn--primary:hover {
  293. transform: translateY(-1px);
  294. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  295. }
  296. .header__btn--secondary:hover {
  297. transform: translateY(-1px);
  298. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  299. }
  300. .header__burger {
  301. display: none;
  302. flex-direction: column;
  303. justify-content: space-between;
  304. width: 30px;
  305. height: 24px;
  306. background: transparent;
  307. border: none;
  308. cursor: pointer;
  309. padding: 0;
  310. z-index: 1001;
  311. transition: transform 0.3s ease;
  312. }
  313. .header__burger:hover {
  314. transform: scale(1.1);
  315. }
  316. .header__burger-line {
  317. width: 100%;
  318. height: 3px;
  319. border-radius: 2px;
  320. transition: all 0.3s ease;
  321. }
  322. .header__burger.active .header__burger-line:nth-child(1) {
  323. transform: translateY(10.5px) rotate(45deg);
  324. }
  325. .header__burger.active .header__burger-line:nth-child(2) {
  326. opacity: 0;
  327. }
  328. .header__burger.active .header__burger-line:nth-child(3) {
  329. transform: translateY(-10.5px) rotate(-45deg);
  330. }
  331. @media (max-width: 1199px) {
  332. .header__menu {
  333. gap: 24px;
  334. }
  335. .header__btn {
  336. padding: 8px 16px;
  337. font-size: 13px;
  338. }
  339. }
  340. @media (max-width: 768px) {
  341. .header {
  342. height: 60px;
  343. }
  344. .header__logo {
  345. width: 150px;
  346. height: 35px;
  347. }
  348. .header__logo img {
  349. width: 150px;
  350. height: 35px;
  351. }
  352. .header__burger {
  353. display: flex;
  354. }
  355. .header__nav {
  356. position: fixed;
  357. top: 60px;
  358. left: 0;
  359. width: 100%;
  360. height: calc(100vh - 60px);
  361. transform: translateX(-100%);
  362. transition: transform 0.3s ease;
  363. padding: 40px 20px;
  364. overflow-y: auto;
  365. backdrop-filter: blur(10px);
  366. }
  367. .header__nav.active {
  368. transform: translateX(0);
  369. }
  370. .header__menu {
  371. flex-direction: column;
  372. align-items: flex-start;
  373. gap: 24px;
  374. }
  375. .header__menu-link {
  376. font-size: 18px;
  377. }
  378. .header__actions {
  379. gap: 8px;
  380. }
  381. .header__btn {
  382. display: none;
  383. }
  384. .header__nav.active .header__btn {
  385. display: block;
  386. width: calc(100% - 40px);
  387. margin: 0 20px 16px;
  388. }
  389. }
  390. .container {
  391. max-width: var(--container-width);
  392. width: 100%;
  393. height: 100%;
  394. margin: 0 auto;
  395. display: flex;
  396. align-items: center;
  397. justify-content: space-between;
  398. position: relative;
  399. padding: 0 16px;
  400. }
  401. button.accent-color {
  402. transition: filter 0.3s ease;
  403. }
  404. button.accent-color:hover {
  405. filter: brightness(0.85);
  406. }
  407. .main__btn {
  408. position: relative;
  409. margin: auto;
  410. }
  411. .main__btn a {
  412. display: flex;
  413. align-items: center;
  414. justify-content: center;
  415. height: 100%;
  416. width: 100%;
  417. }
  418. .bottom-btn {
  419. margin: auto;
  420. width: 200px;
  421. background: #c30054;
  422. }
  423. body {
  424. background: #fff !important;
  425. padding-top: 70px;
  426. color: #000;
  427. font-style: normal;
  428. font-weight: 400;
  429. line-height: 24px; /* 150% */
  430. }
  431. .banner {
  432. background: #000;
  433. display: flex;
  434. align-items: center;
  435. justify-content: center;
  436. }
  437. .banner__img-wrp {
  438. max-width: 1920px;
  439. margin: 0 auto;
  440. }
  441. .banner__img {
  442. display: block;
  443. width: 100%;
  444. height: 100%;
  445. -o-object-fit: cover;
  446. object-fit: cover;
  447. }
  448. .section-wrapper {
  449. padding: 32px 0;
  450. display: flex;
  451. flex-direction: column;
  452. gap: 32px;
  453. width: 100%;
  454. }
  455. @media (max-width: 768px) {
  456. .section-wrapper {
  457. gap: 24px;
  458. }
  459. }
  460. .section {
  461. padding: 32px;
  462. border-radius: 16px;
  463. border: 1px solid #E4E4E4;
  464. background: #F6F6F6;
  465. }
  466. /*# sourceMappingURL=styles.css.map */