App.css 10 KB

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