style.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645
  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. font-size: 1.8em;
  115. font-weight: 500;
  116. }
  117. .btn{
  118. background: rgba(83, 99, 219);
  119. color: #fff;
  120. border-radius: 10px;
  121. border:none;
  122. margin: 25px 25px 35px 98px;
  123. width: 175px;
  124. height: 50px;
  125. /* text-decoration: none;*/
  126. font-size: 1.2em;
  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: 45px;
  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: 12px;
  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. padding:60px;
  248. }
  249. .price h3{
  250. font-size: 3em;
  251. color:#fff;
  252. margin:-10px 0 0 0;
  253. }
  254. .price p {
  255. text-align: center;
  256. color: #fff;
  257. font-weight: bold;
  258. font-size: 1.5em;
  259. }
  260. .price p:last-child{
  261. margin-top: 20px;
  262. font-size: 1.2em;
  263. }
  264. .btn-cont {
  265. display: flex;
  266. background: rgb(91,108,235);
  267. text-decoration: none;
  268. color: #fff;
  269. margin-bottom: 50px;
  270. padding: 10px;
  271. border-radius: 15px;
  272. width:150px;
  273. vertical-align:middle;
  274. justify-content: center;
  275. }
  276. .card-content {
  277. display: flex;
  278. flex-direction: column;
  279. align-items: center;
  280. padding:25px 75px;
  281. max-width: 375px;
  282. }
  283. .card-content p{
  284. display: block;
  285. padding: 10px 0;
  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;
  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. margin:0 auto;
  392. background: rgba(83, 99, 219, 0.7);;
  393. opacity: 0;
  394. }
  395. .photo a:before {
  396. content: '';
  397. position: absolute;
  398. width: 60px;
  399. height: 60px;
  400. top:calc( 50% - 30px);
  401. left:calc( 50% - 30px);;
  402. background: url(../img/icon-search.png);
  403. opacity: 0;
  404. background-repeat:no-repeat;
  405. z-index: 256;
  406. }
  407. .photo>a:hover:before,
  408. .photo>a:hover:after {
  409. opacity: 1;
  410. }
  411. @font-face {
  412. font-family: 'icomoon';
  413. src: url('../fonts/icomoon.eot?aaw3ee');
  414. src: url('../fonts/icomoon.eot?aaw3ee#iefix') format('embedded-opentype'),
  415. url('../fonts/icomoon.ttf?aaw3ee') format('truetype'),
  416. url('../fonts/icomoon.woff?aaw3ee') format('woff'),
  417. url('../fonts/icomoon.svg?aaw3ee#icomoon') format('svg');
  418. font-weight: normal;
  419. font-style: normal;
  420. font-display: block;
  421. }
  422. [class^="icon-"], [class*=" icon-"] {
  423. font-family: 'icomoon' !important;
  424. font-style: normal;
  425. font-weight: normal;
  426. font-variant: normal;
  427. text-transform: none;
  428. line-height: 1;
  429. letter-spacing: 0;
  430. font-feature-settings: "liga";
  431. -webkit-font-variant-ligatures: discretionary-ligatures;
  432. font-variant-ligatures: discretionary-ligatures;
  433. -webkit-font-smoothing: antialiased;
  434. -moz-osx-font-smoothing: grayscale;
  435. }
  436. .icon-position:before {
  437. content: "\e904";
  438. color: #fff;
  439. font-size: 20px;
  440. }
  441. .icon-pinterest-p:before {
  442. content: "\e903";
  443. color: #fff;
  444. font-size: 20px;
  445. }
  446. .icon-google:before {
  447. content: "\e900";text-decoration: none;
  448. color: #fff;
  449. font-size: 20px;
  450. }
  451. .icon-facebook:before {
  452. content: "\e901";
  453. color: #fff;
  454. font-size: 20px;
  455. }
  456. .icon-twitter:before {
  457. content: "\e902";
  458. color: #fff;
  459. font-size: 20px;
  460. }
  461. .icon-phone:before {
  462. content: "\e942";
  463. color: #fff;
  464. font-size: 20px;
  465. }
  466. .icon-envelop:before {
  467. content: "\e945";
  468. color: #fff;
  469. font-size: 20px;
  470. }
  471. .icon-earth:before {
  472. content: "\e9ca";
  473. color: #fff;
  474. font-size: 20px;
  475. }
  476. .icon-instagram:before {
  477. content: "\ea92";
  478. color: #fff;
  479. font-size: 20px;
  480. }
  481. .phone{
  482. text-decoration: none;
  483. color: #fff;
  484. }
  485. @media (max-width: 960px){
  486. .header-logo img{
  487. margin-left: -26px;
  488. }
  489. .header-nav{
  490. z-index: 8000;
  491. }
  492. .header-menu{
  493. display: none;
  494. }
  495. .header-burger{
  496. display: block;
  497. position: fixed;
  498. visibility: hidden;
  499. top: -100%;
  500. left: 0;
  501. width: 100%;
  502. height: auto;
  503. margin: 0;
  504. padding: 10px 0;
  505. list-style: none;
  506. text-align: center;
  507. background-color:#7A89F6;
  508. box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
  509. z-index: -1;
  510. }
  511. .header-burger li{
  512. margin: 15px;
  513. }
  514. .menu__item {
  515. display: block;
  516. padding: 12px 24px;
  517. color: #fff;
  518. font-weight: 600;
  519. text-decoration: none;
  520. }
  521. #menu__toggle:checked ~ .menu__btn > span {
  522. transform: rotate(45deg);
  523. }
  524. #menu__toggle:checked ~ .menu__btn > span::before {
  525. top: 0;
  526. transform: rotate(0);
  527. }
  528. #menu__toggle:checked ~ .menu__btn > span::after {
  529. top: 0;
  530. transform: rotate(90deg);
  531. }
  532. #menu__toggle:checked ~ .header-burger {
  533. visibility: visible;
  534. left: 0;
  535. top: 0;
  536. z-index: 6;
  537. }
  538. .menu__btn > span,
  539. .menu__btn > span::before,
  540. .menu__btn > span::after {
  541. transition-duration: .25s;
  542. }
  543. .menu__btn{
  544. opacity: 1;
  545. }
  546. .header-burger {
  547. transition-duration: 0.25s;
  548. }
  549. .menu__item {
  550. transition-duration: 0.25s;
  551. }
  552. .intro{
  553. flex-direction: column-reverse;
  554. height: 100vh;
  555. padding: 15px;
  556. }
  557. .intro-form{
  558. margin :15px 15px;
  559. }
  560. .intro-text{
  561. text-align: center;
  562. margin-left: -0vw;
  563. }
  564. .info{
  565. display: flex;
  566. flex-direction: column;
  567. }
  568. .info-content{
  569. display: flex;
  570. flex-direction: column;
  571. }
  572. .info-txt{
  573. width: auto;
  574. align-content: center;
  575. }
  576. .info-box img{
  577. min-width: 270px;
  578. height: auto;
  579. }
  580. .info-container{
  581. margin-bottom: 15px;
  582. }
  583. .footer-duwn{
  584. flex-direction: column;
  585. padding: 100px 10px 100px 10px;
  586. }
  587. .about-duwn{
  588. width: 100%;
  589. margin: 0;
  590. margin-right: 10px;
  591. }
  592. .card{
  593. width: 90vw;
  594. }
  595. .contact-duwn{
  596. margin-top: 50px;
  597. }
  598. .c-duwn{
  599. display: flex;
  600. flex-direction: column;
  601. justify-content: center;
  602. }
  603. .card-holder {
  604. flex-direction: column;
  605. height: 100%;
  606. background-position: 25% 25%;
  607. }
  608. .about-txt-h{
  609. text-align: center;
  610. }
  611. .about-txt-p{
  612. text-align: center;
  613. }
  614. .u-duwn{
  615. text-align: center;
  616. }
  617. .info-txt{
  618. text-align: center;
  619. }
  620. .photo{
  621. width: 100%;
  622. }
  623. .g-photo{
  624. width: 50%;
  625. }
  626. }
  627. @media (max-width: 560px){
  628. .intro{
  629. flex-direction: column-reverse;
  630. height: 140vh;
  631. }
  632. .info-box img{
  633. width: 100%;
  634. }
  635. .info-box{
  636. flex-direction: column;
  637. }
  638. .text-galery{
  639. margin-bottom: 50px;
  640. }
  641. .g-photo{
  642. width: 100%;
  643. }
  644. }