style.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666
  1. *,
  2. *:after,
  3. *:before {
  4. box-sizing: border-box;
  5. }
  6. body{
  7. font: 14px/1.57 ;
  8. font-family: 'Open Sans', sans-serif;
  9. color: rgb(96, 96, 96);
  10. }
  11. .wrapper{
  12. display: flex;
  13. flex-direction: column;
  14. max-height: 100vh;
  15. }
  16. .header{
  17. display: flex;
  18. background:#fff;
  19. justify-content: center;
  20. padding: 15px;
  21. }
  22. .header-nav{
  23. display: flex;
  24. align-items: center;
  25. }
  26. .header-burger{
  27. display: none;
  28. }
  29. .header-menu{
  30. display: inline-flex;
  31. }
  32. .header-logo{
  33. display: inline-flex;
  34. align-items: center;
  35. margin: 0 125px ;
  36. }
  37. .header-logo img{
  38. margin-left: -50%;
  39. }
  40. .header-menu a{
  41. text-decoration: none;
  42. color: rgb(96, 96, 96);
  43. margin:0 20px;
  44. left: 100%;
  45. }
  46. .header-menu a:hover{
  47. color: rgb(83, 99, 219);
  48. border-bottom: 2px solid rgb(83, 99, 219);
  49. width: 30px;
  50. }
  51. #menu__toggle {
  52. opacity: 0;
  53. }
  54. .menu__btn {
  55. display: flex;
  56. align-items: center;
  57. position: fixed;
  58. top: 20px;
  59. left: 20px;
  60. width: 26px;
  61. height: 26px;
  62. cursor: pointer;
  63. opacity: 0;
  64. z-index: 99;
  65. }
  66. .menu__btn > span,
  67. .menu__btn > span::before,
  68. .menu__btn > span::after {
  69. display: block;
  70. position: absolute;
  71. width: 100%;
  72. height: 2px;
  73. background-color: #616161;
  74. }
  75. .menu__btn > span::before {
  76. content: '';
  77. top: -8px;
  78. }
  79. .menu__btn > span::after {
  80. content: '';
  81. top: 8px;
  82. }
  83. .intro{
  84. display: flex;
  85. position: relative;
  86. background:url('../img/img-visual.jpg');
  87. background-size: cover ;
  88. background-position: 50% 50%;
  89. justify-content: center;
  90. align-items: center;
  91. height: calc(100vh - 98px);
  92. padding:15px;
  93. }
  94. .intro:after{
  95. content:'';
  96. top: 0;
  97. left: 0;
  98. bottom: 0;
  99. right: 0;
  100. position: absolute;
  101. background-color: rgba(83, 99, 219, 0.7);
  102. }
  103. .intro-form{
  104. display: flex;
  105. background: #fff;
  106. flex-direction: column;
  107. z-index:100;
  108. border-radius: 20px;
  109. margin-left: 10vw;
  110. }
  111. .intro-form p{
  112. color: rgba(83, 99, 219);
  113. margin: 40px 30px 10px;
  114. }
  115. .btn{
  116. background: rgba(83, 99, 219);
  117. color: #fff;
  118. border-radius: 10px;
  119. border:none;
  120. margin: 25px 25px 35px 75px;
  121. max-width: 180px;
  122. height: 55px;
  123. }
  124. .btn a{
  125. text-decoration: none;
  126. color: #fff;
  127. }
  128. input[type="text"],
  129. select {
  130. display: inline-flex;
  131. height: 50px;
  132. border-radius: 3px;
  133. box-shadow: none;
  134. border: 1px solid #ccc;
  135. padding: 3px;
  136. width:230px;
  137. margin: 20px 40px 0 30px;
  138. background: #d5d5d5;
  139. }
  140. .intro-text{
  141. color:#fff ;
  142. z-index: 100;
  143. margin-left: 100px;
  144. }
  145. .intro-text H1{
  146. font-size: 48px;
  147. font-weight: 800;
  148. line-height: 70px;
  149. margin-bottom: 70px;
  150. }
  151. .intro-text p{
  152. font-family: 'Satisfy', cursive;
  153. font-size: 1.8em;
  154. }
  155. .info{
  156. height: auto;
  157. align-content: center;
  158. }
  159. .info-container{
  160. margin-bottom: 100px;
  161. }
  162. .info-box{
  163. display: flex;
  164. flex-wrap: nowrap;
  165. background: #fff;
  166. margin: 15px;
  167. border-radius: 10px;
  168. overflow-x: hidden;
  169. box-shadow: 0px 0px 18px -4px rgba(0,0,0,0.75);
  170. }
  171. .info-box img{
  172. object-fit:cover;
  173. width: 270px;
  174. height: 300px;
  175. overflow-x: hidden;
  176. }
  177. .info-txt{
  178. width: 300px;
  179. text-align: left;
  180. align-items: center;
  181. padding: 50px 30px;
  182. }
  183. .info-txt h3{
  184. font-weight: 600;
  185. margin-bottom: 30px;
  186. }
  187. .info-txt p{
  188. margin-bottom: 30px;
  189. }
  190. .info-txt span{
  191. font-size: 0.9em;
  192. color: #CDCCCC;
  193. }
  194. .info-content{
  195. display: flex;
  196. justify-content: center;
  197. align-content: center;
  198. }
  199. .info-text{
  200. margin:100px 0;
  201. align-items: center;
  202. text-align: center;
  203. }
  204. .info-text h2{
  205. color:rgb(83,96,219);
  206. font-size: 2em;
  207. font-weight: 600;
  208. margin: 15px;
  209. }
  210. .info-text p{
  211. font-family: 'Satisfy', cursive;
  212. font-size: 1.5em;
  213. margin: 15px;
  214. }
  215. .ch-box{
  216. display: flex;
  217. position: relative;
  218. background:url('../img/lotus.png');
  219. background-size: cover ;
  220. background-position: 50% 50%;
  221. justify-content: center;
  222. align-items: center;
  223. /* height: calc(100vh - 98px);*/
  224. padding:15px;
  225. }
  226. .card-holder {
  227. display: flex;
  228. justify-content: center;
  229. }
  230. .card {
  231. display: flex;
  232. flex-direction: column;
  233. align-items: center;
  234. max-width: 475px;
  235. margin: 20px;
  236. border: solid 1px silver;
  237. border-radius: 10px;
  238. overflow-x: hidden;
  239. background: #fff;
  240. box-shadow: 0px 0px 35px -14px rgba(0,0,0,0.68);
  241. }
  242. .price {
  243. display:inline-flex;
  244. justify-content:center;
  245. background: rgb(91,108,235);
  246. width: 100%;
  247. max-width: 100%;
  248. padding:50px;
  249. }
  250. .price h3{
  251. font-size: 3em;
  252. color:#fff;
  253. margin:-10px 0 0 0;
  254. }
  255. .price p {
  256. text-align: center;
  257. color: #fff;
  258. font-weight: bold;
  259. font-size: 1.5em;
  260. }
  261. .price p:last-child{
  262. margin-top: 20px;
  263. font-size: 1.2em;
  264. }
  265. .btn-cont {
  266. display: flex;
  267. background: rgb(91,108,235);
  268. text-decoration: none;
  269. color: #fff;
  270. margin-bottom: 50px;
  271. padding: 10px;
  272. border-radius: 15px;
  273. width:150px;
  274. vertical-align:middle;
  275. justify-content: center;
  276. }
  277. .card-content {
  278. display: flex;
  279. flex-direction: column;
  280. align-items: center;
  281. padding:25px 0;
  282. }
  283. .card-content p{
  284. display: block;
  285. padding: 10px;
  286. margin:15px;
  287. }
  288. .footer{
  289. display: block;
  290. left: 0;
  291. right: 0;
  292. bottom: 0;
  293. height: 10vh;
  294. background: #5063d9;
  295. }
  296. .footer-duwn{
  297. background: #586ceb;
  298. margin: 0;
  299. display: flex;
  300. justify-content: center;
  301. padding: 100px ;
  302. color: #fff;
  303. }
  304. .footer-page{
  305. display: flex;
  306. justify-content: center;
  307. color: #818fe8;
  308. align-items: center;
  309. height: 100%;
  310. }
  311. .about-duwn{
  312. width: 450px ;
  313. display: block;
  314. margin-right: 200px;
  315. }
  316. .social-networks{
  317. margin: 15px 0 0 55px;
  318. text-align: left;
  319. }
  320. .social-networks a{
  321. text-decoration: none;
  322. }
  323. .about-icon{
  324. margin: 15px;
  325. }
  326. .about-icon li{
  327. display: inline;
  328. margin: 5px;
  329. }
  330. .contact-duwm{
  331. display: flex;
  332. flex-direction: column;
  333. }
  334. .c-duwn{
  335. display: inline-flex;
  336. max-width: 500px;
  337. }
  338. .dl{
  339. margin-right: 15px 0;
  340. display: inline-flex;
  341. }
  342. .phone{
  343. display: inline-flex;
  344. }
  345. .ph0ne{
  346. display: flex;
  347. flex-direction: column;
  348. }
  349. .u-duwn{
  350. margin-left: 20px;
  351. }
  352. .u-duwn h2{
  353. font-weight: 600;
  354. }
  355. .dl a{
  356. text-decoration: none;
  357. margin: 15px 0 0 15px ;
  358. color: #fff;
  359. }
  360. .about-txt-h{
  361. margin-bottom: 15px;
  362. }
  363. .about-txt-h h2{
  364. font-weight: 600;
  365. }
  366. .photo{
  367. width: 100%;
  368. display: flex;
  369. flex-wrap: wrap;
  370. justify-content: center;
  371. }
  372. .g-photo{
  373. object-fit: cover;
  374. width: 25%;
  375. margin:-2px 0;
  376. }
  377. .g-photo img{
  378. width: 100%;
  379. }
  380. .photo a{
  381. display: block;
  382. position: relative;
  383. }
  384. .photo a:after {
  385. content: '';
  386. position: absolute;
  387. top: 0;
  388. left: 0;
  389. right: 0;
  390. bottom: 0;
  391. background: rgba(83, 99, 219, 0.7);;
  392. opacity: 0;
  393. }
  394. .photo a:before {
  395. content: '';
  396. position: absolute;
  397. top: 40%;
  398. left: 40%;
  399. right: 40%;
  400. bottom: 40%;
  401. background: url(../img/icon-search.png);
  402. opacity: 0;
  403. background-repeat:no-repeat;
  404. z-index: 256;
  405. }
  406. .photo>a:hover:before,
  407. .photo>a:hover:after {
  408. opacity: 1;
  409. }
  410. @font-face {
  411. font-family: 'icomoon';
  412. src: url('../fonts/icomoon.eot?aaw3ee');
  413. src: url('../fonts/icomoon.eot?aaw3ee#iefix') format('embedded-opentype'),
  414. url('../fonts/icomoon.ttf?aaw3ee') format('truetype'),
  415. url('../fonts/icomoon.woff?aaw3ee') format('woff'),
  416. url('../fonts/icomoon.svg?aaw3ee#icomoon') format('svg');
  417. font-weight: normal;
  418. font-style: normal;
  419. font-display: block;
  420. }
  421. [class^="icon-"], [class*=" icon-"] {
  422. /* use !important to prevent issues with browser extensions that change fonts */
  423. font-family: 'icomoon' !important;
  424. speak: none;
  425. font-style: normal;
  426. font-weight: normal;
  427. font-variant: normal;
  428. text-transform: none;
  429. line-height: 1;
  430. /* Enable Ligatures ================ */
  431. letter-spacing: 0;
  432. -webkit-font-feature-settings: "liga";
  433. -moz-font-feature-settings: "liga=1";
  434. -moz-font-feature-settings: "liga";
  435. -ms-font-feature-settings: "liga" 1;
  436. font-feature-settings: "liga";
  437. -webkit-font-variant-ligatures: discretionary-ligatures;
  438. font-variant-ligatures: discretionary-ligatures;
  439. /* Better Font Rendering =========== */
  440. -webkit-font-smoothing: antialiased;
  441. -moz-osx-font-smoothing: grayscale;
  442. }
  443. .icon-position:before {
  444. content: "\e904";
  445. color: #fff;
  446. font-size: 20px;
  447. }
  448. .icon-pinterest-p:before {
  449. content: "\e903";
  450. color: #fff;
  451. font-size: 20px;
  452. }
  453. .icon-google:before {
  454. content: "\e900";text-decoration: none;
  455. color: #fff;
  456. font-size: 20px;
  457. }
  458. .icon-facebook:before {
  459. content: "\e901";
  460. color: #fff;
  461. font-size: 20px;
  462. }
  463. .icon-twitter:before {
  464. content: "\e902";
  465. color: #fff;
  466. font-size: 20px;
  467. }
  468. .icon-phone:before {
  469. content: "\e942";
  470. color: #fff;
  471. font-size: 20px;
  472. }
  473. .icon-envelop:before {
  474. content: "\e945";
  475. color: #fff;
  476. font-size: 20px;
  477. }
  478. .icon-earth:before {
  479. content: "\e9ca";
  480. color: #fff;
  481. font-size: 20px;
  482. }
  483. .icon-instagram:before {
  484. content: "\ea92";
  485. color: #fff;
  486. font-size: 20px;
  487. }
  488. .phone{
  489. text-decoration: none;
  490. color: #fff;
  491. }
  492. @media (max-width: 960px){
  493. .header-logo img{
  494. margin-left: -26px;
  495. }
  496. .header-nav{
  497. z-index: 8000;
  498. }
  499. .header-menu{
  500. display: none;
  501. }
  502. .header-burger{
  503. display: block;
  504. position: fixed;
  505. visibility: hidden;
  506. top: -100%;
  507. left: 0;
  508. width: 100%;
  509. height: auto;
  510. margin: 0;
  511. padding: 10px 0;
  512. list-style: none;
  513. text-align: center;
  514. background-color:#7A89F6;
  515. box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
  516. z-index: -1;
  517. }
  518. .header-burger li{
  519. margin: 15px;
  520. }
  521. .menu__item {
  522. display: block;
  523. padding: 12px 24px;
  524. color: #fff;
  525. font-weight: 600;
  526. text-decoration: none;
  527. }
  528. #menu__toggle:checked ~ .menu__btn > span {
  529. transform: rotate(45deg);
  530. }
  531. #menu__toggle:checked ~ .menu__btn > span::before {
  532. top: 0;
  533. transform: rotate(0);
  534. }
  535. #menu__toggle:checked ~ .menu__btn > span::after {
  536. top: 0;
  537. transform: rotate(90deg);
  538. }
  539. #menu__toggle:checked ~ .header-burger {
  540. visibility: visible;
  541. left: 0;
  542. top: 0;
  543. z-index: 6;
  544. }
  545. .menu__btn > span,
  546. .menu__btn > span::before,
  547. .menu__btn > span::after {
  548. transition-duration: .25s;
  549. }
  550. .menu__btn{
  551. opacity: 1;
  552. }
  553. .header-burger {
  554. transition-duration: 0.25s;
  555. }
  556. .menu__item {
  557. transition-duration: 0.25s;
  558. }
  559. .intro{
  560. flex-direction: column-reverse;
  561. height: 100vh;
  562. padding: 15px;
  563. }
  564. .intro-form{
  565. margin :15px 15px;
  566. }
  567. .intro-text{
  568. text-align: center;
  569. margin-left: -0vw;
  570. }
  571. .info{
  572. display: flex;
  573. flex-direction: column;
  574. }
  575. .info-content{
  576. display: flex;
  577. flex-direction: column;
  578. }
  579. .info-txt{
  580. width: auto;
  581. align-content: center;
  582. }
  583. .info-box img{
  584. min-width: 270px;
  585. height: auto;
  586. }
  587. .info-container{
  588. margin-bottom: 15px;
  589. }
  590. .footer-duwn{
  591. flex-direction: column;
  592. padding: 100px 10px 100px 10px;
  593. }
  594. .about-duwn{
  595. width: 100%;
  596. margin: 0;
  597. margin-right: 10px;
  598. }
  599. .card{
  600. width: 90vw;
  601. }
  602. .contact-duwn{
  603. margin-top: 50px;
  604. }
  605. .c-duwn{
  606. display: flex;
  607. flex-direction: column;
  608. justify-content: center;
  609. }
  610. .card-holder {
  611. flex-direction: column;
  612. height: 100%;
  613. background-position: 25% 25%;
  614. }
  615. .about-txt-h{
  616. text-align: center;
  617. }
  618. .about-txt-p{
  619. text-align: center;
  620. }
  621. .u-duwn{
  622. text-align: center;
  623. }
  624. .info-txt{
  625. text-align: center;
  626. }
  627. .photo{
  628. width: 100%;
  629. }
  630. .g-photo{
  631. width: 50%;
  632. }}
  633. @media (max-width: 560px){
  634. .intro{
  635. flex-direction: column-reverse;
  636. height: 140vh;
  637. }
  638. .info-box img{
  639. width: 100%;
  640. }
  641. .info-box{
  642. flex-direction: column;
  643. }
  644. .text-galery{
  645. margin-bottom: 50px;
  646. }
  647. .g-photo{
  648. width: 100%;
  649. }
  650. }