style.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844
  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. flex-grow: 1;
  310. }
  311. .servicess_item__img {
  312. width: 130px;
  313. height: 130px;
  314. align-self: flex-start;
  315. margin-right: 12px;
  316. flex-shrink: 0;
  317. order: -1;
  318. }
  319. .servicess_item__info {
  320. border-bottom: 1px solid rgb(240, 240, 240);
  321. align-self: flex-start;
  322. }
  323. .servicess_item__info__name {
  324. /* text-align: left; */
  325. font-weight: 500;
  326. font-size: 22px;
  327. line-height: 26px;
  328. /* color: rgb(32, 32, 32); */
  329. margin-bottom: 28px;
  330. }
  331. .servicess_item__info__content {
  332. text-align: left;
  333. font-size: 14px;
  334. line-height: 20px;
  335. color: #7e7e7e;
  336. margin-bottom: 21px;
  337. overflow: hidden;
  338. }
  339. .servicess_item__info__more {
  340. font-weight: 500;
  341. font-size: 14px;
  342. line-height: 16px;
  343. color: #202020;
  344. margin-bottom: 28px;
  345. }
  346. @media (max-width: 700px) {
  347. .servicess_item {
  348. margin: 0 0 30px;
  349. max-width: 100%;
  350. }
  351. }
  352. @media (max-width: 400px) {
  353. .servicess_item {
  354. flex-wrap: wrap;
  355. justify-content: center;
  356. }
  357. .servicess_item__info {
  358. width: 100%;
  359. order: 2;
  360. text-align: center;
  361. }
  362. .lern_more {
  363. order: 3;
  364. }
  365. .servicess_item__img {
  366. width: 90px;
  367. height: 90px;
  368. }
  369. .servicess_item {
  370. display: flex;
  371. align-items: center;
  372. margin: 0 7px 30px;
  373. min-width: calc(100% - 14px);
  374. justify-content: center;
  375. }
  376. .movearrow {
  377. overflow: hidden;
  378. width: 135px;
  379. margin: 0 auto;
  380. }
  381. .servicess_item__info__content {
  382. text-align: center;
  383. }
  384. }
  385. .movearrow {
  386. overflow: hidden;
  387. /* border: 1px solid rgb(201, 19, 19); */
  388. width: 135px;
  389. }
  390. .servicess_item__info__more {
  391. transition: all 0.2s linear;
  392. transform: translate(-95px, 0px);
  393. /* border: 1px solid rgb(201, 19, 19); */
  394. }
  395. .lernmore {
  396. margin-right: 22px;
  397. }
  398. .servicess_item__info__more:hover {
  399. transition: all 0.2s linear;
  400. overflow: hidden;
  401. transform: translate(0px, 0px);
  402. }
  403. @media (max-width: 960px) {
  404. .servicess_item__info__more {
  405. transition: all 0.2s linear;
  406. transform: translate(0px, 0px);
  407. }
  408. }
  409. /* ============== PORTFOLIO ============== */
  410. .about_topik {
  411. display: flex;
  412. justify-content: space-between;
  413. margin-bottom: 45px;
  414. }
  415. .about_topik__text {
  416. max-width: 600px;
  417. text-indent: 1em;
  418. font-size: 14px;
  419. color: #7e7e7e;
  420. line-height: 1.5em;
  421. text-align: justify;
  422. margin-left: 50px;
  423. }
  424. @media (max-width: 600px) {
  425. .about_topik {
  426. flex-direction: column;
  427. }
  428. .about_topik__text {
  429. margin-left: 0px;
  430. }
  431. }
  432. .portfolio_list {
  433. margin-bottom: 40px;
  434. display: flex;
  435. flex-wrap: wrap;
  436. justify-content: space-between;
  437. margin-right: -7px;
  438. margin-left: -7px;
  439. }
  440. @media (max-width: 987px) {
  441. .portfolio_list {
  442. max-width: 680px;
  443. margin: 0 auto;
  444. }
  445. }
  446. @media (max-width: 677px) {
  447. .portfolio_list {
  448. justify-content: center;
  449. max-width: 670px;
  450. }
  451. }
  452. .portfolio_item {
  453. overflow: hidden;
  454. /* width: calc(33.33% - 8px); */
  455. margin-bottom: 40px;
  456. width: 310px;
  457. margin-right: 7px;
  458. margin-left: 7px;
  459. }
  460. .portfolio_item last-child {
  461. margin-right: 0px;
  462. }
  463. .portfolio_blok {
  464. position: relative;
  465. width: 310px;
  466. height: 484px;
  467. /* border: 2px solid green; */
  468. }
  469. .portfolio_blok img {
  470. position: absolute;
  471. z-index: 2;
  472. width: 310px;
  473. height: auto;
  474. }
  475. .portfolio_slidebox {
  476. width: 100%;
  477. position: relative;
  478. z-index: 3;
  479. bottom: -308px;
  480. transition: all 0.3s linear;
  481. }
  482. @media (max-width: 980px) {
  483. .portfolio_slidebox {
  484. transform: translate(0px, calc(176px - 100%));
  485. }
  486. }
  487. @media (min-width: 980px) {
  488. .portfolio_slidebox:hover {
  489. transition: all 0.3s linear;
  490. transform: translate(0px, calc(176px - 100%));
  491. }
  492. }
  493. .slidebox_transparent {
  494. padding-bottom: 30px;
  495. padding-left: 30px;
  496. }
  497. .slidebox_gray {
  498. padding: 20px 26px 40px 26px;
  499. background-color: #f5f7f7;
  500. }
  501. .slidebox_gray_inner {
  502. border-bottom: 1px solid #f0f0f0;
  503. }
  504. .transparent_landing {
  505. font-size: 14px;
  506. line-height: 20px;
  507. color: #989898;
  508. margin-bottom: 9px;
  509. }
  510. .transparent_projectname {
  511. font-size: 22px;
  512. line-height: 26px;
  513. color: #fff;
  514. }
  515. .gray_text {
  516. font-size: 14px;
  517. line-height: 20px;
  518. color: #7e7e7e;
  519. margin-bottom: 30px;
  520. text-indent: 1em;
  521. text-align: justify;
  522. }
  523. .gray_arrow {
  524. margin-bottom: 30px;
  525. }
  526. .buttonportfolio {
  527. display: block;
  528. width: 100%;
  529. height: 68px;
  530. border: 2px solid #ffca00;
  531. background-color: #fff;
  532. font-style: normal;
  533. font-weight: 500;
  534. font-size: 14px;
  535. line-height: 16px;
  536. color: #202020;
  537. margin-bottom: 150px;
  538. }
  539. /* ========== SKILLS ========= */
  540. .skills {
  541. display: flex;
  542. flex-wrap: wrap;
  543. justify-content: space-between;
  544. align-items: center;
  545. margin: 0px -8px 164px;
  546. }
  547. @media (max-width: 990px) {
  548. .skills {
  549. justify-content: space-around;
  550. }
  551. }
  552. .skills_item {
  553. display: flex;
  554. padding: 32px 19px 51px 40px;
  555. background-color: #f5f7f7;
  556. width: 472px;
  557. height: 170px;
  558. margin-left: 8px;
  559. margin-right: 8px;
  560. margin-bottom: 16px;
  561. }
  562. .skills_item__value {
  563. flex-shrink: 0;
  564. font-style: normal;
  565. font-weight: bold;
  566. font-size: 64px;
  567. line-height: 75px;
  568. color: #ffca00;
  569. min-width: 110px;
  570. margin-right: 50px;
  571. text-align: center;
  572. /* border: 2px solid red; */
  573. }
  574. .skills_item__description__topik {
  575. font-weight: 500;
  576. font-size: 22px;
  577. line-height: 26px;
  578. margin-bottom: 28px;
  579. margin-top: 11px;
  580. }
  581. .skills_item__description__subj {
  582. font-size: 14px;
  583. line-height: 20px;
  584. color: #7e7e7e;
  585. margin-bottom: 21px;
  586. height: 60px;
  587. overflow: hidden;
  588. }
  589. @media (max-width: 500px) {
  590. .skills_item__value {
  591. font-size: 45px;
  592. line-height: 60px;
  593. min-width: 80px;
  594. margin-right: 30px;
  595. }
  596. .skills_item {
  597. padding: 32px 19px 51px 20px;
  598. }
  599. .skills_item__description__topik {
  600. font-size: 18px;
  601. line-height: 22px;
  602. margin-bottom: 18px;
  603. }
  604. .skills_item__description__subj {
  605. font-size: 12px;
  606. line-height: 16px;
  607. }
  608. }
  609. /* ========== CLIENTS ========= */
  610. .clients {
  611. margin-bottom: 158px;
  612. }
  613. .clients_list {
  614. display: grid;
  615. grid-template-columns: repeat(auto-fill, 228px);
  616. justify-content: center;
  617. grid-gap: 14px;
  618. }
  619. .clients_list__item {
  620. display: flex;
  621. align-items: center;
  622. justify-content: center;
  623. width: 228px;
  624. height: 150px;
  625. background-color: #f5f7f7;
  626. }
  627. /* ========== SEO TEXT ========= */
  628. .seo {
  629. margin-bottom: 120px;
  630. }
  631. .seo_title {
  632. font-style: normal;
  633. font-weight: 500;
  634. font-size: 22px;
  635. line-height: 26px;
  636. color: #202020;
  637. margin-bottom: 25px;
  638. }
  639. .seo_text {
  640. font-style: normal;
  641. font-weight: normal;
  642. font-size: 14px;
  643. line-height: 24px;
  644. color: #7e7e7e;
  645. margin-bottom: 20px;
  646. text-indent: 1em;
  647. text-align: justify;
  648. }
  649. .seo_readmore {
  650. display: flex;
  651. font-style: normal;
  652. font-weight: 500;
  653. font-size: 14px;
  654. line-height: 16px;
  655. color: #202020;
  656. }
  657. .seo_readmore a {
  658. text-decoration: none;
  659. color: #202020;
  660. }
  661. .seo_readmore__strelka {
  662. margin-left: 10px;
  663. }
  664. /* ========== FOOTER ========= */
  665. .yellow_line {
  666. min-height: 4px;
  667. background-color: #ffca00;
  668. }
  669. footer {
  670. min-height: 110px;
  671. background-color: #121212;
  672. display: flex;
  673. flex-wrap: wrap;
  674. justify-content: center;
  675. align-items: center;
  676. padding: 30px;
  677. }
  678. .copyright {
  679. width: 265px;
  680. display: flex;
  681. flex-wrap: wrap;
  682. font-size: 12px;
  683. line-height: 14px;
  684. color: #7e7e7e;
  685. margin-left: 95px;
  686. margin-right: 83px;
  687. }
  688. .letter {
  689. margin-right: 46px;
  690. display: flex;
  691. flex-direction: row;
  692. /* align-items: center;
  693. align-content: ; */
  694. }
  695. .letter svg {
  696. margin-right: 16px;
  697. }
  698. .letter a {
  699. text-decoration: none;
  700. font-style: normal;
  701. font-weight: 500;
  702. font-size: 16px;
  703. line-height: 19px;
  704. color: #ffffff;
  705. }
  706. .logos {
  707. display: flex;
  708. flex-wrap: nowrap;
  709. /* margin-bottom: 15px; */
  710. }
  711. .facebook {
  712. margin-right: 15px;
  713. }
  714. @media (max-width: 1020px) {
  715. footer {
  716. flex-direction: column;
  717. }
  718. footer :nth-last-child(n + 2) {
  719. margin-bottom: 30px;
  720. }
  721. .copyright {
  722. margin-left: 0px;
  723. margin-right: 0px;
  724. }
  725. .letter {
  726. margin-right: 0px;
  727. }
  728. }