main.css 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995
  1. /* Fonts START */
  2. @font-face {
  3. font-family: 'Roboto';
  4. src: local('Roboto Bold'), local('Roboto-Bold'),
  5. url('../fonts/Roboto-Bold.woff2') format('woff2');
  6. font-weight: 700;
  7. font-style: normal;
  8. font-display: swap;
  9. }
  10. @font-face {
  11. font-family: 'Roboto';
  12. src: local('Roboto Light'), local('Roboto-Light'),
  13. url('../fonts/Roboto-Light.woff2') format('woff2');
  14. font-weight: 300;
  15. font-style: normal;
  16. font-display: swap;
  17. }
  18. @font-face {
  19. font-family: 'Roboto';
  20. src: local('Roboto Black'), local('Roboto-Black'),
  21. url('../fonts/Roboto-Black.woff2') format('woff2');
  22. font-weight: 900;
  23. font-style: normal;
  24. font-display: swap;
  25. }
  26. @font-face {
  27. font-family: 'Roboto';
  28. src: local('Roboto Medium'), local('Roboto-Medium'),
  29. url('../fonts/Roboto-Medium.woff2') format('woff2');
  30. font-weight: 500;
  31. font-style: normal;
  32. font-display: swap;
  33. }
  34. @font-face {
  35. font-family: 'Roboto';
  36. src: local('Roboto'), local('Roboto-Regular'),
  37. url('../fonts/Roboto-Regular.woff2') format('woff2');
  38. font-weight: normal;
  39. font-style: normal;
  40. font-display: swap;
  41. }
  42. /* Fonts END */
  43. /* Global Styles START */
  44. :root {
  45. --color-def: #2a2832;
  46. --color-2: #2B2C30;
  47. --color-1: #2a2832;
  48. --color-3: #2a1832;
  49. --color-4: #171521;
  50. --color-contact: #4c4d51;
  51. }
  52. * {
  53. box-sizing: border-box;
  54. }
  55. html, body {
  56. overflow-x: hidden;
  57. }
  58. body {
  59. font-family: 'Roboto';
  60. background-color: var(--color-def);
  61. color: #fff;
  62. line-height: 1.5;
  63. margin: 0;
  64. padding: 0;
  65. min-width: 320px;
  66. position: relative;
  67. font-weight: 300;
  68. }
  69. input, label, textarea, button {
  70. font-family: 'Roboto';
  71. outline: none;
  72. }
  73. .menu-overlay {
  74. display: block;
  75. position: absolute;
  76. top: 0;
  77. left: 0;
  78. width: 100%;
  79. height: 100%;
  80. background-color: rgba(31, 29, 37, .8);
  81. z-index: 9;
  82. transition: 0.8s ease;
  83. transform: translateX(100%);
  84. }
  85. .menu-overlay__active {
  86. transform: none;
  87. }
  88. h1, h2, h3, h4, h5, h6, p {
  89. margin: 0;
  90. }
  91. p {
  92. margin-bottom: 20px;
  93. }
  94. h1 {
  95. font-size: 60px;
  96. font-weight: 300;
  97. }
  98. h2 {
  99. font-size: 24px;
  100. font-weight: 300;
  101. }
  102. .title-wrapper {
  103. margin: 0 auto 30px auto;
  104. max-width: 500px;
  105. }
  106. input, textarea, div {
  107. box-sizing: border-box;
  108. }
  109. .title {
  110. font-size: 46px;
  111. line-height: 52px;
  112. margin-bottom: 15px;
  113. text-transform: uppercase;
  114. }
  115. .subtitle {
  116. font-weight: 300;
  117. line-height: 1.6;
  118. margin-bottom: 25px;
  119. color: #bbb6b6;
  120. font-size: 18px;
  121. }
  122. a {
  123. color: #fff;
  124. text-decoration: none;
  125. }
  126. .uppercase {
  127. text-transform: uppercase;
  128. }
  129. .content {
  130. width: 100%;
  131. padding-left: 85px;
  132. }
  133. .content-inner {
  134. max-width: 1200px;
  135. margin: 0 auto;
  136. }
  137. /* ====== Zoom effect ====== */
  138. .mfp-zoom-in {
  139. /* start state */
  140. /* animate in */
  141. /* animate out */
  142. }
  143. .mfp-zoom-in .mfp-with-anim {
  144. opacity: 0;
  145. transition: all 0.2s ease-in-out;
  146. transform: scale(0.8);
  147. }
  148. .mfp-zoom-in.mfp-bg {
  149. opacity: 0;
  150. transition: all 0.3s ease-out;
  151. }
  152. .mfp-zoom-in.mfp-ready .mfp-with-anim {
  153. opacity: 1;
  154. transform: scale(1);
  155. }
  156. .mfp-zoom-in.mfp-ready.mfp-bg {
  157. opacity: 0.8;
  158. }
  159. .mfp-zoom-in.mfp-removing .mfp-with-anim {
  160. transform: scale(0.8);
  161. opacity: 0;
  162. }
  163. .mfp-zoom-in.mfp-removing.mfp-bg {
  164. opacity: 0;
  165. }
  166. /* ====== Newspaper effect ====== */
  167. .mfp-newspaper {
  168. /* start state */
  169. /* animate in */
  170. /* animate out */
  171. }
  172. .mfp-newspaper .mfp-with-anim {
  173. opacity: 0;
  174. -webkit-transition: all 0.2s ease-in-out;
  175. transition: all 0.5s;
  176. transform: scale(0) rotate(500deg);
  177. }
  178. .mfp-newspaper.mfp-bg {
  179. opacity: 0;
  180. transition: all 0.5s;
  181. }
  182. .mfp-newspaper.mfp-ready .mfp-with-anim {
  183. opacity: 1;
  184. transform: scale(1) rotate(0deg);
  185. }
  186. .mfp-newspaper.mfp-ready.mfp-bg {
  187. opacity: 0.8;
  188. }
  189. .mfp-newspaper.mfp-removing .mfp-with-anim {
  190. transform: scale(0) rotate(500deg);
  191. opacity: 0;
  192. }
  193. .mfp-newspaper.mfp-removing.mfp-bg {
  194. opacity: 0;
  195. }
  196. /* ====== Move-horizontal effect ====== */
  197. .mfp-move-horizontal {
  198. /* start state */
  199. /* animate in */
  200. /* animate out */
  201. }
  202. .mfp-move-horizontal .mfp-with-anim {
  203. opacity: 0;
  204. transition: all 0.3s;
  205. transform: translateX(-50px);
  206. }
  207. .mfp-move-horizontal.mfp-bg {
  208. opacity: 0;
  209. transition: all 0.3s;
  210. }
  211. .mfp-move-horizontal.mfp-ready .mfp-with-anim {
  212. opacity: 1;
  213. transform: translateX(0);
  214. }
  215. .mfp-move-horizontal.mfp-ready.mfp-bg {
  216. opacity: 0.8;
  217. }
  218. .mfp-move-horizontal.mfp-removing .mfp-with-anim {
  219. transform: translateX(50px);
  220. opacity: 0;
  221. }
  222. .mfp-move-horizontal.mfp-removing.mfp-bg {
  223. opacity: 0;
  224. }
  225. /* ====== Move-from-top effect ====== */
  226. .mfp-move-from-top {
  227. /* start state */
  228. /* animate in */
  229. /* animate out */
  230. }
  231. .mfp-move-from-top .mfp-content {
  232. vertical-align: top;
  233. }
  234. .mfp-move-from-top .mfp-with-anim {
  235. opacity: 0;
  236. transition: all 0.2s;
  237. transform: translateY(-100px);
  238. }
  239. .mfp-move-from-top.mfp-bg {
  240. opacity: 0;
  241. transition: all 0.2s;
  242. }
  243. .mfp-move-from-top.mfp-ready .mfp-with-anim {
  244. opacity: 1;
  245. transform: translateY(0);
  246. }
  247. .mfp-move-from-top.mfp-ready.mfp-bg {
  248. opacity: 0.8;
  249. }
  250. .mfp-move-from-top.mfp-removing .mfp-with-anim {
  251. transform: translateY(-50px);
  252. opacity: 0;
  253. }
  254. .mfp-move-from-top.mfp-removing.mfp-bg {
  255. opacity: 0;
  256. }
  257. /* ====== 3d unfold ====== */
  258. .mfp-3d-unfold {
  259. /* start state */
  260. /* animate in */
  261. /* animate out */
  262. }
  263. .mfp-3d-unfold .mfp-content {
  264. perspective: 2000px;
  265. }
  266. .mfp-3d-unfold .mfp-with-anim {
  267. opacity: 0;
  268. transition: all 0.3s ease-in-out;
  269. transform-style: preserve-3d;
  270. transform: rotateY(-60deg);
  271. }
  272. .mfp-3d-unfold.mfp-bg {
  273. opacity: 0;
  274. transition: all 0.5s;
  275. }
  276. .mfp-3d-unfold.mfp-ready .mfp-with-anim {
  277. opacity: 1;
  278. transform: rotateY(0deg);
  279. }
  280. .mfp-3d-unfold.mfp-ready.mfp-bg {
  281. opacity: 0.8;
  282. }
  283. .mfp-3d-unfold.mfp-removing .mfp-with-anim {
  284. transform: rotateY(60deg);
  285. opacity: 0;
  286. }
  287. .mfp-3d-unfold.mfp-removing.mfp-bg {
  288. opacity: 0;
  289. }
  290. /* ====== Zoom-out effect ====== */
  291. .mfp-zoom-out {
  292. /* start state */
  293. /* animate in */
  294. /* animate out */
  295. }
  296. .mfp-zoom-out .mfp-with-anim {
  297. opacity: 0;
  298. transition: all 0.3s ease-in-out;
  299. transform: scale(1.3);
  300. }
  301. .mfp-zoom-out.mfp-bg {
  302. opacity: 0;
  303. transition: all 0.3s ease-out;
  304. }
  305. .mfp-zoom-out.mfp-ready .mfp-with-anim {
  306. opacity: 1;
  307. transform: scale(1);
  308. }
  309. .mfp-zoom-out.mfp-ready.mfp-bg {
  310. opacity: 0.8;
  311. }
  312. .mfp-zoom-out.mfp-removing .mfp-with-anim {
  313. transform: scale(1.3);
  314. opacity: 0;
  315. }
  316. .mfp-zoom-out.mfp-removing.mfp-bg {
  317. opacity: 0;
  318. }
  319. .mfp-with-fade .mfp-content, .mfp-with-fade.mfp-bg {
  320. opacity: 0;
  321. transition: opacity .5s ease-out;
  322. }
  323. .mfp-with-fade.mfp-ready .mfp-content {
  324. opacity: 1;
  325. }
  326. .mfp-with-fade.mfp-ready.mfp-bg {
  327. opacity: 0.8;
  328. }
  329. .mfp-with-fade.mfp-removing.mfp-bg {
  330. opacity: 0;
  331. }
  332. .text-center {
  333. text-align: center;
  334. }
  335. .color-white {
  336. color: #fff;
  337. }
  338. .prz-custom-cursor {
  339. background-repeat: no-repeat;
  340. background-size: contain;
  341. }
  342. .wow {
  343. animation-duration: 1.5s;
  344. }
  345. /* Global Styles END */
  346. /* Settings START */
  347. .settings-wrap {
  348. position: fixed;
  349. top: 50%;
  350. transform: translateY(-50%) translateX(calc(100% - 50px));
  351. right: 0;
  352. z-index: 15;
  353. display: flex;
  354. align-items: center;
  355. transition: 0.5s ease;
  356. }
  357. .settings-wrap.is-active {
  358. transform: translateY(-50%);
  359. }
  360. .settings-btn {
  361. color: var(--color-1);
  362. background-color: #fff;
  363. display: flex;
  364. justify-content: center;
  365. align-items: center;
  366. width: 50px;
  367. height: 50px;
  368. cursor: pointer;
  369. font-size: 22px;
  370. }
  371. .settings-btn i {
  372. animation: rotate 7s linear infinite;
  373. }
  374. @keyframes rotate {
  375. from {
  376. transform: rotate(0deg);
  377. }
  378. to {
  379. transform: rotate(360deg);
  380. }
  381. }
  382. .settings-content {
  383. background-color: #413f4b;
  384. color: #fff;
  385. min-width: 300px;
  386. padding: 30px 20px;
  387. }
  388. .settings-title {
  389. font-size: 18px;
  390. font-weight: 700;
  391. margin-bottom: 10px;
  392. }
  393. .settings-color-wrap {
  394. display: flex;
  395. column-gap: 10px;
  396. }
  397. .settings-color-item {
  398. width: 30px;
  399. height: 30px;
  400. display: inline-block;
  401. cursor: pointer;
  402. border: 1px solid #fff;
  403. }
  404. .settings-color-item.color-1 {
  405. background-color: var(--color-1);
  406. }
  407. .settings-color-item.color-2 {
  408. background-color: var(--color-2);
  409. }
  410. .settings-color-item.color-3 {
  411. background-color: var(--color-3);
  412. }
  413. .settings-color-item.color-4 {
  414. background-color: var(--color-4);
  415. }
  416. /* Settings END */
  417. /* Sidebar START */
  418. .sidebar-logo {
  419. position: absolute;
  420. top: 30px;
  421. left: 50px;
  422. z-index: 1;
  423. }
  424. .sidebar-logo img {
  425. max-width: 47px;
  426. }
  427. .menu-wrap {
  428. position: fixed;
  429. left: 0;
  430. top: 0;
  431. height: 100%;
  432. background-color: #8e9093;
  433. box-shadow: 0px 0px 15.3px 1.7px rgba(0, 0, 0, 0.34);
  434. z-index: 11;
  435. transition: 0.5s ease;
  436. transform: translateX(-100%);
  437. overflow-y: auto;
  438. -ms-overflow-style: none;
  439. scrollbar-width: none
  440. }
  441. .menu-nav {
  442. padding: 50px;
  443. padding-top: 200px;
  444. transition: 0.5s ease;
  445. opacity: 0;
  446. transform: translateX(-100%);
  447. z-index: 0;
  448. position: relative;
  449. }
  450. @media screen and (min-height: 610px) {
  451. .menu-nav {
  452. height: 100%;
  453. }
  454. }
  455. .menu-nav::before {
  456. content: '';
  457. display: block;
  458. position: absolute;
  459. top: 0;
  460. left: 0;
  461. width: 100%;
  462. height: 100%;
  463. background-color: var(--color-def);
  464. transition: 0.8s ease;
  465. transform: translateX(-100%);
  466. z-index: -1;
  467. }
  468. .menu-nav ul {
  469. padding: 0;
  470. margin: 0;
  471. }
  472. .menu-nav ul li {
  473. list-style-type: none;
  474. }
  475. .menu-nav ul li:nth-last-child(n+1) a {
  476. margin-bottom: 25px;
  477. }
  478. .menu-nav ul a {
  479. text-transform: uppercase;
  480. text-decoration: none;
  481. font-weight: 300;
  482. font-size: 20px;
  483. display: block;
  484. letter-spacing: 2px;
  485. position: relative;
  486. transition: 0.5s ease;
  487. }
  488. .menu-nav ul a:hover {
  489. transform: translateX(15px);
  490. }
  491. .menu-nav ul a:hover:before {
  492. opacity: 1;
  493. }
  494. .menu-nav ul a::before {
  495. content: '\f054';
  496. font: normal normal normal 15px/1 "FontAwesome";
  497. display: inline-block;
  498. transition: 0.5s ease;
  499. opacity: 0;
  500. margin-left: -15px;
  501. position: absolute;
  502. left: -15px;
  503. top: 50%;
  504. transform: translateY(-50%);
  505. }
  506. .menu-nav .menu-contacts {
  507. margin-top: 50px;
  508. }
  509. .menu-nav .menu-contacts .menu-contacts__item {
  510. display: flex;
  511. align-items: center;
  512. font-size: 16px;
  513. letter-spacing: 0;
  514. color: #fff;
  515. opacity: 0.5;
  516. transition: opacity 0.8s ease;
  517. }
  518. .menu-nav .menu-contacts .menu-contacts__item:hover {
  519. opacity: 1;
  520. }
  521. .menu-nav .menu-contacts .menu-contacts__icon {
  522. display: inline-block;
  523. margin-right: 15px;
  524. min-width: 20px;
  525. text-align: center;
  526. }
  527. .menu-nav .menu-contacts .menu-contacts__icon i {
  528. display: inline-block;
  529. font-size: 20px;
  530. }
  531. .menu-nav .menu-contacts .menu-contacts__item p {
  532. margin-bottom: 0;
  533. }
  534. .menu-nav .menu-contacts .menu-contacts__item:nth-last-child(n+2) {
  535. margin-bottom: 25px;
  536. }
  537. .menu-nav .menu-social {
  538. display: flex;
  539. column-gap: 10px;
  540. margin-top: 50px;
  541. margin-left: -10px;
  542. }
  543. .menu-nav .menu-social a {
  544. font-size: 24px;
  545. display: flex;
  546. flex-direction: column;
  547. align-items: center;
  548. justify-content: center;
  549. color: rgba(255, 255, 255, 0.7);
  550. transition: 0.7s ease;
  551. border: 2px solid transparent;
  552. width: 40px;
  553. height: 40px;
  554. border-radius: 50%;
  555. }
  556. .menu-nav .menu-social a i {
  557. font-size: 18px;
  558. }
  559. .menu-nav .menu-social a:hover {
  560. color: #fff;
  561. border: 2px solid #fff;
  562. }
  563. .menu-close__wrap {
  564. margin-top: 30px;
  565. }
  566. .menu-close {
  567. display: flex;
  568. flex-direction: column;
  569. justify-content: center;
  570. height: 50px;
  571. width: 70px;
  572. position: relative;
  573. }
  574. .menu-close:hover img {
  575. margin-left: -20px;
  576. }
  577. .menu-close img {
  578. width: 40px;
  579. transition: 0.5s ease;
  580. }
  581. .menu-active {
  582. transform: none;
  583. }
  584. .menu-item-active {
  585. opacity: 1;
  586. transform: none;
  587. }
  588. .menu-item-active::before {
  589. transform: none;
  590. }
  591. .def-row {
  592. display: flex;
  593. }
  594. .sidebar {
  595. position: absolute;
  596. left: 0;
  597. top: 0;
  598. z-index: 9;
  599. background-color: var(--color-def);
  600. height: 100%;
  601. padding: 30px 20px;
  602. }
  603. .sidebar .logo {
  604. display: block;
  605. }
  606. .sidebar .logo img {
  607. width: 47px;
  608. display: block;
  609. }
  610. .sidebar .hamburger-button {
  611. display: block;
  612. position: fixed;
  613. top: 50%;
  614. transform: translateY(-50%);
  615. width: 42px;
  616. }
  617. .sidebar .hamburger-button:hover span:nth-child(1) {
  618. width: 22px;
  619. }
  620. .sidebar .hamburger-button:hover span:nth-child(2) {
  621. width: 32px;
  622. }
  623. .sidebar .hamburger-button:hover span:nth-child(3) {
  624. width: 42px;
  625. }
  626. .sidebar .hamburger-button span {
  627. display: block;
  628. height: 1px;
  629. background-color: #fff;
  630. }
  631. .sidebar .hamburger-button span:nth-last-child(n+2) {
  632. margin-bottom: 10px;
  633. }
  634. .sidebar .hamburger-button span:nth-child(1) {
  635. width: 42px;
  636. transition: 0.3s ease;
  637. }
  638. .sidebar .hamburger-button span:nth-child(2) {
  639. width: 32px;
  640. }
  641. .sidebar .hamburger-button span:nth-child(3) {
  642. width: 22px;
  643. transition: 0.5s ease;
  644. }
  645. /* Sidebar END */
  646. /* Banner START */
  647. .prelodaer-wrap {
  648. position: fixed;
  649. top: 0;
  650. left: 0;
  651. width: 100%;
  652. height: 100%;
  653. background-color: #8e9093;
  654. z-index: 99;
  655. animation: preloader 1.8s 3s ease forwards;
  656. }
  657. .preloader-item {
  658. display: flex;
  659. justify-content: center;
  660. align-items: center;
  661. height: 100%;
  662. position: relative;
  663. z-index: 0;
  664. }
  665. .preloader-item::after {
  666. content: '';
  667. display: block;
  668. position: absolute;
  669. top: 0;
  670. left: 0;
  671. width: 100%;
  672. height: 100%;
  673. background-color: var(--color-def);
  674. transform: translateX(100%);
  675. animation: overlay 2s 0.1s ease forwards;
  676. z-index: -1;
  677. }
  678. .preloader-item img {
  679. max-width: 120px;
  680. display: block;
  681. transform: translateX(100%);
  682. opacity: 0;
  683. animation: overlay 2s 0.5s ease forwards;
  684. }
  685. @keyframes overlay {
  686. from {
  687. transform: translateX(100%);
  688. opacity: 0;
  689. }
  690. to {
  691. transform: none;
  692. opacity: 1;
  693. }
  694. }
  695. @keyframes img {
  696. from {
  697. transform: translateX(100%);
  698. }
  699. to {
  700. transform: none;
  701. }
  702. }
  703. @keyframes preloader {
  704. from {
  705. transform: translateX(0);
  706. }
  707. to {
  708. transform: translateX(-100%);
  709. }
  710. }
  711. .home {
  712. height: 100vh;
  713. }
  714. .swiper-banner .swiper-slide {
  715. padding: 70px 70px 70px 0;
  716. }
  717. .banner-item {
  718. height: calc(100vh - 140px);
  719. padding: 150px 70px 70px 70px;
  720. display: flex;
  721. flex-direction: column;
  722. justify-content: center;
  723. position: relative;
  724. z-index: 0;
  725. background-repeat: no-repeat;
  726. background-size: cover;
  727. box-shadow: 0px 4px 4px rgba(34, 32, 32, 0.1);
  728. }
  729. .banner-item::before {
  730. content: '';
  731. display: block;
  732. position: absolute;
  733. top: 0;
  734. left: 0;
  735. width: 100%;
  736. height: 100%;
  737. background-color: rgba(65, 54, 54, 0.5);
  738. z-index: -1;
  739. }
  740. .banner-content {
  741. max-width: 650px;
  742. }
  743. .banner-title-mini {
  744. font-size: 14px;
  745. display: inline-block;
  746. margin-bottom: 10px;
  747. }
  748. .banner-title-mini::before {
  749. content: '';
  750. display: inline-block;
  751. height: 1px;
  752. width: 30px;
  753. background-color: #fff;
  754. margin-right: 20px;
  755. vertical-align: middle;
  756. }
  757. .banner-title {
  758. font-size: 45px;
  759. line-height: 55px;
  760. font-weight: 700;
  761. margin-bottom: 20px;
  762. }
  763. .banner-desc {
  764. color: #f0eded;
  765. font-size: 16px;
  766. line-height: 24px;
  767. max-width: 550px;
  768. }
  769. .animeslide-slide.swiper-slide-active [data-animate] {
  770. opacity: 1;
  771. transform: none;
  772. }
  773. .animeslide-slide.swiper-slide-active .banner-title-mini {
  774. transition-delay: 0.3s;
  775. }
  776. .animeslide-slide.swiper-slide-active .banner-title {
  777. transition-delay: 0.6s;
  778. }
  779. .animeslide-slide.swiper-slide-active .banner-desc {
  780. transition-delay: 0.9s;
  781. }
  782. .animeslide-slide.swiper-slide-active .banner-btn {
  783. transition-delay: 1.2s;
  784. }
  785. .animeslide-slide.swiper-slide-active .banner-right img {
  786. transition-delay: 1.6s;
  787. }
  788. .animeslide-slide.swiper-slide-active .banner-right::before {
  789. transition-delay: 1.8s;
  790. transition-duration: 0.8s;
  791. opacity: 1;
  792. }
  793. [data-animate] {
  794. opacity: 0;
  795. transition: all 0.8s ease-out;
  796. }
  797. [data-animate="bottom"] {
  798. transform: translate3d(0, 15px, 0);
  799. }
  800. .banner-nav-wrap {
  801. background-color: var(--color-def);
  802. display: flex;
  803. align-items: center;
  804. column-gap: 20px;
  805. position: absolute;
  806. bottom: 70px;
  807. right: 70px;
  808. z-index: 1;
  809. height: 60px;
  810. width: 400px;
  811. padding: 0 20px;
  812. }
  813. .banner-btn a {}
  814. .swiper-banner .swiper-button-next, .swiper-rtl .swiper-button-prev,
  815. .swiper-banner .swiper-button-prev, .swiper-rtl .swiper-button-next,
  816. .swiper-banner .swiper-scrollbar {
  817. color: #fff;
  818. position: static;
  819. margin: 0;
  820. }
  821. .swiper-banner .swiper-button-next::after, .swiper-rtl .swiper-button-prev::after,
  822. .swiper-banner .swiper-button-prev::after, .swiper-rtl .swiper-button-next::after {
  823. font-size: 22px !important;
  824. }
  825. .swiper-banner .swiper-scrollbar-drag {
  826. background-color: #c5c5ca;
  827. }
  828. /* Banner END */
  829. /* Contact page START */
  830. .contact-title {
  831. max-width: 600px;
  832. margin: 0 auto;
  833. }
  834. .contact-content {
  835. padding: 100px 0 100px 88px;
  836. min-height: 100vh;
  837. position: relative;
  838. z-index: 0;
  839. background-size: cover;
  840. background-repeat: no-repeat;
  841. display: flex;
  842. align-items: center;
  843. }
  844. .contact-content::before {
  845. content: '';
  846. position: absolute;
  847. top: 0;
  848. left: 0;
  849. width: 100%;
  850. height: 100%;
  851. z-index: -1;
  852. background-color: var(--color-def);
  853. opacity: 0.7;
  854. }
  855. .contact-content .title-center {
  856. max-width: 700px;
  857. margin: 0 auto 50px auto;
  858. }
  859. .contact-row {
  860. display: flex;
  861. align-items: center;
  862. justify-content: center;
  863. column-gap: 40px;
  864. }
  865. .s-contact .left {
  866. padding: 60px 40px 40px 40px;
  867. background-color: #333335;
  868. width: 400px;
  869. font-weight: 300;
  870. }
  871. .s-contact .left label,
  872. .s-contact .left input,
  873. .s-contact .left textarea {
  874. display: block;
  875. font-size: 16px;
  876. color: #fff;
  877. font-weight: 300;
  878. transition: 0.35s ease;
  879. }
  880. .s-contact .left input,
  881. .s-contact .left textarea {
  882. background-color: transparent;
  883. border: 1px solid #797a7d;
  884. padding: 10px 20px;
  885. width: 100%;
  886. margin-bottom: 10px;
  887. }
  888. .s-contact .left label {
  889. background-color: #3c3a3a;
  890. display: inline-block;
  891. position: absolute;
  892. top: -10px;
  893. left: 10px;
  894. padding-left: 10px;
  895. padding-right: 10px;
  896. transition: 0.5s ease;
  897. color: #bab9b9;
  898. font-size: 14px;
  899. }
  900. .input-field {
  901. position: relative;
  902. margin-bottom: 30px;
  903. }
  904. .input-field:hover input,
  905. .input-field:hover textarea {
  906. border-color: #fff;
  907. }
  908. .input-field:hover label {
  909. color: #fff;
  910. }
  911. .input-field input:focus,
  912. .input-field textarea:focus {
  913. border-color: #fff;
  914. }
  915. .input-field input:focus ~ label,
  916. .input-field textarea:focus ~ label {
  917. color: #fff;
  918. }
  919. .input-field.is-active label {
  920. color: #fff;
  921. }
  922. .input-field.is-active input,
  923. .input-field.is-active textarea {
  924. border-color: #fff;
  925. }
  926. .s-contact .button-field {
  927. text-align: center;
  928. }
  929. .s-contact .left button {
  930. background-color: #707174;
  931. color: #fff;
  932. border: none;
  933. display: inline-block;
  934. font-weight: 300;
  935. padding: 15px 50px;
  936. font-size: 16px;
  937. text-transform: uppercase;
  938. font-weight: 300;
  939. cursor: pointer;
  940. overflow: hidden;
  941. position: relative;
  942. z-index: 0;
  943. transition: 0.5s ease;
  944. }
  945. .s-contact .left button:hover::after {
  946. transform: none;
  947. }
  948. .s-contact .left button::after {
  949. content: '';
  950. display: block;
  951. position: absolute;
  952. background-color: #636467;
  953. top: 0;
  954. left: 0;
  955. width: 100%;
  956. height: 100%;
  957. z-index: -1;
  958. transition: 0.5s ease;
  959. transform: translateY(-100%);
  960. }
  961. .contact-info-item {
  962. display: flex;
  963. font-size: 18px;
  964. margin-bottom: 20px;
  965. }
  966. .contact-info-title {
  967. font-size: 20px;
  968. font-weight: 400;
  969. margin-bottom: 5px;
  970. }
  971. .contact-info-icon {
  972. margin-right: 15px;
  973. min-width: 24px;
  974. text-align: center;
  975. font-size: 20px;
  976. }
  977. .contact-social {
  978. margin-top: 50px;
  979. }
  980. .contact-social-title {
  981. margin-bottom: 15px;
  982. font-size: 20px;
  983. font-weight: 400;
  984. }
  985. .contact-social-row {
  986. display: flex;
  987. column-gap: 10px;
  988. margin-left: -10px;
  989. }
  990. .contact-social-row a {
  991. font-size: 24px;
  992. display: flex;
  993. flex-direction: column;
  994. align-items: center;
  995. justify-content: center;
  996. color: rgba(255, 255, 255, 0.7);
  997. transition: 0.7s ease;
  998. border: 2px solid transparent;
  999. width: 40px;
  1000. height: 40px;
  1001. border-radius: 50%;
  1002. }
  1003. .contact-social-row a i {
  1004. font-size: 18px;
  1005. }
  1006. .contact-social-row a:hover {
  1007. color: #fff;
  1008. border: 2px solid #fff;
  1009. }
  1010. .mfp-bg {
  1011. opacity: .6;
  1012. }
  1013. .form-alert {
  1014. max-width: 370px;
  1015. margin: auto;
  1016. text-align: center;
  1017. background: #39393c;
  1018. padding: 50px 30px;
  1019. position: relative;
  1020. }
  1021. .form-alert p {
  1022. margin-bottom: 0;
  1023. }
  1024. .mfp-close-btn-in .mfp-close {
  1025. color: #fff !important;
  1026. }
  1027. /* Contact page END */
  1028. /* Album START */
  1029. .gallery-content {
  1030. min-height: 1000px;
  1031. overflow: hidden;
  1032. }
  1033. .grid-album {
  1034. display: none;
  1035. }
  1036. .grid-album.is-active {
  1037. display: block;
  1038. }
  1039. .album-tab {
  1040. display: flex;
  1041. justify-content: center;
  1042. flex-wrap: wrap;
  1043. column-gap: 15px;
  1044. margin-bottom: 30px;
  1045. }
  1046. .album-tab a {
  1047. border: 2px solid rgba(255, 255, 255, 0.7);
  1048. border-radius: 30px;
  1049. display: inline-block;
  1050. padding: 5px 25px;
  1051. transition: 0.5s ease;
  1052. margin-bottom: 15px;
  1053. }
  1054. .album-tab a:hover {
  1055. background-color: #fff;
  1056. color: #000;
  1057. }
  1058. .album-tab a.is-active {
  1059. background-color: #fff;
  1060. color: #000;
  1061. font-weight: 500;
  1062. }
  1063. .album-item a:hover .album-thumb img {
  1064. transform: scale(1.1);
  1065. }
  1066. .album-thumb {
  1067. margin-bottom: 10px;
  1068. overflow: hidden;
  1069. }
  1070. .album-thumb img {
  1071. width: 100%;
  1072. height: 100%;
  1073. display: block;
  1074. transition: transform 1s ease;
  1075. }
  1076. .album-name {
  1077. font-size: 22px;
  1078. font-weight: 500;
  1079. margin-bottom: 5px;
  1080. }
  1081. .album-desc {
  1082. color: #c8c6c6;
  1083. margin-bottom: 20px;
  1084. }
  1085. .grid-album::after {
  1086. content: '';
  1087. display: block;
  1088. clear: both;
  1089. }
  1090. .grid-album .grid-sizer,
  1091. .grid-album .grid-item {
  1092. width: calc(33% - 15px);
  1093. margin-bottom: 15px;
  1094. }
  1095. .grid-album .grid-item {
  1096. float: left;
  1097. z-index: 0;
  1098. overflow: hidden;
  1099. }
  1100. /* Album END */
  1101. /* Gallery START */
  1102. .grid-single {
  1103. border-bottom: 1px solid #464545;
  1104. padding-bottom: 50px;
  1105. }
  1106. .grid-single::after {
  1107. content: '';
  1108. display: block;
  1109. clear: both;
  1110. }
  1111. .grid-single .grid-sizer,
  1112. .grid-single .grid-item {
  1113. width: calc(25% - 15px);
  1114. margin-bottom: 15px;
  1115. }
  1116. .grid-single .grid-item {
  1117. float: left;
  1118. z-index: 0;
  1119. overflow: hidden;
  1120. }
  1121. .grid-single .grid-item:hover a::before,
  1122. .grid-single .grid-item:hover a::after {
  1123. opacity: 1;
  1124. }
  1125. .grid-single .grid-item img {
  1126. display: block;
  1127. width: 100%;
  1128. transition: 0.35s ease;
  1129. }
  1130. .gallery-wrap {
  1131. margin-left: 100px;
  1132. padding: 50px 0;
  1133. }
  1134. .gallery-wrap .def-title-wrapper {
  1135. text-align: center;
  1136. }
  1137. .b-lazy {
  1138. -webkit-transition: opacity 500ms ease-in-out;
  1139. -moz-transition: opacity 500ms ease-in-out;
  1140. -o-transition: opacity 500ms ease-in-out;
  1141. transition: opacity 500ms ease-in-out;
  1142. max-width: 100%;
  1143. opacity: 0;
  1144. }
  1145. .b-lazy.b-loaded {
  1146. opacity: 1;
  1147. }
  1148. .grid-nav-wrap {
  1149. display: flex;
  1150. justify-content: center;
  1151. align-items: center;
  1152. margin-top: 35px;
  1153. column-gap: 30px;
  1154. }
  1155. .grid-nav-wrap a {
  1156. display: inline-block;
  1157. padding: 10px 25px;
  1158. background-color: #383636;
  1159. font-weight: 300;
  1160. font-size: 16px;
  1161. transition: background-color 0.35s ease;
  1162. vertical-align: middle;
  1163. }
  1164. .grid-nav-wrap a:hover {
  1165. background-color: #545050;
  1166. }
  1167. /* Gallery END */
  1168. /* About page START */
  1169. .about-content {
  1170. padding: 60px 0 100px 100px;
  1171. position: relative;
  1172. z-index: 0;
  1173. background-size: cover;
  1174. background-repeat: no-repeat;
  1175. }
  1176. .about-content::before {
  1177. content: '';
  1178. position: absolute;
  1179. top: 0;
  1180. left: 0;
  1181. width: 100%;
  1182. height: 100%;
  1183. z-index: -1;
  1184. background-color: var(--color-def);
  1185. opacity: 0.8;
  1186. }
  1187. .about-content .content-inner {
  1188. max-width: 1000px;
  1189. padding: 0 20px;
  1190. }
  1191. .s-about .sub-title {
  1192. font-size: 18px;
  1193. margin-bottom: 15px;
  1194. font-weight: 500;
  1195. }
  1196. .about-desc {
  1197. line-height: 1.7;
  1198. }
  1199. .about-desc {
  1200. color: #ccc9c9;
  1201. }
  1202. .about-content .left-avatar {
  1203. height: 500px;
  1204. overflow: hidden;
  1205. margin-bottom: 30px;
  1206. }
  1207. .about-content .right {
  1208. max-width: 800px;
  1209. }
  1210. .about-content .left img {
  1211. width: 100%;
  1212. height: 100%;
  1213. object-fit: cover;
  1214. display: block;
  1215. }
  1216. .link-portfolio {
  1217. display: flex;
  1218. align-items: center;
  1219. font-weight: 300;
  1220. margin-top: 40px;
  1221. border-left: 1px solid #fff;
  1222. padding-left: 10px;
  1223. padding-top: 10px;
  1224. padding-bottom: 10px;
  1225. position: relative;
  1226. width: 200px;
  1227. overflow: hidden;
  1228. }
  1229. .link-portfolio:hover img {
  1230. transform: translateX(40%);
  1231. }
  1232. .link-portfolio:hover::before, .link-portfolio:hover::after {
  1233. width: 100%;
  1234. }
  1235. .link-portfolio:hover .right-border {
  1236. height: 100%;
  1237. }
  1238. .link-portfolio img {
  1239. margin-left: 15px;
  1240. width: 35px;
  1241. transition: 0.5s ease;
  1242. }
  1243. .link-portfolio::before, .link-portfolio::after {
  1244. content: '';
  1245. display: block;
  1246. position: absolute;
  1247. transition: 0.5s ease;
  1248. height: 1px;
  1249. width: 0;
  1250. background-color: #fff;
  1251. }
  1252. .link-portfolio::before {
  1253. top: 0;
  1254. left: 0;
  1255. }
  1256. .link-portfolio::after {
  1257. bottom: 0;
  1258. right: 0;
  1259. }
  1260. .link-portfolio .right-border {
  1261. display: block;
  1262. position: absolute;
  1263. transition: 0.5s ease;
  1264. height: 0;
  1265. width: 1px;
  1266. background-color: #fff;
  1267. right: 0;
  1268. bottom: 0;
  1269. }
  1270. /* About page END */
  1271. /* Footer START */
  1272. .site-footer {
  1273. padding: 20px 20px 20px 110px;
  1274. background-color: var(--color-def);
  1275. filter: brightness(0.9)
  1276. }
  1277. .footer-copyright {
  1278. text-align: center;
  1279. color: #bab7b7;
  1280. }
  1281. /* Footer END */
  1282. /* Responsive START */
  1283. @media screen and (max-width: 1024px) {
  1284. .container-full {
  1285. padding: 0 20px;
  1286. }
  1287. .grid-single .grid-sizer,
  1288. .grid-single .grid-item {
  1289. width: calc(33% - 15px);
  1290. }
  1291. }
  1292. @media screen and (max-width: 992px) {
  1293. /* Sidebar 992 START */
  1294. .menu-nav {
  1295. padding-top: 120px;
  1296. }
  1297. /* Sidebar 992 END */
  1298. /* Banner 992 START */
  1299. .swiper-banner .swiper-slide {
  1300. padding: 30px 30px 30px 0;
  1301. }
  1302. .banner-item {
  1303. padding: 150px 50px 70px 50px;
  1304. height: auto;
  1305. }
  1306. .banner-nav-wrap {
  1307. bottom: 30px;
  1308. right: 30px;
  1309. }
  1310. /* Banner 992 END */
  1311. /* About 992 START */
  1312. .about-content {
  1313. padding: 40px 0 100px 100px;
  1314. }
  1315. /* About 992 END */
  1316. /* Contact page 992 START */
  1317. .contact-row {
  1318. flex-direction: column;
  1319. }
  1320. .s-contact .left {
  1321. margin-bottom: 30px;
  1322. }
  1323. /* Contact page 992 END */
  1324. }
  1325. @media screen and (max-width: 768px) {
  1326. /* Sidebar 768 START */
  1327. .sidebar {
  1328. height: auto;
  1329. width: 100%;
  1330. padding: 10px 20px;
  1331. display: flex;
  1332. justify-content: space-between;
  1333. align-items: center;
  1334. }
  1335. .sidebar .hamburger-button {
  1336. top: 0;
  1337. right: 0;
  1338. transform: none;
  1339. position: static;
  1340. }
  1341. .sidebar .logo {
  1342. position: static;
  1343. }
  1344. .content {
  1345. padding-left: 0;
  1346. margin-top: 52px;
  1347. }
  1348. /* Sidebar 768 END */
  1349. /* Banner 768 START */
  1350. .swiper-banner .swiper-slide {
  1351. padding: 0;
  1352. }
  1353. .banner-nav-wrap {
  1354. bottom: 0;
  1355. right: 0;
  1356. }
  1357. .banner-title {
  1358. font-size: 32px;
  1359. line-height: 42px;
  1360. }
  1361. .banner-item {
  1362. padding: 100px 40px 150px 40px;
  1363. height: calc(100vh - 52px);
  1364. background-position: center center;
  1365. }
  1366. /* Banner 768 END */
  1367. /* Album 768 START */
  1368. .gallery-wrap {
  1369. margin-left: 0;
  1370. }
  1371. .gallery-wrap .content-inner {
  1372. padding: 0 40px;
  1373. }
  1374. .grid-album .grid-sizer,
  1375. .grid-album .grid-item {
  1376. width: calc(50% - 10px);
  1377. }
  1378. /* Album 768 END */
  1379. /* Contact page 768 START */
  1380. .contact-content {
  1381. padding: 100px 40px;
  1382. }
  1383. /* Contact page 768 END */
  1384. /* Footer 768 START */
  1385. .site-footer {
  1386. padding: 20px;
  1387. }
  1388. .footer-copyright {
  1389. font-size: 14px;
  1390. }
  1391. /* Footer 768 END */
  1392. }
  1393. @media screen and (max-width: 575px) {
  1394. /* Global 575 START */
  1395. .title {
  1396. font-size: 40px;
  1397. margin-bottom: 10px;
  1398. }
  1399. .subtitle {
  1400. font-size: 16px;
  1401. }
  1402. .preloader-item img {
  1403. max-width: 80px;
  1404. }
  1405. /* Global 575 END */
  1406. .grid-single .grid-sizer,
  1407. .grid-single .grid-item {
  1408. width: calc(50% - 10px);
  1409. margin-bottom: 10px;
  1410. }
  1411. /* About 575 START */
  1412. .about-content .left-avatar {
  1413. height: 340px;
  1414. }
  1415. /* About 575 END */
  1416. /* Album 575 START */
  1417. .gallery-wrap .content-inner {
  1418. padding: 0 20px;
  1419. }
  1420. .grid-album .grid-sizer,
  1421. .grid-album .grid-item {
  1422. width: 100%;
  1423. }
  1424. /* Album 575 END */
  1425. /* Gallery single 575 START */
  1426. .grid-single {
  1427. padding-bottom: 50px;
  1428. }
  1429. /* Gallery single 575 END */
  1430. /* Contact page 575 START */
  1431. .contact-content {
  1432. padding: 110px 20px 50px 20px;
  1433. }
  1434. .s-contact .left {
  1435. width: 100%;
  1436. max-width: 400px;
  1437. padding: 40px 20px;
  1438. }
  1439. /* Contact page 575 END */
  1440. }
  1441. @media screen and (max-width: 480px) {
  1442. /* Sidebar 480 START */
  1443. .sidebar {
  1444. padding: 8px 20px;
  1445. }
  1446. .sidebar-logo {
  1447. top: 20px;
  1448. left: 25px;
  1449. }
  1450. .sidebar .logo img {
  1451. width: 40px;
  1452. }
  1453. .sidebar .hamburger-button span:nth-last-child(n+2) {
  1454. margin-bottom: 9px;
  1455. }
  1456. .menu-nav {
  1457. padding: 130px 25px 25px 25px;
  1458. }
  1459. .menu-nav ul a {
  1460. font-size: 18px;
  1461. }
  1462. .menu-close__wrap {
  1463. left: 25px;
  1464. }
  1465. .menu-nav .menu-contacts {
  1466. margin-top: 50px;
  1467. }
  1468. .menu-nav .menu-social {
  1469. margin-top: 50px;
  1470. }
  1471. /* Sidebar 480 END */
  1472. /* Banner 480 START */
  1473. .banner-item {
  1474. padding: 60px 30px 100px 30px;
  1475. }
  1476. .banner-nav-wrap {
  1477. width: 100%;
  1478. max-width: 400px;
  1479. }
  1480. /* Banner 480 END */
  1481. }
  1482. /* Responsive END */
  1483. .menu-nav .menu-nav-son {
  1484. display: none;
  1485. }
  1486. .menu-nav .son-active {
  1487. display: block;
  1488. }
  1489. .menu-nav .menu-nav-son li {
  1490. padding-left: 20px;
  1491. }
  1492. .menu-nav .menu-nav-son li a{
  1493. font-size: 18px;
  1494. }
  1495. /* 图片容器 */
  1496. .album-thumb {
  1497. position: relative;
  1498. overflow: hidden;
  1499. }
  1500. /* 图片样式 */
  1501. .album-thumb img {
  1502. width: 100%;
  1503. height: auto;
  1504. display: block;
  1505. transition: transform 0.3s ease;
  1506. }
  1507. /* 遮罩层文字样式 */
  1508. .album-mask .album-name {
  1509. font-size: 18px;
  1510. font-weight: bold;
  1511. margin-bottom: 10px;
  1512. }
  1513. .album-mask .album-desc {
  1514. font-size: 14px;
  1515. text-align: center;
  1516. }
  1517. /* 鼠标悬停时图片放大效果 */
  1518. .album-thumb:hover img {
  1519. transform: scale(1.1);
  1520. }
  1521. .gallery-album .album-name {
  1522. font-size: 18px;
  1523. text-align: center;
  1524. }
  1525. .gallery-album .album-desc {
  1526. font-size: 14px;
  1527. text-align: center;
  1528. }
  1529. /*
  1530. * 产品详情css
  1531. */
  1532. /* 图片容器 */
  1533. .album-thumb {
  1534. position: relative;
  1535. overflow: hidden;
  1536. cursor: pointer;
  1537. }
  1538. /* 图片样式 */
  1539. .album-thumb img {
  1540. width: 100%;
  1541. height: auto;
  1542. display: block;
  1543. transition: transform 0.3s ease;
  1544. }
  1545. /* 遮罩层 */
  1546. .album-mask {
  1547. position: absolute;
  1548. top: 0;
  1549. left: 0;
  1550. width: 100%;
  1551. height: 100%;
  1552. background: rgba(0, 0, 0, 0.5);
  1553. opacity: 0;
  1554. transition: opacity 0.3s ease;
  1555. display: flex;
  1556. justify-content: flex-end;
  1557. align-items: flex-end;
  1558. padding: 10px;
  1559. }
  1560. /* 鼠标悬停时显示遮罩层 */
  1561. .album-thumb:hover .album-mask {
  1562. opacity: 1;
  1563. }
  1564. /* 下载图标样式 */
  1565. .download-icon {
  1566. color: #fff;
  1567. font-size: 24px;
  1568. text-decoration: none;
  1569. transition: color 0.3s ease;
  1570. }
  1571. .download-icon:hover {
  1572. color: #007bff;
  1573. }
  1574. /* 全屏遮罩层 */
  1575. .fullscreen-mask {
  1576. position: fixed;
  1577. top: 0;
  1578. left: 0;
  1579. width: 100%;
  1580. height: 100%;
  1581. background: rgba(0, 0, 0, 0.8);
  1582. display: flex;
  1583. justify-content: center;
  1584. align-items: center;
  1585. z-index: 1000;
  1586. opacity: 0;
  1587. visibility: hidden;
  1588. transition: opacity 0.3s ease, visibility 0.3s ease;
  1589. }
  1590. /* 全屏图片 */
  1591. .fullscreen-mask img {
  1592. max-width: 90%;
  1593. max-height: 90%;
  1594. transform: scale(0.8);
  1595. transition: transform 0.3s ease;
  1596. }
  1597. /* 全屏按钮样式 */
  1598. .fullscreen-btn {
  1599. position: absolute;
  1600. top: 50%;
  1601. transform: translateY(-50%);
  1602. color: #fff;
  1603. font-size: 56px;
  1604. cursor: pointer;
  1605. z-index: 1;
  1606. }
  1607. .fullscreen-btn:hover {
  1608. color: #007bff;
  1609. }
  1610. .fullscreen-btn-left {
  1611. left: 10px;
  1612. }
  1613. .fullscreen-btn-right {
  1614. right: 10px;
  1615. }
  1616. /* 显示全屏遮罩层 */
  1617. .fullscreen-mask.active {
  1618. opacity: 1;
  1619. visibility: visible;
  1620. }
  1621. /* 全屏图片放大 */
  1622. .fullscreen-mask.active img {
  1623. transform: scale(1);
  1624. }
  1625. .gallery-album-line {
  1626. width: 100%;
  1627. height: 20px;
  1628. border-bottom: 1px solid #ffffff;
  1629. margin-bottom: 30px;
  1630. font-size: 12px;
  1631. text-align: left;
  1632. }
  1633. .gallery-album-prev {
  1634. float: right;
  1635. color: #333;
  1636. }
  1637. .gallery-album-line .gallery-album-prev {
  1638. color: #ffffff;
  1639. }
  1640. /*表格样式*/
  1641. table.album_table {
  1642. width: 100%;
  1643. border-collapse: collapse;
  1644. margin: 20px 0;
  1645. }
  1646. table.album_table th, table.album_table td {
  1647. padding: 12px;
  1648. text-align: left;
  1649. border-bottom: 1px solid #444;
  1650. }
  1651. table.album_table th {
  1652. background-color: #333;
  1653. color: #fff;
  1654. font-weight: bold;
  1655. }
  1656. table.album_table td {
  1657. background-color: #222;
  1658. color: #ddd;
  1659. }
  1660. table.album_table img {
  1661. border-radius: 5px;
  1662. }
  1663. table.album_table button {
  1664. background-color: #555;
  1665. color: white;
  1666. border: none;
  1667. padding: 8px 12px;
  1668. border-radius: 4px;
  1669. cursor: pointer;
  1670. transition: background-color 0.3s ease;
  1671. }
  1672. table.album_table button:hover {
  1673. background-color: #777;
  1674. }
  1675. /* 视频遮罩层样式 */
  1676. .overlay {
  1677. display: none;
  1678. position: fixed;
  1679. top: 0;
  1680. left: 0;
  1681. width: 100%;
  1682. height: 100%;
  1683. background: rgba(0, 0, 0, 0.8);
  1684. justify-content: center;
  1685. align-items: center;
  1686. z-index: 1000;
  1687. }
  1688. .video-container {
  1689. position: relative;
  1690. width: 80%;
  1691. max-width: 800px;
  1692. }
  1693. video {
  1694. width: 100%;
  1695. height: auto;
  1696. }
  1697. .close-btn {
  1698. position: absolute;
  1699. top: -30px;
  1700. right: -30px;
  1701. background: red;
  1702. color: white;
  1703. border: none;
  1704. padding: 10px;
  1705. cursor: pointer;
  1706. border-radius: 50%;
  1707. }
  1708. .download-btn {
  1709. margin-left: 10px;
  1710. }
  1711. /* 更新日志*/
  1712. .log-page {
  1713. margin-bottom: 50px;
  1714. }
  1715. .update-content {
  1716. margin-left: 100px;
  1717. padding: 0px;
  1718. }
  1719. .update-log {
  1720. margin:auto;
  1721. margin-top: 10px;
  1722. max-width: 1200px;
  1723. background-color: #f9f9f9;
  1724. padding: 10px;
  1725. border: 1px solid #ddd;
  1726. border-radius: 5px;
  1727. font-family: Arial, sans-serif;
  1728. color: #333;
  1729. }
  1730. .update-log .timestamp {
  1731. color: #555;
  1732. font-size: 12px;
  1733. }
  1734. .update-log .message {
  1735. margin-top: 5px;
  1736. font-size: 12px;
  1737. padding-left: 20px;
  1738. color: #555;
  1739. }
  1740. .update-log .highlight {
  1741. color: #007BFF;
  1742. text-decoration: none;
  1743. font-size: 12px;
  1744. }
  1745. .update-log .log-date {
  1746. border-bottom: 1px solid #ddd;
  1747. padding:10px 0;
  1748. }
  1749. .update-log .log-date a {
  1750. color: #555;
  1751. }
  1752. .update-log .log-line {
  1753. padding: 10px 0;
  1754. display: none;
  1755. }
  1756. .update-log .active {
  1757. display: block;
  1758. }
  1759. .search-wrapper {
  1760. width: 100%;
  1761. margin-bottom: 30px;
  1762. text-align: right;
  1763. height: 47px;
  1764. }
  1765. .search-box {
  1766. position: relative;
  1767. float: right;
  1768. right: 10px;
  1769. width: 300px;
  1770. display: flex;
  1771. align-items: center;
  1772. background-color: #f9f9f9;
  1773. border-radius: 20px;
  1774. padding: 5px 10px;
  1775. box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  1776. }
  1777. /* 搜索输入框 */
  1778. .search-box input {
  1779. flex: 1;
  1780. border: none;
  1781. outline: none;
  1782. background: transparent;
  1783. color: #888;
  1784. font-size: 14px;
  1785. padding: 8px;
  1786. }
  1787. /* 搜索图标 */
  1788. .search-box .fa-search {
  1789. color: #888;
  1790. font-size: 18px;
  1791. cursor: pointer;
  1792. }
  1793. /* 鼠标悬停时图标颜色变化 */
  1794. .search-box .fa-search:hover {
  1795. color: #888;
  1796. }