App.css 11 KB

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