main.css 16 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018
  1. body {
  2. font-family: 'Open Sans', 'Arial', 'Helvetica Neue', 'Helvetica', sans-serif;
  3. }
  4. #wrapper {
  5. width: 100%;
  6. overflow: hidden;
  7. min-height: 100vh;
  8. display: flex;
  9. flex-direction: column;
  10. }
  11. #header {
  12. padding: 15px 0;
  13. width: 100%;
  14. position: relative;
  15. z-index: 99;
  16. }
  17. .container {
  18. margin: 0 auto;
  19. width: 100%;
  20. max-width: 1250px;
  21. padding: 0 15px;
  22. }
  23. .header_content {
  24. display: flex;
  25. justify-content: space-between;
  26. align-items: center;
  27. }
  28. .logo img {
  29. width: 68px;
  30. }
  31. .logo img:hover {
  32. border: 0.3px solid rgb(192, 186, 243);
  33. }
  34. .menu {
  35. display: flex;
  36. flex-wrap: wrap;
  37. margin: 0 0 8px;
  38. padding: 0;
  39. }
  40. .menu a {
  41. text-decoration: none;
  42. color:rgb(68, 67, 67);
  43. }
  44. .menu a:after {
  45. content: "";
  46. display: block;
  47. position: relative;
  48. width: 0px;
  49. padding-top: 2px;
  50. left: 50%;
  51. transform: translateX(-50%);
  52. border-bottom: 1px solid #4758d6;
  53. transition: all ease 0.5s;
  54. }
  55. a:hover:after{
  56. width: 30px;
  57. }
  58. .menu a:hover {
  59. color: #4758d6;
  60. }
  61. .menu li {
  62. list-style-type: none;
  63. margin-left: 40px;
  64. }
  65. .burger,
  66. #menu_btn {
  67. display: none;
  68. }
  69. .columns {
  70. display: flex;
  71. justify-content: flex-end;
  72. align-items: center;
  73. }
  74. .section_one {
  75. display: flex;
  76. position: relative;
  77. width: 100%;
  78. padding: 90px;
  79. align-items: center;
  80. background: url(../img/bg-01.jpg) no-repeat center center;
  81. background-size: cover;
  82. z-index: 2;
  83. }
  84. .section_one:before {
  85. content: "";
  86. display: block;
  87. position: absolute;
  88. top: 0;
  89. left: 0;
  90. height: 100%;
  91. width: 100%;
  92. background: rgb(87, 100, 209);
  93. opacity: 0.8;
  94. z-index: -1;
  95. }
  96. .col2 {
  97. margin-left: 130px;
  98. }
  99. .col2 h1 {
  100. color: white;
  101. font-size: 50px;
  102. margin-top: 50px;
  103. text-transform: uppercase;
  104. line-height: 1.5;
  105. }
  106. .col2 h3 {
  107. color: white;
  108. font-size: 40px;
  109. font-family: 'FREESCPT';
  110. }
  111. .form {
  112. width: 100%;
  113. max-width: 300px;
  114. background: white;
  115. border-radius: 20px;
  116. padding: 10px 30px 30px 30px;
  117. margin-right: 50px;
  118. }
  119. .form select,
  120. .form input {
  121. display: block;
  122. width: 100%;
  123. border-radius: 8px;
  124. background: rgb(245, 244, 244);
  125. color: rgb(139, 139, 139);
  126. font-size: 15px;
  127. line-height: 18px;
  128. padding: 14px 10px;
  129. height: 50px;
  130. border: 0px;
  131. box-shadow: none;
  132. margin-bottom: 24px;
  133. }
  134. .form input:focus {
  135. outline: 2px solid blue;
  136. }
  137. .form .btn {
  138. width: 170px;
  139. display: block;
  140. margin: 0 0 0 auto;
  141. }
  142. .btn {
  143. display: inline-block;
  144. vertical-align: top;
  145. text-decoration: none;
  146. padding: 16px 10px;
  147. border-radius: 6px;
  148. background: linear-gradient(to bottom, rgb(92, 106, 212) 0%,rgb(90, 107, 235) 100%);
  149. color: rgb(251, 249, 249);
  150. font-weight: 700;
  151. text-align: center;
  152. line-height: 18px;
  153. font-size: 16px;
  154. border: 1px solid #fff;
  155. }
  156. .form .btn:hover {
  157. background: linear-gradient(to bottom, rgb(117, 128, 206) 0%,rgb(64, 82, 211) 100%);
  158. }
  159. .form h3 {
  160. color: rgb(79, 93, 199);
  161. font-size: 25px;
  162. }
  163. .cards1 {
  164. text-align: center;
  165. padding-top: 90px;
  166. }
  167. .cards1 h2 {
  168. color: rgb(79, 93, 199);
  169. text-transform: uppercase;
  170. font-size: 30px;
  171. }
  172. .cards1 h3 {
  173. font-weight: 500;
  174. color: lightslategray;
  175. font-family: 'FREESCPT';
  176. font-size: 40px;
  177. line-height: 0.1;
  178. padding-bottom: 30px;
  179. }
  180. .cards2 {
  181. display: flex;
  182. flex-wrap: wrap;
  183. padding: 0;
  184. }
  185. .cards2 li {
  186. list-style-type: none;
  187. padding: 0 15px 25px;
  188. width: calc(100% / 2);
  189. }
  190. .list_text {
  191. padding-left: 30px;
  192. padding-top: 35px;
  193. }
  194. .list_1,
  195. .list_2,
  196. .list_3,
  197. .list_4 {
  198. display: flex;
  199. flex-direction: row;
  200. box-shadow: rgb(0 0 0 / 10%) 5px 5px 20px 0px;
  201. }
  202. .list_img img {
  203. height: 100%;
  204. }
  205. .list_text p {
  206. font-size: 13px;
  207. line-height: 1.7;
  208. width: 85%;
  209. }
  210. .list_text span > a {
  211. text-decoration: none;
  212. color: lightslategray;
  213. font-size: 14px;
  214. }
  215. .list_text span > a:hover {
  216. text-decoration: underline;
  217. }
  218. .list_text h4 > a {
  219. text-decoration: none;
  220. color: lightslategray;
  221. font-size: 20px;
  222. }
  223. .list_text h4 > a:hover {
  224. text-decoration: underline;
  225. }
  226. .section_three {
  227. width: 100%;
  228. }
  229. .photos {
  230. display: flex;
  231. flex-wrap: wrap;
  232. justify-content: space-between;
  233. width: 100%;
  234. margin: 0;
  235. padding: 0;
  236. padding-top: 150px;
  237. }
  238. .photos li {
  239. position: relative;
  240. width: 25%;
  241. padding: 0;
  242. cursor: pointer;
  243. list-style-type: none;
  244. }
  245. .photos li:before {
  246. content: "";
  247. position: absolute;
  248. left: 0;
  249. right: 0;
  250. top: 0;
  251. bottom: 0;
  252. background: rgb(117, 130, 231);
  253. text-align: center;
  254. opacity: 0;
  255. transition: opacity 0.7s ease-in-out;
  256. }
  257. .photos li:after {
  258. position: absolute;
  259. content: "\e986";
  260. left: 50%;
  261. top: 50%;
  262. transform: translate(-50%, -50%) scale(0);
  263. font-family: "icomoon";
  264. font-size: 20px;
  265. width: 40px;
  266. height: 40px;
  267. border-radius: 50%;
  268. background: white;
  269. color: rgb(117, 130, 231);
  270. line-height: 40px;
  271. text-align: center;
  272. opacity: 0;
  273. transition: all 0.4s 0.4s;
  274. }
  275. .photos li:hover:before {
  276. opacity: 0.8;
  277. font-size: 20px;
  278. }
  279. .photos img {
  280. width: 100%;
  281. height: 100%;
  282. }
  283. .photos li:hover:after {
  284. opacity: 1;
  285. transform: translate(-50%, -50%) scale(1);
  286. }
  287. .section_four {
  288. padding-top: 170px;
  289. padding-bottom: 170px;
  290. }
  291. .about_container {
  292. display: flex;
  293. position: relative;
  294. align-items: center;
  295. justify-content: space-between;
  296. flex-wrap: wrap;
  297. padding-right: 40px;
  298. }
  299. .about_body {
  300. width: 50%;
  301. }
  302. .text_part {
  303. padding-right: 19%;
  304. }
  305. .about_body h2 {
  306. color: rgb(79, 93, 199);
  307. text-transform: uppercase;
  308. font-size: 30px;
  309. }
  310. .about_body p {
  311. font-size: 14px;
  312. line-height: 1.5;
  313. color: #777;
  314. }
  315. .swiper-container {
  316. position: relative;
  317. width: 50%;
  318. box-shadow: rgb(0 0 0 / 10%) 5px 5px 15px;
  319. }
  320. .swiper-slide {
  321. width: 100%;
  322. padding-top: 52%;
  323. background-size: cover;
  324. border-radius: 7px;
  325. }
  326. .swiper-button-next,
  327. .swiper-button-prev {
  328. position: absolute;
  329. background: #fff;
  330. border-radius: 50% 50%;
  331. width: 50px;
  332. height: 50px;
  333. box-shadow: 5px 5px 20px 0 rgb(0 0 0 / 15%);
  334. }
  335. .swiper-button-next {
  336. left: 95%;
  337. }
  338. .swiper-button-prev {
  339. left: 46%;
  340. }
  341. .swiper-button-next:after, .swiper-button-prev:after {
  342. font-size: 20px;
  343. }
  344. .swiper-img1 {
  345. background-image: url(../img/img-13.jpg);
  346. }
  347. .swiper-img2 {
  348. background-image: url(../img/img-13.jpg);
  349. }
  350. .swiper-img3 {
  351. background-image: url(../img/img-13.jpg);
  352. }
  353. .section_five {
  354. position: relative;
  355. background-size: cover;
  356. background-position: 50% 50%;
  357. background-image: url(../img/bg-02.jpg);
  358. padding: 125px 0 75px;
  359. background-color: #5363db;
  360. }
  361. .section_five:after {
  362. content: "";
  363. position: absolute;
  364. top: 0;
  365. left: 0;
  366. right: 0;
  367. bottom: 0;
  368. background: #5363db;
  369. opacity: .8;
  370. }
  371. .section_five .container {
  372. position: relative;
  373. z-index: 3;
  374. }
  375. .info_icons {
  376. display: flex;
  377. flex-wrap: wrap;
  378. justify-content: center;
  379. margin: 0 -15px;
  380. list-style: none;
  381. color: #fff;
  382. text-align: center;
  383. line-height: 1.7;
  384. padding: 0;
  385. }
  386. .info_icons li {
  387. width: 25%;
  388. margin-bottom: 60px;
  389. padding: 0 15px;
  390. }
  391. .info_body h3 {
  392. text-transform: uppercase;
  393. line-height: 1.5;
  394. }
  395. .info_body span {
  396. display: flex;
  397. align-items: center;
  398. justify-content: center;
  399. margin: 0 auto;
  400. width: 70px;
  401. height: 70px;
  402. border: 2px solid #fff;
  403. border-radius: 50% 50%;
  404. }
  405. .section_six {
  406. background: url(../images/bg-03.jpg) no-repeat;
  407. background-position: 100% 100%;
  408. background-size: auto 100%;
  409. padding: 100px 0;
  410. }
  411. .content_box {
  412. display: flex;
  413. flex-wrap: wrap;
  414. justify-content: center;
  415. list-style: none;
  416. padding: 0;
  417. }
  418. .content_box > li {
  419. width: calc(100% / 3);
  420. padding: 0 15px 30px;
  421. display: flex;
  422. }
  423. .box {
  424. display: flex;
  425. flex-direction: column;
  426. width: 100%;
  427. text-align: center;
  428. color: #555;
  429. line-height: 1.2;
  430. box-shadow: 9px 9px 50px rgb(0 0 0 / 10%);
  431. border-radius: 20px;
  432. overflow: hidden;
  433. background: #fff;
  434. }
  435. .box_text {
  436. padding: 50px 20px;
  437. text-transform: uppercase;
  438. background: #5b6ceb;
  439. color: #fff;
  440. font-size: 25px;
  441. line-height: 24px;
  442. font-weight: bold;
  443. }
  444. .number {
  445. font-size: 70px;
  446. }
  447. .box_body {
  448. display: flex;
  449. width: 100%;
  450. flex-direction: column;
  451. justify-content: space-between;
  452. flex-grow: 1;
  453. margin-bottom: 10px;
  454. }
  455. .box_list {
  456. list-style: none;
  457. padding: 0;
  458. text-transform: uppercase;
  459. margin-bottom: 25px;
  460. }
  461. .box_list > li {
  462. position: relative;
  463. margin: 20px 0 0;
  464. padding: 20px 0 0;
  465. font-size: 20px;
  466. }
  467. .box_list > li:not(:first-child):after {
  468. position: absolute;
  469. content: '';
  470. left: 50%;
  471. top: 0;
  472. width: 100px;
  473. height: 1px;
  474. transform: translateX(-50%);
  475. background: #d7d7d7;
  476. }
  477. .btn2 {
  478. display: inline-block;
  479. width: 170px;
  480. padding: 15px 10px;
  481. background: #5b6ceb;
  482. border-radius: 20px;
  483. color: #fff;
  484. text-decoration: none;
  485. font-weight: bold;
  486. text-align: center;
  487. margin-bottom: 40px;
  488. }
  489. .button-wrap .btn2:hover {
  490. background: linear-gradient(to bottom, rgb(117, 128, 206) 0%,rgb(64, 82, 211) 100%);
  491. }
  492. #footer {
  493. color: white;
  494. background-color:rgb(90, 105, 221);
  495. margin-top: auto;
  496. margin-bottom: 0;
  497. }
  498. .upper_section {
  499. display: flex;
  500. flex-direction: row;
  501. padding-top: 70px;
  502. padding-bottom: 90px;
  503. }
  504. .about {
  505. width: 40%;
  506. margin-right: 130px;
  507. }
  508. .about h4 {
  509. padding-bottom: 35px;
  510. font-size: 18px;
  511. }
  512. .about p {
  513. padding-bottom: 50px;
  514. }
  515. .menu_icon ul {
  516. padding: 0;
  517. list-style-type: none;
  518. display: flex;
  519. flex-direction: row;
  520. justify-content: flex-start;
  521. }
  522. .menu_icon a {
  523. text-decoration: none;
  524. padding-right: 10px;
  525. font-size: 22px;
  526. color: white;
  527. }
  528. .menu_icon a:hover {
  529. color: rgb(211, 205, 241);
  530. }
  531. .contact {
  532. width: 50%;
  533. }
  534. .contact h4 {
  535. font-size: 18px;
  536. }
  537. .blocks {
  538. display: flex;
  539. }
  540. .first_block {
  541. display: flex;
  542. flex-direction: column;
  543. padding-top:22px;
  544. }
  545. .list_address {
  546. display: flex;
  547. }
  548. .list_address a {
  549. text-decoration: none;
  550. color: white;
  551. font-size: 20px;
  552. padding-right: 15px;
  553. }
  554. .list_address a:hover {
  555. color: rgb(211, 205, 241);
  556. }
  557. .second_block {
  558. display: flex;
  559. flex-direction: column;
  560. padding-left: 90px;
  561. padding-top: 20px;
  562. }
  563. .list_numbers {
  564. display: flex;
  565. }
  566. .list_tel {
  567. padding-left: 14px;
  568. }
  569. .list_tel li {
  570. list-style-type: none;
  571. padding-bottom: 7px;
  572. }
  573. .list_tel a {
  574. color: white;
  575. text-decoration: none;
  576. }
  577. .list_tel a:hover {
  578. color: rgb(211, 205, 241);
  579. }
  580. .list_icon {
  581. padding-top: 20px;
  582. padding-left: 3px;
  583. }
  584. .list_icon a:hover {
  585. color: rgb(211, 205, 241);
  586. }
  587. .icon-phone {
  588. color: white;
  589. text-decoration: none;
  590. font-size: 18px;
  591. }
  592. .mail_one {
  593. padding-bottom: 35px;
  594. }
  595. .mail_one a:hover {
  596. color: rgb(211, 205, 241);
  597. }
  598. .mail_one a {
  599. text-decoration: none;
  600. color: white;
  601. }
  602. .upper_section .icon-envelop:before {
  603. padding-right: 10px;
  604. }
  605. .mail_two a {
  606. text-decoration: none;
  607. color: white;
  608. }
  609. .mail_two a:hover {
  610. color: rgb(211, 205, 241);
  611. }
  612. .footer_content .icon-dribbble:before {
  613. padding-right: 10px;
  614. }
  615. .bottom_section {
  616. text-align: center;
  617. padding: 40px 0;
  618. background: rgb(81, 97, 221);
  619. }
  620. .copyright {
  621. color: rgb(166, 173, 230);
  622. font-size: 18px;
  623. }
  624. .copyright a {
  625. color: rgb(166, 173, 230);
  626. text-decoration: none;
  627. font-size: 18px;
  628. }
  629. @media (max-width:1200px) {
  630. .list_1,
  631. .list_2,
  632. .list_3,
  633. .list_4 {
  634. flex-direction: column;
  635. }
  636. .list_text {
  637. padding-bottom: 20px;
  638. padding-top: 5px;
  639. }
  640. .list_img img {
  641. width: 100%;
  642. }
  643. }
  644. @media (max-width:992px) {
  645. .upper_section {
  646. display: flex;
  647. flex-direction: column;
  648. padding-top: 30px;
  649. padding-bottom: 40px;
  650. }
  651. .about {
  652. width: 100%;
  653. }
  654. .about h4 {
  655. padding-bottom: 20px;
  656. }
  657. .about p {
  658. padding-bottom: 30px;
  659. }
  660. .contact {
  661. width: 100%;
  662. }
  663. .second_block {
  664. padding-left: 160px;
  665. }
  666. .col2 h1 {
  667. font-size: 35px;
  668. }
  669. .section_four {
  670. padding-top: 70px;
  671. padding-bottom: 70px;
  672. }
  673. .content_box > li {
  674. width: calc(100% / 2);
  675. }
  676. .swiper-button-next {
  677. left: 93%;
  678. }
  679. .swiper-button-prev {
  680. left: 44%;
  681. }
  682. }
  683. @media (max-width:768px) {
  684. #nav {
  685. display: flex;
  686. justify-content: flex-end;
  687. flex-grow: 1;
  688. padding: 0 10px;
  689. }
  690. .menu li {
  691. display: flex;
  692. justify-content: center;
  693. line-height: 2;
  694. font-size: 15px;
  695. background: white;
  696. }
  697. .burger {
  698. position: relative;
  699. z-index: 9;
  700. display: block;
  701. width: 40px;
  702. height: 30px;
  703. font-size: 0;
  704. }
  705. .burger:before,
  706. .burger:after,
  707. .burger span {
  708. position: absolute;
  709. content: '';
  710. display: block;
  711. height: 4px;
  712. width: 40px;
  713. background: #4758d6;
  714. left: 50%;
  715. transform: translateX(-50%);
  716. transition: all .8s;
  717. }
  718. .burger:before {
  719. top: 0;
  720. }
  721. .burger:after {
  722. top: calc(100% - 4px);
  723. }
  724. .burger span {
  725. top: 50%;
  726. margin-top: -2px;
  727. transition: opacity .5s .5s;
  728. }
  729. #nav ul li {
  730. margin: 0;
  731. }
  732. #nav ul {
  733. position: absolute;
  734. left: 0;
  735. display: block;
  736. text-align: center;
  737. z-index: -1;
  738. width: 100%;
  739. min-height: 100vh;
  740. top: -150vh;
  741. transition: top 1.5s;
  742. }
  743. #menu_btn:checked ~ ul {
  744. top: 100%;
  745. }
  746. #menu_btn:checked ~ .burger:after {
  747. top: 50%;
  748. transform: translate(-50%, -50%) rotate(45deg);
  749. }
  750. #menu_btn:checked ~ .burger:before {
  751. top: 50%;
  752. transform: translate(-50%, -50%) rotate(-45deg);
  753. }
  754. #menu_btn:checked ~ .burger span {
  755. opacity: 0;
  756. transition: opacity .5s;
  757. }
  758. .copyright a {
  759. font-size: 16px;
  760. }
  761. .copyright {
  762. font-size: 16px;
  763. }
  764. .columns {
  765. flex-direction: column;
  766. justify-content: center;
  767. }
  768. .col2 {
  769. margin: 0;
  770. }
  771. .col2 h1 {
  772. text-align: center;
  773. }
  774. .col2 h3 {
  775. text-align: center;
  776. }
  777. .cards1 {
  778. padding-top: 40px;
  779. }
  780. .photos {
  781. padding-top: 70px;
  782. }
  783. .photos li {
  784. width: 50%;
  785. }
  786. .about_body {
  787. width: 100%;
  788. }
  789. .swiper-container {
  790. width: 100%;
  791. }
  792. .swiper-button-next {
  793. top: 66%;
  794. left: 95%;
  795. }
  796. .swiper-button-prev {
  797. top: 66%;
  798. left: -25px;
  799. }
  800. .info_icons li {
  801. width: calc(100% / 2);
  802. }
  803. .content_box > li {
  804. width: 100%;
  805. }
  806. .swiper-button-next {
  807. left: 91%;
  808. top: 70%;
  809. }
  810. .swiper-button-prev {
  811. left: 1%;
  812. top: 70%;
  813. }
  814. .about_container {
  815. padding: 0;
  816. }
  817. }
  818. @media (max-width: 570px) {
  819. .blocks {
  820. display: flex;
  821. flex-direction: column;
  822. }
  823. .second_block {
  824. padding-left: 0;
  825. }
  826. .copyright a {
  827. font-size: 14px;
  828. }
  829. .copyright {
  830. font-size: 14px;
  831. }
  832. .form {
  833. margin-left: 0;
  834. }
  835. .cards2 li {
  836. width: 100%;
  837. }
  838. .info_icons li {
  839. width: 100%;
  840. }
  841. .swiper-button-next {
  842. left: 89%;
  843. top: 75%;
  844. }
  845. .swiper-button-prev {
  846. left: 0%;
  847. top: 75%;
  848. }
  849. }