style.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938
  1. *,
  2. *::before,
  3. *::after {
  4. box-sizing: border-box;
  5. }
  6. /* FONTS ICON */
  7. @font-face {
  8. font-family: "icomoon";
  9. src: url("fonts/icomoon.eot?rj8fwo");
  10. src: url("fonts/icomoon.eot?rj8fwo#iefix") format("embedded-opentype"),
  11. url("fonts/icomoon.ttf?rj8fwo") format("truetype"),
  12. url("fonts/icomoon.woff?rj8fwo") format("woff"),
  13. url("fonts/icomoon.svg?rj8fwo#icomoon") format("svg");
  14. font-weight: normal;
  15. font-style: normal;
  16. font-display: block;
  17. }
  18. [class^="icon-"],
  19. [class*=" icon-"] {
  20. /* use !important to prevent issues with browser extensions that change fonts */
  21. font-family: "icomoon" !important;
  22. speak: none;
  23. font-style: normal;
  24. font-weight: normal;
  25. font-variant: normal;
  26. text-transform: none;
  27. line-height: 1;
  28. /* Better Font Rendering =========== */
  29. -webkit-font-smoothing: antialiased;
  30. -moz-osx-font-smoothing: grayscale;
  31. }
  32. .icon-phone:before {
  33. content: "\e901";
  34. font-size: 20px;
  35. padding-right: 20px;
  36. }
  37. .icon-facebook:before {
  38. content: "\e902";
  39. }
  40. .icon-twitter:before {
  41. content: "\e900";
  42. }
  43. .icon-planet:before {
  44. content: "\e906";
  45. font-size: 20px;
  46. padding-right: 20px;
  47. }
  48. .icon-instagram:before {
  49. content: "\ea92";
  50. }
  51. .icon-pinterest:before {
  52. content: "\ead2";
  53. }
  54. .icon-mail:before {
  55. content: "\e905";
  56. font-size: 25px;
  57. padding-right: 20px;
  58. }
  59. .icon-map:before {
  60. content: "\e904";
  61. font-size: 20px;
  62. padding-right: 20px;
  63. }
  64. .icon-google:before {
  65. content: "\e903";
  66. }
  67. /* FONTS ICON */
  68. * {
  69. font-family: "Open Sans", sans-serif;
  70. font-size: 14px;
  71. border: none;
  72. color: #ffffff;
  73. }
  74. body {
  75. font-family: "Open Sans", sans-serif;
  76. font-size: 14px;
  77. color: #ffffff;
  78. }
  79. a {
  80. text-decoration: none;
  81. }
  82. /* THE ALL SITE */
  83. .wrapper {
  84. display: flex;
  85. flex-direction: column;
  86. /* max-width: 100%; */
  87. /* width: 1920px; */
  88. width: 100%;
  89. /* max-width: 1920px; */
  90. min-height: 100vh;
  91. }
  92. .content {
  93. max-width: 1200px;
  94. padding: 0 15px;
  95. margin: 0 auto;
  96. }
  97. /* THE ALL SITE */
  98. /* HEADER */
  99. .header {
  100. padding: 15px 0;
  101. display: flex;
  102. justify-content: center;
  103. align-items: center;
  104. }
  105. .content-head {
  106. width: 820px;
  107. display: flex;
  108. justify-content: space-between;
  109. align-items: center;
  110. margin-right: 71px;
  111. }
  112. .nav-right > .menu-box {
  113. display: flex;
  114. justify-content: flex-end;
  115. }
  116. .menu-box > li {
  117. display: inline;
  118. }
  119. .menu-box > li > a {
  120. color: #555555;
  121. padding: 0 13px;
  122. font-weight: bold;
  123. }
  124. .link {
  125. position: relative;
  126. }
  127. .menu-box .active {
  128. color: #5363db;
  129. }
  130. .active:after {
  131. content: "";
  132. display: block;
  133. width: 30px;
  134. height: 1px;
  135. background: #5363db;
  136. position: absolute;
  137. top: 100%;
  138. left: 32%;
  139. margin-top: 1px;
  140. }
  141. .menu-box a:hover {
  142. color: #5363db;
  143. }
  144. .menu-box :hover .link:after {
  145. content: "";
  146. display: block;
  147. width: 30px;
  148. height: 1px;
  149. background: #5363db;
  150. position: absolute;
  151. top: 100%;
  152. left: 32%;
  153. margin-top: 1px;
  154. }
  155. .link-two {
  156. position: relative;
  157. }
  158. .menu-box :hover .link-active::after {
  159. content: "";
  160. display: block;
  161. width: 20px;
  162. height: 1px;
  163. background: #5363db;
  164. position: absolute;
  165. top: 100%;
  166. left: 32%;
  167. margin-top: 1px;
  168. }
  169. /* HEADER */
  170. /* MAIN */
  171. .main {
  172. flex-grow: 1;
  173. }
  174. .first-content {
  175. background: url("../img/slider-bg.png") center center / cover no-repeat;
  176. display: flex;
  177. justify-content: center;
  178. position: relative;
  179. }
  180. .form-text {
  181. display: flex;
  182. justify-content: space-between;
  183. min-width: 930px;
  184. padding-bottom: 35px;
  185. margin: 100px;
  186. margin-left: 340px;
  187. z-index: 1;
  188. }
  189. .form {
  190. position: relative;
  191. background: white;
  192. border-radius: 20px;
  193. box-shadow: 2px 2px 15px #4553c0;
  194. display: flex;
  195. flex-direction: column;
  196. align-content: center;
  197. width: 300px;
  198. }
  199. .form > p {
  200. color: #5363db;
  201. font-weight: bold;
  202. font-size: 25.64px;
  203. margin: 38px 0 29px 30px;
  204. padding-left: 4px;
  205. }
  206. .form > input,
  207. select {
  208. max-width: 230px;
  209. height: 50px;
  210. background: #f2f2f2;
  211. border-radius: 8px;
  212. margin-left: 30px;
  213. color: black;
  214. }
  215. .form > input:nth-child(2) {
  216. padding: 0 10px 8px;
  217. margin-bottom: 15px;
  218. }
  219. .form > input:nth-child(3) {
  220. padding: 0 10px 2px;
  221. margin-bottom: 17px;
  222. }
  223. .form > select {
  224. padding: 0 10px;
  225. margin-bottom: 15px;
  226. }
  227. .form option {
  228. color: black;
  229. }
  230. input:focus,
  231. select:focus {
  232. outline: none;
  233. }
  234. .form-button {
  235. background: #475bf1;
  236. border-radius: 8px;
  237. cursor: pointer;
  238. text-align: center;
  239. word-spacing: 2px;
  240. margin: 17px 0 0 95px;
  241. max-width: 170px;
  242. padding: 13px 0 15px;
  243. font-weight: bold;
  244. font-size: 16px;
  245. margin-bottom: 20px;
  246. transition: all 0.4s;
  247. }
  248. .form-button:hover{
  249. background: white;
  250. color: blue;
  251. box-shadow: 5px 5px 20px blue;
  252. transform: scale(1.1);
  253. font-size: 20px;
  254. }
  255. .text-on-fone {
  256. width: 570px;
  257. height: 265px;
  258. margin-top: 58px;
  259. padding-left: 35px;
  260. display: flex;
  261. flex-direction: column;
  262. }
  263. .text-on-fone > h1 {
  264. font-size: 48px;
  265. text-transform: uppercase;
  266. font-weight: bold;
  267. line-height: 1.46;
  268. letter-spacing: 0.8px;
  269. display: inline;
  270. }
  271. .text-on-fone > p {
  272. display: inline;
  273. font-size: 40px;
  274. letter-spacing: 2px;
  275. line-height: 0.88;
  276. word-spacing: 5px;
  277. font-family: "Freestyle Script";
  278. }
  279. /* TWO CONENT */
  280. .two-content {
  281. display: flex;
  282. align-items: center;
  283. justify-content: center;
  284. }
  285. .block3 {
  286. height: 825px;
  287. margin-bottom: 125px;
  288. margin-top: 50px;
  289. display: flex;
  290. align-items: center;
  291. justify-content: center;
  292. flex-direction: column;
  293. }
  294. .block3-text {
  295. width: 420px;
  296. padding-top: 42px;
  297. display: flex;
  298. flex-direction: column;
  299. align-items: center;
  300. }
  301. .block3-text > h1 {
  302. color: #5b6ceb;
  303. font-weight: bold;
  304. font-size: 30px;
  305. text-transform: uppercase;
  306. padding-top: 3px;
  307. letter-spacing: 0.4px;
  308. }
  309. .block3-text > p {
  310. color: #777777;
  311. font-size: 40.99px;
  312. padding-right: 5px;
  313. padding-top: 17px;
  314. word-spacing: 2px;
  315. letter-spacing: 1.4px;
  316. font-family: "Freestyle Script";
  317. }
  318. .block3-boxs {
  319. min-height: 625px;
  320. margin-top: 68px;
  321. display: flex;
  322. flex-wrap: wrap;
  323. justify-content: space-between;
  324. align-content: space-between;
  325. }
  326. .box-info {
  327. max-width: 570px;
  328. box-shadow: 3px 3px 15px #e4e4e4;
  329. }
  330. .box-info > img {
  331. float: left;
  332. }
  333. .box-text {
  334. margin-left: 300px;
  335. width: 245px;
  336. }
  337. .box-text > h1 {
  338. font-size: 20px;
  339. font-weight: bold;
  340. text-transform: uppercase;
  341. padding-top: 47px;
  342. letter-spacing: 0.3px;
  343. color: #777777;
  344. }
  345. .box-text > blockquote {
  346. color: #6c6c6c;
  347. margin-top: 28px;
  348. line-height: 1.6;
  349. margin-top: 28px;
  350. margin-bottom: 10px;
  351. }
  352. .box-text > cite {
  353. color: #999999;
  354. }
  355. /* THREE CONTENT */
  356. .gallery {
  357. max-height: 700px;
  358. /* width: 100%; */
  359. display: flex;
  360. flex-wrap: wrap;
  361. border: none;
  362. }
  363. .gallery-img {
  364. width: 25%;
  365. }
  366. .gallery-img > img {
  367. width: 100%;
  368. }
  369. .gallery-hover {
  370. background: url(./img/hover_6.png) center center / 70px 70px no-repeat
  371. rgba(117, 132, 243, 0.8);
  372. position: relative;
  373. top: -100%;
  374. left: 0;
  375. width: 100%;
  376. height: 100%;
  377. opacity: 0;
  378. }
  379. /*
  380. .hover>img{
  381. width: 100%;
  382. }
  383. .hover{
  384. width: 25%;
  385. position: relative;
  386. } */
  387. .gallery-img:hover,
  388. .gallery-hover:hover {
  389. opacity: 1;
  390. cursor: pointer;
  391. }
  392. /* .hover::after {
  393. content: "";
  394. background: url(./img/hover_6.png) no-repeat;
  395. position: absolute;
  396. top: 146px;
  397. left: 211px;
  398. right: 0;
  399. bottom: 0;
  400. opacity: 0;
  401. }
  402. .hover::before {
  403. content: "";
  404. background: rgba(117, 132, 243, 0.8);
  405. position: absolute;
  406. width: 100%;
  407. height: 100%;
  408. opacity: 0;
  409. } */
  410. /* FOUR CONTENT */
  411. .four-content {
  412. display: flex;
  413. align-items: center;
  414. justify-content: center;
  415. }
  416. .about-us {
  417. padding: 124px 15px;
  418. display: flex;
  419. justify-content: space-between;
  420. }
  421. .about-us-text > h1 {
  422. font-size: 30px;
  423. font-weight: bold;
  424. color: #5b6ceb;
  425. text-transform: uppercase;
  426. padding-top: 20px;
  427. margin-bottom: 19px;
  428. word-spacing: 1px;
  429. letter-spacing: 0.1px;
  430. }
  431. .about-us-text > p {
  432. line-height: 1.7;
  433. color: #555555;
  434. }
  435. .yoga-gallery {
  436. max-width: 570px;
  437. margin-left: 181.62px;
  438. position: relative;
  439. }
  440. .yoga-gallery img {
  441. border-radius: 8px;
  442. }
  443. .yoga-gallery::after {
  444. content: "";
  445. background: rgb(196, 197, 201, 0.3);
  446. border-radius: 8px;
  447. position: absolute;
  448. top: 0;
  449. left: 0;
  450. right: 0;
  451. bottom: 0;
  452. }
  453. .slick-next {
  454. right: 12px;
  455. top: 45%;
  456. z-index: 1;
  457. }
  458. .slick-prev {
  459. left: -28px;
  460. top: 45%;
  461. z-index: 1;
  462. }
  463. .slick-prev::before,
  464. .slick-next::before {
  465. color: #ff4d4d;
  466. font-size: 60px;
  467. }
  468. /* FIVE CONTENT */
  469. .five-content {
  470. padding: 125px 0;
  471. display: flex;
  472. justify-content: center;
  473. flex-wrap: wrap;
  474. align-items: center;
  475. background: url("../img/feture-fone.png") center center / cover no-repeat;
  476. }
  477. .features {
  478. min-height: 550px;
  479. display: flex;
  480. flex-wrap: wrap;
  481. justify-content: space-between;
  482. align-content: space-between;
  483. }
  484. .features-boxs {
  485. width: 270px;
  486. height: 250px;
  487. display: flex;
  488. flex-direction: column;
  489. align-items: center;
  490. }
  491. .features-boxs > img {
  492. margin-bottom: 27px;
  493. }
  494. .features-boxs > h1 {
  495. font-size: 18px;
  496. font-weight: bold;
  497. text-align: center;
  498. line-height: 1.5;
  499. letter-spacing: 0.3px;
  500. padding-left: 1px;
  501. padding-bottom: 12px;
  502. flex-grow: 1;
  503. }
  504. .features-boxs > p {
  505. line-height: 1.7;
  506. text-align: center;
  507. font-size: 16px;
  508. padding-bottom: 7px;
  509. }
  510. /* SIX CONTENT */
  511. .six-content {
  512. min-height: 1150px;
  513. margin-top: 100px;
  514. background: url(./img/lotos-decoration.png) center center / cover no-repeat;
  515. }
  516. .boxs-prices {
  517. display: flex;
  518. justify-content: space-between;
  519. }
  520. .box-prices {
  521. max-width: 100%;
  522. border-radius: 10px;
  523. display: flex;
  524. flex-direction: column;
  525. align-items: center;
  526. background: white;
  527. box-shadow: 2px 2px 15px #c7c7c7;
  528. }
  529. .box-prices h1 {
  530. border-radius: 10px 10px 0 0;
  531. background: #5b6ceb;
  532. font-weight: bold;
  533. font-size: 67px;
  534. padding: 41.5px 138px;
  535. }
  536. .box-prices h1::before {
  537. content: "$";
  538. font-size: 32px;
  539. position: relative;
  540. bottom: 10px;
  541. right: 20px;
  542. }
  543. .box-prices sub {
  544. font-size: 18px;
  545. font-weight: bold;
  546. position: relative;
  547. bottom: 63px;
  548. left: 90px;
  549. text-transform: uppercase;
  550. }
  551. .box-prices p {
  552. padding-top: 50px;
  553. font-size: 18px;
  554. color: #6a6a6a;
  555. text-transform: uppercase;
  556. }
  557. .box-prices p::after {
  558. content: "";
  559. width: 100px;
  560. height: 1px;
  561. background: #d7d7d7;
  562. display: block;
  563. position: relative;
  564. top: 130%;
  565. left: 25%;
  566. }
  567. .box-prices p + p + p::after {
  568. display: none;
  569. }
  570. .box-prices a {
  571. margin: 50px 0;
  572. border-radius: 20px;
  573. text-align: center;
  574. font-size: 18px;
  575. font-weight: bold;
  576. padding: 16px 48px;
  577. background: #5b6ceb;
  578. transition: transform 0.4s;
  579. }
  580. .box-prices a:hover{
  581. background: white;
  582. color: blue;
  583. box-shadow: 5px 5px 20px blue;
  584. transform: scale(1.1);
  585. font-size: 20px;
  586. }
  587. .boxs-bloquotes {
  588. margin-top: 110px;
  589. /* width: 1170px; */
  590. height: 250px;
  591. background: white;
  592. box-shadow: 2px 2px 15px #c7c7c7;
  593. border-radius: 10px;
  594. position: relative;
  595. }
  596. .bloquotes img {
  597. float: left;
  598. padding: 40px 90px 65px 60px;
  599. }
  600. .bloquotes blockquote {
  601. color: #777777;
  602. font-style: italic;
  603. padding-top: 50px;
  604. padding-bottom: 50px;
  605. max-width: 900px;
  606. position: relative;
  607. }
  608. .bloquotes blockquote::before {
  609. content: "\2033";
  610. height: 40px;
  611. position: absolute;
  612. color: #5b6ceb;
  613. font-size: 55px;
  614. transform: rotate(180deg);
  615. top: 36px;
  616. left: 250px;
  617. }
  618. .bloquotes blockquote::after {
  619. content: "\2033";
  620. height: 40px;
  621. position: absolute;
  622. color: #5b6ceb;
  623. font-size: 55px;
  624. top: 100px;
  625. right: -50px;
  626. }
  627. .bloquotes cite {
  628. color: #777777;
  629. }
  630. .bloquotes cite > p {
  631. font-size: 20px;
  632. color: #5b6ceb;
  633. font-weight: bold;
  634. padding-top: 5px;
  635. }
  636. .bloquotes cite::before {
  637. content: "";
  638. background: #d7d7d7;
  639. width: 2px;
  640. height: 75px;
  641. display: block;
  642. position: absolute;
  643. top: 100px;
  644. left: 255px;
  645. }
  646. .blockquote-slider {
  647. width: 50px;
  648. position: relative;
  649. left: 100%;
  650. bottom: 55%;
  651. /* right: -20%; */
  652. }
  653. .slide {
  654. border: 2px solid grey;
  655. border-radius: 50%;
  656. width: 20px;
  657. height: 20px;
  658. margin-top: 20px;
  659. margin-left: 20px;
  660. }
  661. .slide:nth-child(2) {
  662. /* border-color: blue; */
  663. border-radius: 50%;
  664. /* width: 20px; */
  665. /* height: 20px; */
  666. /* margin-left: 20px; */
  667. display: flex;
  668. /* align-items: center; */
  669. /* justify-content: center; */
  670. }
  671. .slide > .slide-active {
  672. background: blue;
  673. border-radius: 50%;
  674. /* margin: 0 auto; */
  675. width: 10px;
  676. height: 10px;
  677. padding: 5px;
  678. }
  679. /* MAIN */
  680. /* FOOTER */
  681. .footer-decoration {
  682. background: #5b6ceb;
  683. /* height: 225px; */
  684. max-height: 450px;
  685. padding: 100px 0;
  686. display: flex;
  687. align-items: center;
  688. }
  689. .decoration {
  690. min-width: 1100px;
  691. /* padding: 112.5px 0; */
  692. display: flex;
  693. justify-content: space-between;
  694. }
  695. .about {
  696. max-width: 500px;
  697. /* height: 300px; */
  698. }
  699. .about > h1,
  700. .contacts > h1 {
  701. text-transform: uppercase;
  702. font-size: 18px;
  703. font-weight: bold;
  704. }
  705. /* .decoration>a{
  706. font-size: 14px;
  707. } */
  708. .about > p {
  709. padding: 60px 0 70px;
  710. line-height: 1.5;
  711. }
  712. .icon {
  713. /* margin-left: 20px; */
  714. max-width: 170px;
  715. font-size: 23px;
  716. display: flex;
  717. justify-content: space-between;
  718. }
  719. .icon li:hover{
  720. transform: scale(1.3);
  721. border-radius: 50%;
  722. box-shadow: 5px 5px 20px white;
  723. }
  724. .contacts {
  725. max-width: 500px;
  726. }
  727. .icon-left li {
  728. min-height: 160px;
  729. padding: 60px 0 0;
  730. display: flex;
  731. justify-content: space-between;
  732. align-content: space-between;
  733. flex-wrap: wrap;
  734. }
  735. .icon-planet{
  736. padding-right: 30px;
  737. }
  738. .footer-copyright {
  739. background: #5363d8;
  740. }
  741. .copyright {
  742. padding: 42px 0;
  743. display: flex;
  744. align-items: center;
  745. justify-content: center;
  746. }
  747. .copyright > p {
  748. opacity: 0.7;
  749. font-size: 16px;
  750. }
  751. @media (max-width: 1200px) {
  752. .form-text {
  753. max-width: 850px;
  754. height: 360px;
  755. margin: 30px;
  756. padding-left: 150px;
  757. }
  758. .form {
  759. width: 330px;
  760. }
  761. .form > p {
  762. margin: 20px 20px 20px;
  763. }
  764. .form > input,
  765. select {
  766. width: 190px;
  767. height: 45px;
  768. margin-left: 20px;
  769. }
  770. .form-button {
  771. margin: 5px 0 0 95px;
  772. width: 115px;
  773. }
  774. .text-on-fone {
  775. min-width: 480px;
  776. margin-top: 40px;
  777. margin-right: 70px;
  778. }
  779. .text-on-fone > h1 {
  780. font-size: 43px;
  781. }
  782. .text-on-fone > p {
  783. font-size: 37px;
  784. }
  785. /*
  786. .block3{
  787. margin-top: -150px;
  788. } */
  789. .gallery > img {
  790. width: 25%;
  791. height: 25%;
  792. }
  793. /*
  794. .hover >img{
  795. width: 70%;
  796. }
  797. .hover::after {
  798. top: 6px;
  799. left: 11px;
  800. right: 0;
  801. bottom: 0;
  802. }
  803. .hover::before {
  804. width: 25%;
  805. height: 100%;
  806. } */
  807. .about-us {
  808. margin-top: -70px;
  809. display: block;
  810. }
  811. .about-us-text {
  812. text-align: center;
  813. padding-bottom: 50px;
  814. }
  815. .yoga-gallery {
  816. margin-right: 180px;
  817. }
  818. }