style.css 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. body{
  2. margin: 0;
  3. }
  4. html{
  5. box-sizing: border-box;
  6. }
  7. *, *::before, *::after{
  8. box-sizing: inherit;
  9. }
  10. img{
  11. max-width: 100%;
  12. height: auto;
  13. vertical-align: top;
  14. }
  15. .container{
  16. max-width: 1110px;
  17. padding: 0 15px;
  18. margin: 0 auto;
  19. }
  20. .header-bg{
  21. background: #EEEFF1;
  22. padding-bottom: 150px;
  23. }
  24. .header{
  25. display: flex;
  26. justify-content: space-between;
  27. }
  28. .left{
  29. margin-top: 57px;
  30. }
  31. .nav{
  32. display: flex;
  33. align-items: center;
  34. white-space: nowrap;
  35. margin: 57px 0 0 0;
  36. font-family: 'Roboto';
  37. font-style: normal;
  38. font-weight: 500;
  39. font-size: 16px;
  40. line-height: 26px;
  41. letter-spacing: 0.1em;
  42. color: #34547A;
  43. text-transform: uppercase;
  44. }
  45. li a{
  46. text-decoration: none;
  47. color: #34547A;
  48. }
  49. li a:visited{
  50. color: #34547A;
  51. }
  52. #burger {
  53. position: absolute;
  54. right: -99999px;
  55. opacity: 0;
  56. visibility: hidden;
  57. }
  58. .design{
  59. display: flex;
  60. justify-content: space-between;
  61. }
  62. .disp{
  63. display: flex;
  64. justify-content: center;
  65. align-items: center;
  66. width: 50%;
  67. margin-top: 50px;
  68. }
  69. .txt{
  70. width: 50%;
  71. }
  72. .design-title{
  73. font-family: 'Roboto';
  74. font-style: normal;
  75. font-weight: 500;
  76. font-size: 48px;
  77. line-height: 79px;
  78. margin-bottom: 10px;
  79. }
  80. .design-txt{
  81. font-family: 'Roboto';
  82. font-style: normal;
  83. font-weight: 400;
  84. font-size: 16px;
  85. line-height: 26px;
  86. color: #727272;
  87. margin-bottom: 60px;
  88. }
  89. .btn{
  90. background: #34547A;
  91. color: white;
  92. padding: 25px 41px;
  93. text-decoration: none;
  94. text-transform: uppercase;
  95. }
  96. .about{
  97. display: flex;
  98. flex-direction: column;
  99. align-items: center;
  100. }
  101. .about-title{
  102. font-family: 'Roboto';
  103. font-style: normal;
  104. font-weight: 500;
  105. font-size: 32px;
  106. line-height: 38px;
  107. text-align: center;
  108. color: #000000;
  109. text-transform: uppercase;
  110. margin-top: 90px;
  111. }
  112. .about-txt{
  113. font-family: 'Roboto';
  114. font-style: normal;
  115. font-weight: 400;
  116. font-size: 16px;
  117. line-height: 26px;
  118. text-align: center;
  119. color: #727272;
  120. width: 50%;
  121. }
  122. .bg{
  123. background: #34547A;
  124. }
  125. .project-list{
  126. display: flex;
  127. justify-content: space-between;
  128. align-items: center;
  129. }
  130. .project{
  131. padding: 100px 0;
  132. display: flex;
  133. }
  134. .prjct-img{
  135. display: flex;
  136. align-items: center;
  137. margin-right: 20px;
  138. }
  139. .project-title{
  140. font-family: 'Roboto';
  141. font-style: normal;
  142. font-weight: 500;
  143. font-size: 21px;
  144. line-height: 25px;
  145. color: #FFFFFF;
  146. margin-bottom: 3px;
  147. }
  148. .project-txt{
  149. font-family: 'Roboto';
  150. font-style: normal;
  151. font-weight: 400;
  152. font-size: 16px;
  153. line-height: 26px;
  154. color: #FFFFFF;
  155. margin-top: 3px;
  156. }
  157. .section-skill{
  158. padding: 100px 0;
  159. }
  160. .skill-row{
  161. display: flex;
  162. }
  163. .skill-col{
  164. width: 50%;
  165. }
  166. .skill-text{
  167. display: flex;
  168. flex-direction: column;
  169. justify-content: center;
  170. padding-right: 75px;
  171. }
  172. .skill-bg{
  173. background-size: cover;
  174. background-position: center;
  175. background-repeat: no-repeat;
  176. padding-top: 85%;
  177. }
  178. .section-header{
  179. padding-top: 25px;
  180. }
  181. .section-header .title{
  182. font-size: 32px;
  183. line-height: 1.18;
  184. font-weight: 500;
  185. margin: 0 0 25px 0;
  186. }
  187. .skill-title{
  188. color: #727272;
  189. font-size: 16px;
  190. line-height: 1.6;
  191. display: block;
  192. margin-bottom: 20px;
  193. }
  194. .skills-item:not(:last-child) {
  195. margin-bottom: 30px;
  196. }
  197. .skill-wrap{
  198. position: relative;
  199. height: 4px;
  200. background: #c4c4c4;
  201. }
  202. .skill{
  203. position: absolute;
  204. top: 0;
  205. bottom: 0;
  206. left: 0;
  207. background: #34357a;
  208. }
  209. .work{
  210. display: flex;
  211. flex-direction: column;
  212. align-items: center;
  213. }
  214. .center{
  215. width: 50%;
  216. padding: 0 80px;
  217. text-align: center;
  218. }
  219. .video{
  220. position: relative;
  221. }
  222. .video-triangle{
  223. position: absolute;
  224. left: calc(50% - 50px);
  225. top: calc(50% - 50px);
  226. }
  227. .puzzle{
  228. display: flex;
  229. flex-wrap: wrap;
  230. }
  231. .part{
  232. width: 25%;
  233. }
  234. .view{
  235. position: relative;
  236. }
  237. .eye{
  238. position: absolute;
  239. top: 50%;
  240. left: 50%;
  241. transform: translate(-50%, -50%);
  242. width: 150px;
  243. }
  244. .dark-lap{
  245. width: 100%;
  246. }
  247. .microsoft{
  248. display: flex;
  249. flex-wrap: wrap;
  250. justify-content: space-between;
  251. margin: 70px auto 70px auto;
  252. }
  253. .textar{
  254. display: flex;
  255. flex-direction: column;
  256. align-items: center;
  257. }
  258. .cont{
  259. max-width: 540px;
  260. margin: 0 auto;
  261. display: flex;
  262. flex-direction: column;
  263. }
  264. .text-top{
  265. display: flex;
  266. justify-content: space-between;
  267. }
  268. .inp{
  269. height: 50px;
  270. width: 250px;
  271. border: none;
  272. }
  273. .text-bot{
  274. justify-content: center;
  275. }
  276. .inp-bot{
  277. width: 100%;
  278. height: 170px;
  279. margin: 20px 0 70px 0;
  280. border: none;
  281. }
  282. ::-webkit-input-placeholder {
  283. color: #5F5D5D;
  284. position: absolute;
  285. top: 17px;
  286. left: 20px;
  287. }
  288. ::-moz-placeholder{
  289. color: #5F5D5D;
  290. position: absolute;
  291. top: 17px;
  292. left: 20px;
  293. }
  294. :-ms-input-placeholder{
  295. color: #5F5D5D;
  296. position: absolute;
  297. top: 17px;
  298. left: 20px;
  299. }
  300. .mid{
  301. margin: 0 auto;
  302. max-width: 200px;
  303. }
  304. .bot-title{
  305. font-family: 'Roboto';
  306. font-style: normal;
  307. font-weight: 500;
  308. font-size: 21px;
  309. line-height: 25px;
  310. color: #FFFFFF;
  311. margin-bottom: 20px;
  312. }
  313. .bot-txt{
  314. font-family: 'Roboto';
  315. font-style: normal;
  316. font-weight: 400;
  317. font-size: 13px;
  318. line-height: 21px;
  319. color: #FFFFFF;
  320. margin-bottom: 50px;
  321. }
  322. .footer{
  323. display: flex;
  324. justify-content: space-between;
  325. }
  326. .bot-left{
  327. display: flex;
  328. flex-direction: column;
  329. justify-content: center;
  330. }
  331. .bot-right{
  332. display: flex;
  333. justify-content: space-around;
  334. align-items: center;
  335. }
  336. .bot-right img{
  337. margin-left: 22px;
  338. }
  339. @media (max-width: 1024px){
  340. .microsoft{
  341. justify-content: center;
  342. }
  343. .micr-img{
  344. margin: 0 15px;
  345. }
  346. }
  347. @media (max-width: 768px){
  348. .about-txt{
  349. padding-bottom: 20px;
  350. }
  351. .right{
  352. display: flex;
  353. align-items: center;
  354. }
  355. .burger{
  356. display: block;
  357. height: 16px;
  358. width: 26px;
  359. position: relative;
  360. cursor: pointer;
  361. margin-top: 45px;
  362. }
  363. .burger::before,
  364. .burger::after{
  365. content: "";
  366. }
  367. .burger::before,
  368. .burger span,
  369. .burger::after{
  370. height: 2px;
  371. position: absolute;
  372. left: 0;
  373. right: 0;
  374. background: #000000;
  375. border-radius: 2px;
  376. }
  377. .burger::before{
  378. top: 0;
  379. }
  380. .burger span{
  381. top: 7px;
  382. }
  383. .burger::after{
  384. bottom: 0;
  385. }
  386. .nav {
  387. position: absolute;
  388. opacity: 0;
  389. visibility: hidden;
  390. }
  391. #burger:checked ~ .nav {
  392. transition: all .3s ease-in-out;
  393. opacity: 1;
  394. visibility: visible;
  395. position: absolute;
  396. right: 0;
  397. top: 50px;
  398. background: #EEEFF1;
  399. opacity: .9;
  400. display: flex;
  401. flex-direction: column;
  402. }
  403. #burger:checked + .burger::before{
  404. transition: transform .3s ease-in-out;
  405. transform: rotate(45deg);
  406. top: 7px;
  407. }
  408. #burger:checked + .burger::after{
  409. transition: transform .3s ease-in-out;
  410. transform: rotate(-45deg);
  411. bottom: 7px;
  412. }
  413. #burger:checked + .burger span{
  414. opacity: 0;
  415. }
  416. .center{
  417. width: 100%;
  418. padding: 0;
  419. }
  420. .project-list{
  421. flex-wrap: wrap;
  422. }
  423. .project{
  424. padding: 35px 0;
  425. width: 33.333%;
  426. }
  427. .inp{
  428. width: 45%;
  429. }
  430. }
  431. @media ( max-width: 480px){
  432. .right{
  433. display: flex;
  434. align-items: center;
  435. }
  436. .burger{
  437. display: block;
  438. height: 16px;
  439. width: 26px;
  440. position: relative;
  441. cursor: pointer;
  442. margin-top: 45px;
  443. }
  444. .burger::before,
  445. .burger::after{
  446. content: "";
  447. }
  448. .burger::before,
  449. .burger span,
  450. .burger::after{
  451. height: 2px;
  452. position: absolute;
  453. left: 0;
  454. right: 0;
  455. background: #000000;
  456. border-radius: 2px;
  457. }
  458. .burger::before{
  459. top: 0;
  460. }
  461. .burger span{
  462. top: 7px;
  463. }
  464. .burger::after{
  465. bottom: 0;
  466. }
  467. .nav {
  468. position: absolute;
  469. opacity: 0;
  470. visibility: hidden;
  471. }
  472. #burger:checked ~ .nav {
  473. transition: all .3s ease-in-out;
  474. opacity: 1;
  475. visibility: visible;
  476. position: absolute;
  477. right: 0;
  478. top: 50px;
  479. background: #EEEFF1;
  480. opacity: .9;
  481. display: flex;
  482. flex-direction: column;
  483. }
  484. #burger:checked + .burger::before{
  485. transition: transform .3s ease-in-out;
  486. transform: rotate(45deg);
  487. top: 7px;
  488. }
  489. #burger:checked + .burger::after{
  490. transition: transform .3s ease-in-out;
  491. transform: rotate(-45deg);
  492. bottom: 7px;
  493. }
  494. #burger:checked + .burger span{
  495. opacity: 0;
  496. }
  497. .design{
  498. flex-direction: column;
  499. align-items: center;
  500. }
  501. .txt{
  502. width: 100%;
  503. display: flex;
  504. flex-direction: column;
  505. align-items: center;
  506. }
  507. .about-txt{
  508. width: 100%;
  509. }
  510. .project-list{
  511. flex-wrap: wrap;
  512. }
  513. .project{
  514. padding: 35px 0;
  515. }
  516. .center{
  517. width: 100%;
  518. padding: 0;
  519. }
  520. .header-bg{
  521. padding-bottom: 55px;
  522. }
  523. .microsoft{
  524. margin: 0;
  525. }
  526. .part{
  527. width: 50%;
  528. }
  529. .inp{
  530. width: 45%;
  531. }
  532. .section-skill{
  533. padding: 30px 0;
  534. }
  535. .skill-row{
  536. flex-direction: column-reverse;
  537. }
  538. .skill-col{
  539. width: 90%;
  540. }
  541. .skill-text{
  542. padding: 0;
  543. }
  544. .video-triangle{
  545. width: 25%;
  546. left: calc(50% - 35px);
  547. top: calc(50% - 35px);
  548. }
  549. .bot-right{
  550. margin-right: 10px
  551. }
  552. }
  553. @media (max-width: 320px){
  554. .design-title{
  555. text-align: center;
  556. }
  557. .about{
  558. margin-top: -70px;
  559. }
  560. .section-skill{
  561. padding: 30px 0;
  562. }
  563. .skill-row{
  564. flex-direction: column-reverse;
  565. }
  566. .skill-col{
  567. width: 90%;
  568. }
  569. .skill-text{
  570. padding: 0;
  571. }
  572. .video-triangle{
  573. width: 25%;
  574. left: calc(50% - 35px);
  575. top: calc(50% - 35px);
  576. }
  577. .bot-right{
  578. margin-right: 10px
  579. }
  580. }