style.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793
  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. body {
  70. font-family: "Open Sans", sans-serif;
  71. font-size: 14px;
  72. border: none;
  73. color: #ffffff;
  74. }
  75. a {
  76. text-decoration: none;
  77. }
  78. /* THE ALL SITE */
  79. .wrapper {
  80. display: flex;
  81. flex-direction: column;
  82. width: 100%;
  83. min-height: 100vh;
  84. }
  85. .content {
  86. max-width: 1200px;
  87. padding: 0 15px;
  88. margin: 0 auto;
  89. }
  90. /* THE ALL SITE */
  91. /* HEADER */
  92. .header {
  93. padding: 15px 0;
  94. display: flex;
  95. justify-content: center;
  96. align-items: center;
  97. }
  98. .content-head {
  99. width: 820px;
  100. margin-right: 71px;
  101. display: flex;
  102. justify-content: space-between;
  103. align-items: center;
  104. }
  105. .menu-box > li {
  106. display: inline;
  107. }
  108. .menu-box > li > a {
  109. color: #555555;
  110. padding: 0 13px;
  111. font-weight: bold;
  112. }
  113. .link {
  114. position: relative;
  115. }
  116. .menu-box .active {
  117. color: #5363db;
  118. }
  119. .active:after {
  120. content: "";
  121. display: block;
  122. width: 30px;
  123. height: 1px;
  124. background: #5363db;
  125. position: absolute;
  126. top: 100%;
  127. left: 32%;
  128. margin-top: 1px;
  129. }
  130. .menu-box a:hover {
  131. color: #5363db;
  132. }
  133. .menu-box :hover .link:after {
  134. content: "";
  135. display: block;
  136. width: 30px;
  137. height: 1px;
  138. background: #5363db;
  139. position: absolute;
  140. top: 100%;
  141. left: 32%;
  142. margin-top: 1px;
  143. }
  144. .link-two {
  145. position: relative;
  146. }
  147. .menu-box :hover .link-active::after {
  148. content: "";
  149. display: block;
  150. width: 20px;
  151. height: 1px;
  152. background: #5363db;
  153. position: absolute;
  154. top: 100%;
  155. left: 32%;
  156. margin-top: 1px;
  157. }
  158. #menu__toggle,
  159. #menu__toggle2 {
  160. display: none;
  161. }
  162. .menu__btn {
  163. display: flex;
  164. align-items: center;
  165. position: fixed;
  166. top: 20px;
  167. left: 20px;
  168. width: 26px;
  169. height: 26px;
  170. cursor: pointer;
  171. z-index: 3;
  172. }
  173. .menu__btn2 {
  174. display: flex;
  175. align-items: center;
  176. position: fixed;
  177. top: 20px;
  178. right: 20px;
  179. width: 26px;
  180. height: 26px;
  181. cursor: pointer;
  182. z-index: 3;
  183. }
  184. /* HEADER */
  185. /* MAIN */
  186. .main {
  187. flex-grow: 1;
  188. }
  189. .first-content {
  190. background: url("./img/slider-bg.png") center center / cover no-repeat;
  191. display: flex;
  192. justify-content: center;
  193. position: relative;
  194. }
  195. .form-text {
  196. display: flex;
  197. justify-content: space-between;
  198. min-width: 930px;
  199. padding-bottom: 35px;
  200. margin: 100px 100px 100px 340px;
  201. z-index: 1;
  202. }
  203. .form {
  204. position: relative;
  205. background: white;
  206. border-radius: 20px;
  207. box-shadow: 2px 2px 15px #4553c0;
  208. display: flex;
  209. flex-direction: column;
  210. align-content: center;
  211. width: 300px;
  212. }
  213. .form > p {
  214. color: #5363db;
  215. font-weight: bold;
  216. font-size: 25.64px;
  217. margin: 38px 0 29px 30px;
  218. padding-left: 4px;
  219. }
  220. .form > input,
  221. select {
  222. max-width: 230px;
  223. height: 50px;
  224. background: #f2f2f2;
  225. border-radius: 8px;
  226. margin-left: 30px;
  227. color: black;
  228. }
  229. .form > input:nth-child(2) {
  230. padding: 0 10px 8px;
  231. margin-bottom: 15px;
  232. }
  233. .form > input:nth-child(3) {
  234. padding: 0 10px 2px;
  235. margin-bottom: 17px;
  236. }
  237. .form > select {
  238. padding: 0 10px;
  239. margin-bottom: 15px;
  240. }
  241. .form option {
  242. color: black;
  243. }
  244. input:focus,
  245. select:focus {
  246. outline: none;
  247. border: 1px solid #475bf1;
  248. border-radius: 8px;
  249. }
  250. .form-button {
  251. background: #475bf1;
  252. border-radius: 8px;
  253. cursor: pointer;
  254. text-align: center;
  255. word-spacing: 2px;
  256. margin: 17px 0 20px 95px;
  257. max-width: 170px;
  258. padding: 13px 0 15px;
  259. font-weight: bold;
  260. font-size: 16px;
  261. transition: all 0.4s;
  262. }
  263. .form-button:hover {
  264. background: white;
  265. color: blue;
  266. box-shadow: 5px 5px 20px blue;
  267. transform: scale(1.1);
  268. font-size: 20px;
  269. }
  270. .text-on-fone {
  271. width: 570px;
  272. height: 265px;
  273. margin-top: 58px;
  274. padding-left: 35px;
  275. display: flex;
  276. flex-direction: column;
  277. }
  278. .text-on-fone > h1 {
  279. font-size: 48px;
  280. text-transform: uppercase;
  281. font-weight: bold;
  282. line-height: 1.46;
  283. letter-spacing: 0.8px;
  284. display: inline;
  285. }
  286. .text-on-fone > p {
  287. display: inline;
  288. font-size: 40px;
  289. letter-spacing: 2px;
  290. line-height: 0.88;
  291. word-spacing: 5px;
  292. font-family: "Freestyle Script";
  293. }
  294. /* TWO CONENT */
  295. .two-content {
  296. display: flex;
  297. align-items: center;
  298. justify-content: center;
  299. }
  300. .block3 {
  301. width: 100%;
  302. height: 825px;
  303. margin: 50px 0 125px;
  304. display: flex;
  305. align-items: center;
  306. justify-content: center;
  307. flex-direction: column;
  308. }
  309. .block3-text {
  310. width: 420px;
  311. padding-top: 42px;
  312. display: flex;
  313. flex-direction: column;
  314. align-items: center;
  315. }
  316. .block3-text > h1 {
  317. color: #5b6ceb;
  318. font-weight: bold;
  319. font-size: 30px;
  320. text-transform: uppercase;
  321. padding-top: 3px;
  322. letter-spacing: 0.4px;
  323. }
  324. .block3-text > p {
  325. color: #777777;
  326. font-size: 40.99px;
  327. padding: 17px 5px 0 0;
  328. word-spacing: 2px;
  329. letter-spacing: 1.4px;
  330. font-family: "Freestyle Script";
  331. }
  332. .block3-boxs {
  333. margin-top: 68px;
  334. display: flex;
  335. flex-wrap: wrap;
  336. justify-content: space-between;
  337. align-content: space-between;
  338. }
  339. .box-info {
  340. max-width: 570px;
  341. box-shadow: 3px 3px 15px #e4e4e4;
  342. margin-bottom: 20px;
  343. }
  344. .box-info > img {
  345. float: left;
  346. width: 50%;
  347. }
  348. .box-text {
  349. margin-left: 300px;
  350. width: 245px;
  351. }
  352. .box-text > h1 {
  353. font-size: 20px;
  354. font-weight: bold;
  355. text-transform: uppercase;
  356. padding-top: 47px;
  357. letter-spacing: 0.3px;
  358. color: #777777;
  359. }
  360. .box-text > blockquote {
  361. color: #6c6c6c;
  362. margin: 28px 0 10px;
  363. line-height: 1.6;
  364. }
  365. .box-text > cite {
  366. color: #999999;
  367. }
  368. /* THREE CONTENT */
  369. .gallery {
  370. max-height: 700px;
  371. display: flex;
  372. flex-wrap: wrap;
  373. border: none;
  374. }
  375. .gallery-img {
  376. width: 25%;
  377. }
  378. .gallery-img > img {
  379. width: 100%;
  380. }
  381. .gallery-hover {
  382. background: url(./img/hover_6.png) center center / 70px 70px no-repeat
  383. rgba(117, 132, 243, 0.8);
  384. position: relative;
  385. top: -100%;
  386. left: 0;
  387. width: 100%;
  388. height: 100%;
  389. opacity: 0;
  390. }
  391. .gallery-img:hover,
  392. .gallery-hover:hover {
  393. opacity: 1;
  394. cursor: pointer;
  395. }
  396. /* FOUR CONTENT */
  397. .four-content {
  398. display: flex;
  399. align-items: center;
  400. justify-content: center;
  401. }
  402. .about-us {
  403. padding: 124px 15px;
  404. display: flex;
  405. justify-content: space-between;
  406. }
  407. .about-us-text > h1 {
  408. font-size: 30px;
  409. font-weight: bold;
  410. color: #5b6ceb;
  411. text-transform: uppercase;
  412. padding-top: 20px;
  413. margin-bottom: 19px;
  414. word-spacing: 1px;
  415. letter-spacing: 0.1px;
  416. }
  417. .about-us-text > p {
  418. line-height: 1.7;
  419. color: #555555;
  420. }
  421. .yoga-gallery {
  422. max-width: 570px;
  423. margin-left: 181.62px;
  424. position: relative;
  425. width: 90%;
  426. }
  427. .yoga-gallery img {
  428. border-radius: 8px;
  429. }
  430. .yoga-gallery::after {
  431. content: "";
  432. background: rgb(196, 197, 201, 0.3);
  433. border-radius: 8px;
  434. position: absolute;
  435. top: 0;
  436. left: 0;
  437. right: 0;
  438. bottom: 0;
  439. }
  440. .slick-next {
  441. right: 12px;
  442. top: 45%;
  443. z-index: 1;
  444. }
  445. .slick-prev {
  446. left: -28px;
  447. top: 45%;
  448. z-index: 1;
  449. }
  450. .slick-prev::before,
  451. .slick-next::before {
  452. color: #ff4d4d;
  453. font-size: 60px;
  454. }
  455. /* FIVE CONTENT */
  456. .five-content {
  457. padding: 125px 0;
  458. display: flex;
  459. justify-content: center;
  460. flex-wrap: wrap;
  461. align-items: center;
  462. background: url("./img/feture-fone.png") center center / cover no-repeat;
  463. }
  464. .features {
  465. min-height: 550px;
  466. display: flex;
  467. flex-wrap: wrap;
  468. justify-content: space-between;
  469. align-content: space-between;
  470. }
  471. .features-boxs {
  472. width: 270px;
  473. height: 250px;
  474. display: flex;
  475. flex-direction: column;
  476. align-items: center;
  477. }
  478. .features-boxs > img {
  479. margin-bottom: 27px;
  480. }
  481. .features-boxs > h1 {
  482. font-size: 18px;
  483. font-weight: bold;
  484. text-align: center;
  485. line-height: 1.5;
  486. letter-spacing: 0.3px;
  487. padding: 0 0 12px 1px;
  488. flex-grow: 1;
  489. }
  490. .features-boxs > p {
  491. line-height: 1.7;
  492. text-align: center;
  493. font-size: 16px;
  494. padding-bottom: 7px;
  495. }
  496. /* SIX CONTENT */
  497. .six-content {
  498. height: 1050px;
  499. margin-top: 100px;
  500. background: url(./img/lotos-decoration.png) center center / cover no-repeat;
  501. }
  502. .boxs-prices {
  503. display: flex;
  504. justify-content: space-between;
  505. }
  506. .box-prices {
  507. border-radius: 10px;
  508. display: flex;
  509. flex-direction: column;
  510. align-items: center;
  511. background: white;
  512. box-shadow: 2px 2px 15px #c7c7c7;
  513. }
  514. .box-prices h1 {
  515. border-radius: 10px 10px 0 0;
  516. background: #5b6ceb;
  517. font-weight: bold;
  518. font-size: 67px;
  519. padding: 41.5px 138px;
  520. }
  521. .box-prices h1::before {
  522. content: "$";
  523. font-size: 32px;
  524. position: relative;
  525. bottom: 10px;
  526. right: 20px;
  527. }
  528. .box-prices sub {
  529. font-size: 18px;
  530. font-weight: bold;
  531. position: relative;
  532. bottom: 63px;
  533. left: 90px;
  534. text-transform: uppercase;
  535. }
  536. .box-prices p {
  537. padding-top: 50px;
  538. font-size: 18px;
  539. color: #6a6a6a;
  540. text-transform: uppercase;
  541. }
  542. .box-prices p::after {
  543. content: "";
  544. width: 100px;
  545. height: 1px;
  546. background: #d7d7d7;
  547. display: block;
  548. position: relative;
  549. top: 130%;
  550. left: 25%;
  551. }
  552. .box-prices p + p + p::after {
  553. display: none;
  554. }
  555. .box-prices a {
  556. margin: 50px 0;
  557. border-radius: 20px;
  558. text-align: center;
  559. font-size: 18px;
  560. font-weight: bold;
  561. padding: 16px 48px;
  562. background: #5b6ceb;
  563. transition: transform 0.4s;
  564. }
  565. .box-prices a:hover {
  566. background: white;
  567. color: blue;
  568. box-shadow: 5px 5px 20px blue;
  569. transform: scale(1.1);
  570. font-size: 20px;
  571. }
  572. .boxs-bloquotes {
  573. margin-top: 110px;
  574. height: 250px;
  575. background: white;
  576. box-shadow: 2px 2px 15px #c7c7c7;
  577. border-radius: 10px;
  578. position: relative;
  579. }
  580. .bloquotes img {
  581. float: left;
  582. padding: 40px 90px 65px 60px;
  583. }
  584. .bloquotes blockquote {
  585. color: #777777;
  586. font-style: italic;
  587. padding: 50px 0;
  588. max-width: 900px;
  589. position: relative;
  590. }
  591. .bloquotes blockquote::before {
  592. content: "\2033";
  593. height: 40px;
  594. position: absolute;
  595. color: #5b6ceb;
  596. font-size: 55px;
  597. transform: rotate(180deg);
  598. top: 36px;
  599. left: 250px;
  600. }
  601. .bloquotes blockquote::after {
  602. content: "\2033";
  603. height: 40px;
  604. position: absolute;
  605. color: #5b6ceb;
  606. font-size: 55px;
  607. top: 80px;
  608. right: -20px;
  609. }
  610. .bloquotes cite {
  611. color: #777777;
  612. }
  613. .bloquotes cite > p {
  614. font-size: 20px;
  615. color: #5b6ceb;
  616. font-weight: bold;
  617. padding-top: 5px;
  618. }
  619. .bloquotes cite::before {
  620. content: "";
  621. background: #d7d7d7;
  622. width: 2px;
  623. height: 75px;
  624. display: block;
  625. position: absolute;
  626. top: 100px;
  627. left: 255px;
  628. }
  629. /* MAIN */
  630. /* FOOTER */
  631. .footer-decoration {
  632. background: #5b6ceb;
  633. max-height: 450px;
  634. padding: 100px 0;
  635. display: flex;
  636. align-items: center;
  637. }
  638. .decoration {
  639. display: flex;
  640. justify-content: space-between;
  641. }
  642. .about {
  643. max-width: 500px;
  644. }
  645. .about > h1,
  646. .contacts > h1 {
  647. text-transform: uppercase;
  648. font-size: 18px;
  649. font-weight: bold;
  650. }
  651. .about > p {
  652. padding: 60px 0 70px;
  653. line-height: 1.5;
  654. }
  655. .icon {
  656. max-width: 170px;
  657. font-size: 23px;
  658. display: flex;
  659. justify-content: space-between;
  660. }
  661. .icon li:hover {
  662. transform: scale(1.3);
  663. border-radius: 50%;
  664. box-shadow: 5px 5px 20px white;
  665. }
  666. .contacts {
  667. max-width: 500px;
  668. margin-left: 100px;
  669. }
  670. .icon-left li {
  671. min-height: 160px;
  672. padding: 60px 0 0;
  673. display: flex;
  674. justify-content: space-between;
  675. align-content: space-between;
  676. flex-wrap: wrap;
  677. }
  678. .icon-planet {
  679. padding-right: 30px;
  680. }
  681. .footer-copyright {
  682. background: #5363d8;
  683. }
  684. .copyright {
  685. padding: 42px 0;
  686. display: flex;
  687. align-items: center;
  688. justify-content: center;
  689. }
  690. .copyright > p {
  691. opacity: 0.7;
  692. font-size: 16px;
  693. }