style.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837
  1. /* Andrey Shevchenko. FEA-23. Home work 7 */
  2. * {
  3. box-sizing: border-box;
  4. }
  5. body {
  6. font-family: 'Roboto', sans-serif;
  7. /* background-color: rgb(0, 0, 0); */
  8. padding: 0px;
  9. margin: 0;
  10. }
  11. a {
  12. text-decoration: none;
  13. }
  14. .headerclass {
  15. position: absolute;
  16. left: 0;
  17. top: 0;
  18. width: 100%;
  19. padding: 62px;
  20. display: flex;
  21. flex-direction: row;
  22. flex-wrap: nowrap;
  23. align-items: center;
  24. justify-content: space-between;
  25. color: #fff;
  26. font-size: 14px;
  27. font-weight: 500;
  28. z-index: 3;
  29. }
  30. @media (max-width: 450px) {
  31. .imagelogoclass {
  32. width: 120px;
  33. }
  34. }
  35. .headerclass > :nth-child(-n + 2) {
  36. margin-right: 20px;
  37. }
  38. .headerclass a {
  39. color: #fff;
  40. text-decoration: none;
  41. }
  42. .headerclass a:hover {
  43. text-decoration: underline;
  44. }
  45. .navclass {
  46. color: #fff;
  47. display: flex;
  48. flex-direction: row;
  49. flex-wrap: nowrap;
  50. justify-content: space-between;
  51. min-width: 400px;
  52. max-width: 550px;
  53. flex-grow: 1;
  54. margin-right: -20px;
  55. }
  56. .navclass a {
  57. display: flex;
  58. flex-wrap: nowrap;
  59. align-items: baseline;
  60. }
  61. .navclass > :last-child {
  62. color: rgba(255, 202, 0, 1);
  63. }
  64. @media (max-width: 1100px) {
  65. .navclass {
  66. display: none;
  67. }
  68. }
  69. .heademail {
  70. font-size: 16px;
  71. }
  72. @media (max-width: 800px) {
  73. .heademail {
  74. display: none;
  75. }
  76. }
  77. .emeilmenu {
  78. display: flex;
  79. justify-content: space-between;
  80. max-width: 420px;
  81. flex-grow: 1;
  82. }
  83. @media (max-width: 800px) {
  84. .emeilmenu {
  85. justify-content: flex-end;
  86. }
  87. }
  88. .headmenu {
  89. display: flex;
  90. flex-direction: row;
  91. flex-wrap: nowrap;
  92. align-items: center;
  93. margin-left: 25px;
  94. }
  95. @media (max-width: 450px) {
  96. .topmenumenu {
  97. display: none;
  98. }
  99. }
  100. .burgerlines {
  101. width: 50px;
  102. height: 12px;
  103. border-top: #fff solid 1px;
  104. border-bottom: #fff solid 1px;
  105. margin-left: 25px;
  106. }
  107. /* ---------------MAIN-------------- */
  108. .all_window {
  109. width: 100%;
  110. height: 100vh;
  111. display: flex;
  112. justify-content: center;
  113. align-items: center;
  114. background-color: #000;
  115. padding-left: 50px;
  116. padding-right: 50px;
  117. margin-bottom: 41px;
  118. }
  119. .video {
  120. position: absolute;
  121. left: 0px;
  122. top: 0px;
  123. width: 100%;
  124. height: 100vh;
  125. z-index: 1;
  126. }
  127. .center_blok {
  128. max-width: 960px;
  129. width: 100%;
  130. z-index: 2;
  131. }
  132. .welcome {
  133. margin-bottom: 23px;
  134. }
  135. .welcome__svg {
  136. margin-right: 9px;
  137. }
  138. .welcome__text {
  139. font-weight: 300;
  140. font-size: 18px;
  141. line-height: 21px;
  142. color: rgb(255, 255, 255, 1);
  143. }
  144. @media (max-width: 450px) {
  145. .welcome__text {
  146. font-size: 12px;
  147. line-height: 16px;
  148. max-width: 600px;
  149. }
  150. }
  151. .center_blok__title {
  152. font-weight: 700;
  153. font-size: 64px;
  154. line-height: 75px;
  155. color: #ffffff;
  156. max-width: 806px;
  157. margin-bottom: 100px;
  158. }
  159. @media (max-width: 1100px) {
  160. .center_blok__title {
  161. font-size: 45px;
  162. line-height: 55px;
  163. max-width: 600px;
  164. margin-bottom: 80px;
  165. }
  166. }
  167. @media (max-width: 450px) {
  168. .center_blok__title {
  169. font-size: 30px;
  170. line-height: 40px;
  171. max-width: 600px;
  172. margin-bottom: 60px;
  173. }
  174. }
  175. .center_blok__discuss {
  176. position: relative;
  177. width: 240px;
  178. height: 68px;
  179. background-color: rgb(255, 202, 0, 1);
  180. display: flex;
  181. align-items: center;
  182. justify-content: center;
  183. overflow: hidden;
  184. }
  185. @media (max-width: 450px) {
  186. .center_blok__discuss {
  187. width: 180px;
  188. height: 51px;
  189. }
  190. }
  191. .center_blok__discuss:hover .center_blok__discuss__text {
  192. color: rgb(255, 202, 0, 1);
  193. transition: all 0.4s linear;
  194. }
  195. .center_blok__discuss:hover .center_blok__discuss__dot {
  196. transition: all 0.4s linear;
  197. box-shadow: 0 0px 0 180px rgb(32, 32, 32, 1);
  198. right: 150px;
  199. }
  200. .center_blok__discuss__text {
  201. position: absolute;
  202. left: 30px;
  203. font-weight: 500;
  204. font-size: 14px;
  205. color: #202020;
  206. z-index: 10;
  207. transition: all 0.2s linear;
  208. }
  209. @media (max-width: 450px) {
  210. .center_blok__discuss__text {
  211. left: 15px;
  212. font-size: 13px;
  213. }
  214. }
  215. .center_blok__discuss__dot {
  216. position: absolute;
  217. right: 30px;
  218. width: 8px;
  219. height: 8px;
  220. border-radius: 50%;
  221. background-color: rgb(32, 32, 32);
  222. margin-left: 67px;
  223. z-index: 9;
  224. box-shadow: 0 0px 0 0px rgb(32, 32, 32, 1);
  225. transition: all 0.2s linear;
  226. }
  227. /* -------BOTTOM----------- */
  228. .low_left_scroll {
  229. display: flex;
  230. justify-content: center;
  231. align-items: center;
  232. position: absolute;
  233. left: 30px;
  234. bottom: 111px;
  235. color: rgb(126, 126, 126);
  236. font-size: 14px;
  237. line-height: 20px;
  238. transform: rotate(-90deg);
  239. z-index: 3;
  240. }
  241. .low_left_scroll__arrow {
  242. transform: rotate(90deg);
  243. margin-right: 35px;
  244. }
  245. .chatbutton {
  246. position: fixed;
  247. right: 60px;
  248. bottom: 109px;
  249. width: 76px;
  250. height: 76px;
  251. background-color: rgb(255, 202, 0);
  252. border-radius: 50%;
  253. display: flex;
  254. justify-content: center;
  255. align-items: center;
  256. box-shadow: none;
  257. transition: all 0.2s linear;
  258. z-index: 100;
  259. }
  260. @media (max-width: 450px) {
  261. .chatbutton {
  262. width: 60px;
  263. height: 60px;
  264. right: 30px;
  265. bottom: 80px;
  266. }
  267. }
  268. @media (max-width: 1170px) {
  269. .low_left_scroll {
  270. display: none;
  271. }
  272. .chatbutton {
  273. display: none;
  274. }
  275. }
  276. .chatbutton:hover {
  277. box-shadow: 0 0px 0 15px rgb(255, 202, 0, 0.2);
  278. }
  279. /* --------------whitepart----------- */
  280. /* --------------Services----------- */
  281. .whitepart {
  282. max-width: 990px;
  283. /* border: 2px solid #000; */
  284. padding: 0 15px;
  285. margin: 0 auto;
  286. /* display: none; */
  287. }
  288. .topik {
  289. margin-bottom: 53px;
  290. display: flex;
  291. align-items: baseline;
  292. }
  293. .topikname {
  294. margin-left: 10px;
  295. }
  296. .services {
  297. /* border: 2px solid rgb(62, 251, 37); */
  298. display: flex;
  299. flex-wrap: wrap;
  300. justify-content: space-between;
  301. margin: 0 -7px 150px;
  302. }
  303. .servicess_item {
  304. /* border: 2px solid rgb(251, 37, 37); */
  305. display: flex;
  306. align-items: center;
  307. margin: 0 7px 30px;
  308. max-width: calc(50% - 14px);
  309. }
  310. .servicess_item__img {
  311. width: 130px;
  312. height: 130px;
  313. align-self: flex-start;
  314. margin-right: 12px;
  315. flex-shrink: 0;
  316. order: -1;
  317. }
  318. .servicess_item__info {
  319. border-bottom: 1px solid rgb(240, 240, 240);
  320. align-self: flex-start;
  321. }
  322. .servicess_item__info__name {
  323. font-weight: 500;
  324. font-size: 22px;
  325. line-height: 26px;
  326. /* color: rgb(32, 32, 32); */
  327. margin-bottom: 28px;
  328. }
  329. .servicess_item__info__content {
  330. font-size: 14px;
  331. line-height: 20px;
  332. color: #7e7e7e;
  333. margin-bottom: 21px;
  334. overflow: hidden;
  335. }
  336. .servicess_item__info__more {
  337. font-weight: 500;
  338. font-size: 14px;
  339. line-height: 16px;
  340. color: #202020;
  341. margin-bottom: 28px;
  342. }
  343. @media (max-width: 700px) {
  344. .servicess_item {
  345. margin: 0 0 30px;
  346. max-width: 100%;
  347. }
  348. }
  349. @media (max-width: 400px) {
  350. .servicess_item {
  351. flex-wrap: wrap;
  352. justify-content: center;
  353. }
  354. .servicess_item__info {
  355. width: 100%;
  356. order: 2;
  357. text-align: center;
  358. }
  359. .lern_more {
  360. order: 3;
  361. }
  362. .servicess_item__img {
  363. width: 90px;
  364. height: 90px;
  365. }
  366. .servicess_item {
  367. display: flex;
  368. align-items: center;
  369. margin: 0 7px 30px;
  370. min-width: calc(100% - 14px);
  371. justify-content: center;
  372. }
  373. .movearrow {
  374. overflow: hidden;
  375. width: 135px;
  376. margin: 0 auto;
  377. }
  378. }
  379. .movearrow {
  380. overflow: hidden;
  381. /* border: 1px solid rgb(201, 19, 19); */
  382. width: 135px;
  383. }
  384. .servicess_item__info__more {
  385. transition: all 0.2s linear;
  386. transform: translate(-95px, 0px);
  387. /* border: 1px solid rgb(201, 19, 19); */
  388. }
  389. .lernmore {
  390. margin-right: 22px;
  391. }
  392. .servicess_item__info__more:hover {
  393. transition: all 0.2s linear;
  394. overflow: hidden;
  395. transform: translate(0px, 0px);
  396. }
  397. @media (max-width: 960px) {
  398. .servicess_item__info__more {
  399. transition: all 0.2s linear;
  400. transform: translate(0px, 0px);
  401. }
  402. }
  403. /* ============== PORTFOLIO ============== */
  404. .about_topik {
  405. display: flex;
  406. justify-content: space-between;
  407. margin-bottom: 45px;
  408. }
  409. .about_topik__text {
  410. max-width: 600px;
  411. text-indent: 1em;
  412. font-size: 14px;
  413. color: #7e7e7e;
  414. line-height: 1.5em;
  415. text-align: justify;
  416. margin-left: 50px;
  417. }
  418. @media (max-width: 600px) {
  419. .about_topik {
  420. flex-direction: column;
  421. }
  422. .about_topik__text {
  423. margin-left: 0px;
  424. }
  425. }
  426. .portfolio_list {
  427. margin-bottom: 40px;
  428. display: flex;
  429. flex-wrap: wrap;
  430. justify-content: space-between;
  431. margin-right: -7px;
  432. margin-left: -7px;
  433. }
  434. @media (max-width: 987px) {
  435. .portfolio_list {
  436. max-width: 680px;
  437. margin: 0 auto;
  438. }
  439. }
  440. @media (max-width: 677px) {
  441. .portfolio_list {
  442. justify-content: center;
  443. max-width: 670px;
  444. }
  445. }
  446. .portfolio_item {
  447. overflow: hidden;
  448. /* width: calc(33.33% - 8px); */
  449. margin-bottom: 40px;
  450. width: 310px;
  451. margin-right: 7px;
  452. margin-left: 7px;
  453. }
  454. .portfolio_item last-child {
  455. margin-right: 0px;
  456. }
  457. .portfolio_blok {
  458. position: relative;
  459. width: 310px;
  460. height: 484px;
  461. /* border: 2px solid green; */
  462. }
  463. .portfolio_blok img {
  464. position: absolute;
  465. z-index: 2;
  466. width: 310px;
  467. height: auto;
  468. }
  469. .portfolio_slidebox {
  470. width: 100%;
  471. position: relative;
  472. z-index: 3;
  473. bottom: -308px;
  474. transition: all 0.3s linear;
  475. }
  476. @media (max-width: 980px) {
  477. .portfolio_slidebox {
  478. transform: translate(0px, calc(176px - 100%));
  479. }
  480. }
  481. @media (min-width: 980px) {
  482. .portfolio_slidebox:hover {
  483. transition: all 0.3s linear;
  484. transform: translate(0px, calc(176px - 100%));
  485. }
  486. }
  487. .slidebox_transparent {
  488. padding-bottom: 30px;
  489. padding-left: 30px;
  490. }
  491. .slidebox_gray {
  492. padding: 20px 26px 40px 26px;
  493. background-color: #f5f7f7;
  494. }
  495. .slidebox_gray_inner {
  496. border-bottom: 1px solid #f0f0f0;
  497. }
  498. .transparent_landing {
  499. font-size: 14px;
  500. line-height: 20px;
  501. color: #989898;
  502. margin-bottom: 9px;
  503. }
  504. .transparent_projectname {
  505. font-size: 22px;
  506. line-height: 26px;
  507. color: #fff;
  508. }
  509. .gray_text {
  510. font-size: 14px;
  511. line-height: 20px;
  512. color: #7e7e7e;
  513. margin-bottom: 30px;
  514. text-indent: 1em;
  515. text-align: justify;
  516. }
  517. .gray_arrow {
  518. margin-bottom: 30px;
  519. }
  520. .buttonportfolio {
  521. display: block;
  522. width: 100%;
  523. height: 68px;
  524. border: 2px solid #ffca00;
  525. background-color: #fff;
  526. font-style: normal;
  527. font-weight: 500;
  528. font-size: 14px;
  529. line-height: 16px;
  530. color: #202020;
  531. margin-bottom: 150px;
  532. }
  533. /* ========== SKILLS ========= */
  534. .skills {
  535. display: flex;
  536. flex-wrap: wrap;
  537. justify-content: space-between;
  538. align-items: center;
  539. margin: 0px -8px 164px;
  540. }
  541. @media (max-width: 990px) {
  542. .skills {
  543. justify-content: space-around;
  544. }
  545. }
  546. .skills_item {
  547. display: flex;
  548. padding: 32px 19px 51px 40px;
  549. background-color: #f5f7f7;
  550. width: 472px;
  551. height: 170px;
  552. margin-left: 8px;
  553. margin-right: 8px;
  554. margin-bottom: 16px;
  555. }
  556. .skills_item__value {
  557. flex-shrink: 0;
  558. font-style: normal;
  559. font-weight: bold;
  560. font-size: 64px;
  561. line-height: 75px;
  562. color: #ffca00;
  563. min-width: 110px;
  564. margin-right: 50px;
  565. text-align: center;
  566. /* border: 2px solid red; */
  567. }
  568. .skills_item__description__topik {
  569. font-weight: 500;
  570. font-size: 22px;
  571. line-height: 26px;
  572. margin-bottom: 28px;
  573. margin-top: 11px;
  574. }
  575. .skills_item__description__subj {
  576. font-size: 14px;
  577. line-height: 20px;
  578. color: #7e7e7e;
  579. margin-bottom: 21px;
  580. height: 60px;
  581. overflow: hidden;
  582. }
  583. @media (max-width: 500px) {
  584. .skills_item__value {
  585. font-size: 45px;
  586. line-height: 60px;
  587. min-width: 80px;
  588. margin-right: 30px;
  589. }
  590. .skills_item {
  591. padding: 32px 19px 51px 20px;
  592. }
  593. .skills_item__description__topik {
  594. font-size: 18px;
  595. line-height: 22px;
  596. margin-bottom: 18px;
  597. }
  598. .skills_item__description__subj {
  599. font-size: 12px;
  600. line-height: 16px;
  601. }
  602. }
  603. /* ========== CLIENTS ========= */
  604. .clients {
  605. margin-bottom: 158px;
  606. }
  607. .clients_list {
  608. display: grid;
  609. grid-template-columns: repeat(auto-fill, 228px);
  610. justify-content: center;
  611. grid-gap: 14px;
  612. }
  613. .clients_list__item {
  614. display: flex;
  615. align-items: center;
  616. justify-content: center;
  617. width: 228px;
  618. height: 150px;
  619. background-color: #f5f7f7;
  620. }
  621. /* ========== SEO TEXT ========= */
  622. .seo {
  623. margin-bottom: 120px;
  624. }
  625. .seo_title {
  626. font-style: normal;
  627. font-weight: 500;
  628. font-size: 22px;
  629. line-height: 26px;
  630. color: #202020;
  631. margin-bottom: 25px;
  632. }
  633. .seo_text {
  634. font-style: normal;
  635. font-weight: normal;
  636. font-size: 14px;
  637. line-height: 24px;
  638. color: #7e7e7e;
  639. margin-bottom: 20px;
  640. text-indent: 1em;
  641. text-align: justify;
  642. }
  643. .seo_readmore {
  644. display: flex;
  645. font-style: normal;
  646. font-weight: 500;
  647. font-size: 14px;
  648. line-height: 16px;
  649. color: #202020;
  650. }
  651. .seo_readmore a {
  652. text-decoration: none;
  653. color: #202020;
  654. }
  655. .seo_readmore__strelka {
  656. margin-left: 10px;
  657. }
  658. /* ========== FOOTER ========= */
  659. .yellow_line {
  660. min-height: 4px;
  661. background-color: #ffca00;
  662. }
  663. footer {
  664. min-height: 110px;
  665. background-color: #121212;
  666. display: flex;
  667. flex-wrap: wrap;
  668. justify-content: center;
  669. align-items: center;
  670. padding: 30px;
  671. }
  672. .copyright {
  673. width: 265px;
  674. display: flex;
  675. flex-wrap: wrap;
  676. font-size: 12px;
  677. line-height: 14px;
  678. color: #7e7e7e;
  679. margin-left: 95px;
  680. margin-right: 83px;
  681. }
  682. .letter {
  683. margin-right: 46px;
  684. display: flex;
  685. flex-direction: row;
  686. /* align-items: center;
  687. align-content: ; */
  688. }
  689. .letter svg {
  690. margin-right: 16px;
  691. }
  692. .letter a {
  693. text-decoration: none;
  694. font-style: normal;
  695. font-weight: 500;
  696. font-size: 16px;
  697. line-height: 19px;
  698. color: #ffffff;
  699. }
  700. .logos {
  701. display: flex;
  702. flex-wrap: nowrap;
  703. /* margin-bottom: 15px; */
  704. }
  705. .facebook {
  706. margin-right: 15px;
  707. }
  708. @media (max-width: 1020px) {
  709. footer {
  710. flex-direction: column;
  711. }
  712. footer :nth-last-child(n + 2) {
  713. margin-bottom: 30px;
  714. }
  715. .copyright {
  716. margin-left: 0px;
  717. margin-right: 0px;
  718. }
  719. .letter {
  720. margin-right: 0px;
  721. }
  722. }