style.css 20 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333
  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. body {
  69. font-family: "Open Sans", sans-serif;
  70. font-size: 14px;
  71. }
  72. a {
  73. text-decoration: none;
  74. }
  75. /* THE ALL SITE */
  76. .wrapper {
  77. display: flex;
  78. flex-direction: column;
  79. width: 100%;
  80. min-height: 100vh;
  81. }
  82. .content {
  83. max-width: 1200px;
  84. padding: 0 15px;
  85. margin: 0 auto;
  86. }
  87. /* THE ALL SITE */
  88. /* HEADER */
  89. .header {
  90. padding: 15px 0;
  91. }
  92. .menu-box {
  93. display: flex;
  94. justify-content: center;
  95. align-items: center;
  96. }
  97. .menu-box img {
  98. padding: 0 50px;
  99. }
  100. .menu-box a {
  101. color: #555555;
  102. padding: 0 15px;
  103. font-weight: bold;
  104. }
  105. .link {
  106. position: relative;
  107. }
  108. .menu-box .active {
  109. color: #5363db;
  110. }
  111. .active:after {
  112. content: "";
  113. display: block;
  114. width: 30px;
  115. height: 1px;
  116. background: #5363db;
  117. position: absolute;
  118. top: 100%;
  119. left: 32%;
  120. margin-top: 1px;
  121. }
  122. .menu-box a:hover {
  123. color: #5363db;
  124. }
  125. .menu-box :hover .link:after {
  126. content: "";
  127. display: block;
  128. width: 30px;
  129. height: 1px;
  130. background: #5363db;
  131. position: absolute;
  132. top: 100%;
  133. left: 32%;
  134. margin-top: 1px;
  135. }
  136. .link-two {
  137. position: relative;
  138. }
  139. .menu-box :hover .link-active::after {
  140. content: "";
  141. display: block;
  142. width: 20px;
  143. height: 1px;
  144. background: #5363db;
  145. position: absolute;
  146. top: 100%;
  147. left: 32%;
  148. margin-top: 1px;
  149. }
  150. .logo-mobile {
  151. display: none;
  152. }
  153. #menu__toggle {
  154. display: none;
  155. }
  156. .menu__btn {
  157. display: flex;
  158. align-items: center;
  159. position: fixed;
  160. top: 20px;
  161. left: 20px;
  162. width: 26px;
  163. height: 26px;
  164. cursor: pointer;
  165. z-index: 3;
  166. }
  167. /* HEADER */
  168. /* MAIN */
  169. .main {
  170. flex-grow: 1;
  171. }
  172. .first-content {
  173. background: url("./img/slider-bg.png") center center / cover no-repeat;
  174. display: flex;
  175. justify-content: center;
  176. position: relative;
  177. }
  178. .form-text {
  179. display: flex;
  180. justify-content: space-between;
  181. align-items: center;
  182. padding: 50px 0 100px;
  183. z-index: 1;
  184. color: #ffffff;
  185. }
  186. .form-left {
  187. width: 50%;
  188. display: flex;
  189. flex-direction: row-reverse;
  190. }
  191. .text-right {
  192. width: 50%;
  193. }
  194. .form {
  195. background: white;
  196. border-radius: 20px;
  197. box-shadow: 2px 2px 15px #4553c0;
  198. display: flex;
  199. flex-direction: column;
  200. align-content: center;
  201. width: 270px;
  202. padding: 38px 40px 20px 30px;
  203. }
  204. .form > h2 {
  205. color: #5363db;
  206. font-weight: bold;
  207. font-size: 25.64px;
  208. padding: 0 0 29px 4px;
  209. }
  210. .form > input,
  211. select {
  212. background: #f2f2f2;
  213. border-radius: 8px;
  214. border: none;
  215. color: black;
  216. padding: 15px 10px;
  217. margin-bottom: 15px;
  218. }
  219. .form option {
  220. color: black;
  221. }
  222. input:focus,
  223. select:focus {
  224. outline: none;
  225. border: 1px solid #475bf1;
  226. border-radius: 8px;
  227. }
  228. .form-button {
  229. border: none;
  230. color: #ffffff;
  231. background: #475bf1;
  232. border-radius: 8px;
  233. cursor: pointer;
  234. text-align: center;
  235. word-spacing: 2px;
  236. margin: 10px 0 0 80px;
  237. padding: 13px 0;
  238. font-weight: bold;
  239. font-size: 16px;
  240. transition: all 0.4s;
  241. }
  242. .form-button:hover {
  243. background: white;
  244. color: blue;
  245. box-shadow: 5px 5px 20px blue;
  246. transform: scale(1.1);
  247. }
  248. .text-on-fone {
  249. width: 570px;
  250. min-height: 265px;
  251. margin-top: 58px;
  252. padding-left: 35px;
  253. display: flex;
  254. flex-direction: column;
  255. font-size: 40px;
  256. letter-spacing: 2px;
  257. line-height: 0.88;
  258. word-spacing: 5px;
  259. font-family: "Freestyle Script", sans-serif;
  260. }
  261. .text-on-fone > h1 {
  262. font-size: 48px;
  263. text-transform: uppercase;
  264. font-weight: bold;
  265. line-height: 1.46;
  266. letter-spacing: 0.8px;
  267. word-spacing: normal;
  268. padding-bottom: 30px;
  269. font-family: "Open Sans", sans-serif;
  270. }
  271. /* TWO CONENT */
  272. .two-content {
  273. display: flex;
  274. align-items: center;
  275. justify-content: center;
  276. padding: 20px 0 100px;
  277. }
  278. .block3 {
  279. width: 100%;
  280. display: flex;
  281. align-items: center;
  282. justify-content: center;
  283. flex-direction: column;
  284. }
  285. .block3-text {
  286. width: 420px;
  287. padding-top: 42px;
  288. display: flex;
  289. flex-direction: column;
  290. align-items: center;
  291. color: #777777;
  292. font-size: 40.99px;
  293. word-spacing: 2px;
  294. letter-spacing: 1.4px;
  295. font-family: "Freestyle Script", sans-serif;
  296. }
  297. .block3-text > h1 {
  298. color: #5b6ceb;
  299. font-weight: bold;
  300. font-size: 30px;
  301. text-transform: uppercase;
  302. padding-top: 3px;
  303. letter-spacing: 0.4px;
  304. padding-bottom: 17px;
  305. word-spacing: normal;
  306. font-family: "Open Sans", sans-serif;
  307. }
  308. .block3-boxs {
  309. margin-top: 68px;
  310. display: flex;
  311. flex-wrap: wrap;
  312. justify-content: space-between;
  313. align-content: space-between;
  314. }
  315. .box-info {
  316. max-width: 570px;
  317. box-shadow: 3px 3px 15px #e4e4e4;
  318. margin-bottom: 20px;
  319. display: flex;
  320. }
  321. .box-info > img {
  322. width: 50%;
  323. }
  324. .box-text {
  325. padding: 47px 0 30px 20px;
  326. width: 270px;
  327. color: #6c6c6c;
  328. line-height: 1.6;
  329. }
  330. .box-text > h2 {
  331. font-size: 20px;
  332. font-weight: bold;
  333. text-transform: uppercase;
  334. letter-spacing: 0.3px;
  335. color: #777777;
  336. padding-bottom: 28px;
  337. line-height: normal;
  338. }
  339. .box-text h6 {
  340. color: #999999;
  341. padding-top: 10px;
  342. line-height: normal;
  343. }
  344. /* THREE CONTENT */
  345. .gallery {
  346. max-height: 700px;
  347. display: flex;
  348. flex-wrap: wrap;
  349. border: none;
  350. }
  351. .gallery-img {
  352. width: 25%;
  353. }
  354. .gallery-img > img {
  355. width: 100%;
  356. margin-bottom: -4px;
  357. }
  358. .gallery-hover {
  359. background: url(./img/hover_6.png) center center / 70px 70px no-repeat
  360. rgba(117, 132, 243, 0.8);
  361. position: relative;
  362. top: -100%;
  363. left: 0;
  364. width: 100%;
  365. height: 100%;
  366. opacity: 0;
  367. }
  368. .gallery-img:hover,
  369. .gallery-hover:hover {
  370. opacity: 1;
  371. cursor: pointer;
  372. }
  373. /* FOUR CONTENT */
  374. .four-content {
  375. display: flex;
  376. align-items: center;
  377. justify-content: center;
  378. }
  379. .about-us {
  380. padding: 124px 15px;
  381. display: flex;
  382. justify-content: space-between;
  383. line-height: 1.7;
  384. color: #555555;
  385. }
  386. .about-us-text > h1 {
  387. font-size: 30px;
  388. font-weight: bold;
  389. color: #5b6ceb;
  390. text-transform: uppercase;
  391. padding-top: 20px;
  392. margin-bottom: 19px;
  393. word-spacing: 1px;
  394. letter-spacing: 0.1px;
  395. line-height: normal;
  396. }
  397. .yoga-gallery {
  398. max-width: 570px;
  399. margin-left: 181.62px;
  400. position: relative;
  401. width: 90%;
  402. }
  403. .yoga-gallery img {
  404. border-radius: 8px;
  405. }
  406. .yoga-gallery::after {
  407. content: "";
  408. background: rgb(196, 197, 201, 0.3);
  409. border-radius: 8px;
  410. position: absolute;
  411. top: 0;
  412. left: 0;
  413. right: 0;
  414. bottom: 0;
  415. height: 300px;
  416. }
  417. .slick-next {
  418. right: 12px;
  419. top: 45%;
  420. z-index: 1;
  421. }
  422. .slick-prev {
  423. left: -28px;
  424. top: 45%;
  425. z-index: 1;
  426. }
  427. .slick-prev::before,
  428. .slick-next::before {
  429. color: #6474f0;
  430. font-size: 60px;
  431. }
  432. /* FIVE CONTENT */
  433. .five-content {
  434. padding: 125px 0 85px;
  435. display: flex;
  436. justify-content: center;
  437. flex-wrap: wrap;
  438. align-items: center;
  439. background: url("./img/feture-fone.png") center center / cover no-repeat;
  440. }
  441. .features {
  442. min-height: 550px;
  443. display: flex;
  444. flex-wrap: wrap;
  445. justify-content: center;
  446. }
  447. .features-boxs {
  448. margin-left: 20px;
  449. margin-bottom: 40px;
  450. padding-bottom: 7px;
  451. width: 270px;
  452. height: 250px;
  453. display: flex;
  454. flex-direction: column;
  455. align-items: center;
  456. color: #ffffff;
  457. line-height: 1.7;
  458. text-align: center;
  459. font-size: 16px;
  460. }
  461. .features-boxs > img {
  462. margin-bottom: 27px;
  463. }
  464. .features-boxs > h2 {
  465. font-size: 18px;
  466. font-weight: bold;
  467. line-height: 1.5;
  468. letter-spacing: 0.3px;
  469. padding: 0 0 12px 1px;
  470. flex-grow: 1;
  471. }
  472. /* SIX CONTENT */
  473. .six-content {
  474. padding: 100px 0;
  475. background: url(./img/lotos-decoration.png) center center / cover no-repeat;
  476. }
  477. .boxs-prices {
  478. display: flex;
  479. justify-content: space-between;
  480. }
  481. .box-prices {
  482. border-radius: 10px;
  483. display: flex;
  484. flex-direction: column;
  485. align-items: center;
  486. background: white;
  487. box-shadow: 2px 2px 15px #c7c7c7;
  488. text-transform: uppercase;
  489. color: #6a6a6a;
  490. font-size: 18px;
  491. }
  492. .title-prices sub {
  493. font-size: 18px;
  494. font-weight: bold;
  495. padding-top: 47px;
  496. }
  497. .title-prices {
  498. color: #ffffff;
  499. border-radius: 10px 10px 0 0;
  500. background: #5b6ceb;
  501. font-weight: bold;
  502. font-size: 67px;
  503. padding: 30px 80px 30px 100px;
  504. display: flex;
  505. justify-content: center;
  506. }
  507. .title-prices::before {
  508. content: "$";
  509. font-size: 32px;
  510. position: relative;
  511. top: 20px;
  512. bottom: 10px;
  513. right: 20px;
  514. }
  515. .box-prices p {
  516. padding-top: 50px;
  517. }
  518. .box-prices p::after {
  519. content: "";
  520. width: 100px;
  521. height: 1px;
  522. background: #d7d7d7;
  523. display: block;
  524. position: relative;
  525. top: 130%;
  526. left: 25%;
  527. }
  528. .box-prices p + p + p::after {
  529. display: none;
  530. }
  531. .box-prices a {
  532. margin: 50px 0;
  533. border-radius: 20px;
  534. text-align: center;
  535. font-size: 18px;
  536. font-weight: bold;
  537. padding: 16px 48px;
  538. color: #ffffff;
  539. background: #5b6ceb;
  540. text-transform: none;
  541. transition: transform 0.4s;
  542. }
  543. .box-prices a:hover {
  544. background: white;
  545. color: blue;
  546. box-shadow: 5px 5px 20px blue;
  547. transform: scale(1.1);
  548. }
  549. .boxs-bloquotes {
  550. margin-top: 110px;
  551. height: 250px;
  552. background: white;
  553. box-shadow: 2px 2px 15px #c7c7c7;
  554. border-radius: 10px;
  555. position: relative;
  556. }
  557. .bloquotes img {
  558. float: left;
  559. padding: 40px 90px 65px 60px;
  560. }
  561. .bloquotes blockquote {
  562. color: #777777;
  563. font-style: italic;
  564. padding: 50px 0;
  565. max-width: 900px;
  566. position: relative;
  567. }
  568. .bloquotes blockquote::before {
  569. content: "\2033";
  570. height: 40px;
  571. position: absolute;
  572. color: #5b6ceb;
  573. font-size: 55px;
  574. transform: rotate(180deg);
  575. top: 36px;
  576. left: 250px;
  577. }
  578. .bloquotes blockquote::after {
  579. content: "\2033";
  580. height: 40px;
  581. position: absolute;
  582. color: #5b6ceb;
  583. font-size: 55px;
  584. top: 80px;
  585. right: -20px;
  586. }
  587. .bloquotes cite {
  588. color: #777777;
  589. }
  590. .bloquotes p {
  591. font-size: 20px;
  592. color: #5b6ceb;
  593. font-weight: bold;
  594. padding-top: 5px;
  595. }
  596. .bloquotes cite::before {
  597. content: "";
  598. background: #d7d7d7;
  599. width: 2px;
  600. height: 75px;
  601. display: block;
  602. position: absolute;
  603. top: 100px;
  604. left: 255px;
  605. }
  606. /* MAIN */
  607. /* FOOTER */
  608. .footer-decoration {
  609. color: #ffffff;
  610. background: #5b6ceb;
  611. max-height: 450px;
  612. padding: 100px 0;
  613. display: flex;
  614. align-items: center;
  615. }
  616. .decoration {
  617. display: flex;
  618. }
  619. .about {
  620. width: 50%;
  621. line-height: 1.5;
  622. }
  623. .about > h1,
  624. .contacts > h1 {
  625. text-transform: uppercase;
  626. font-size: 18px;
  627. font-weight: bold;
  628. padding-bottom: 60px;
  629. line-height: normal;
  630. }
  631. .icon {
  632. padding-top: 70px;
  633. max-width: 170px;
  634. font-size: 23px;
  635. display: flex;
  636. justify-content: space-between;
  637. }
  638. .icon a {
  639. color: #ffffff;
  640. }
  641. .icon li:hover {
  642. transform: scale(1.3);
  643. border-radius: 50%;
  644. box-shadow: 5px 5px 20px white;
  645. }
  646. .contacts {
  647. padding-left: 100px;
  648. width: 50%;
  649. }
  650. .icon-contact {
  651. display: flex;
  652. justify-content: space-between;
  653. flex-wrap: wrap;
  654. }
  655. .icon-contact li {
  656. width: 50%;
  657. }
  658. .icon-contact a {
  659. color: #ffffff;
  660. padding-bottom: 30px;
  661. display: flex;
  662. align-items: center;
  663. }
  664. .icon-planet {
  665. padding-right: 30px;
  666. }
  667. .footer-copyright {
  668. background: #5363d8;
  669. }
  670. .copyright {
  671. padding: 42px 0;
  672. display: flex;
  673. align-items: center;
  674. justify-content: center;
  675. color: #ffffff;
  676. opacity: 0.7;
  677. font-size: 16px;
  678. }
  679. @media (max-width: 1240px) {
  680. .first-content {
  681. padding: 30px 0;
  682. }
  683. .form {
  684. width: 250px;
  685. }
  686. .text-on-fone {
  687. max-width: 480px;
  688. font-size: 37px;
  689. }
  690. .text-on-fone > h1 {
  691. font-size: 43px;
  692. }
  693. .two-content {
  694. padding-top: 0;
  695. }
  696. .box-info {
  697. margin: 0 10px 20px;
  698. max-width: 490px;
  699. }
  700. .box-text {
  701. padding-top: 20px;
  702. width: 239px;
  703. }
  704. .box-text > h2 {
  705. padding-top: 15px;
  706. font-size: 18px;
  707. }
  708. .gallery > img {
  709. width: 25%;
  710. height: 25%;
  711. }
  712. .about-us {
  713. width: 100%;
  714. margin: -70px 0 -50px;
  715. flex-direction: column;
  716. align-items: center;
  717. }
  718. .about-us-text {
  719. text-align: center;
  720. padding-bottom: 50px;
  721. }
  722. .yoga-gallery {
  723. margin-left: 0;
  724. }
  725. .features {
  726. margin: -40px 0;
  727. }
  728. .title-prices {
  729. font-size: 67px;
  730. padding: 25px 60px 25px 80px;
  731. }
  732. .box-prices p {
  733. padding-top: 45px;
  734. }
  735. .box-prices a {
  736. margin: 45px 0;
  737. }
  738. .six-content {
  739. height: 950px;
  740. }
  741. .icon-contact {
  742. padding: 0;
  743. }
  744. }
  745. @media (max-width: 1060px) {
  746. .text-on-fone {
  747. max-width: 420px;
  748. }
  749. .text-on-fone > h1 {
  750. font-size: 37px;
  751. }
  752. .text-on-fone > p {
  753. font-size: 35px;
  754. }
  755. .block3-boxs {
  756. max-width: 850px;
  757. }
  758. .block3 {
  759. margin: -30px 0 -10px;
  760. }
  761. .box-info {
  762. flex-direction: column;
  763. }
  764. .box-info > img {
  765. width: 100%;
  766. }
  767. .box-text {
  768. margin-left: 10px;
  769. font-size: 14px;
  770. }
  771. .box-text > h2 {
  772. font-size: 18px;
  773. }
  774. .six-content {
  775. height: 1100px;
  776. }
  777. .title-prices {
  778. font-size: 60px;
  779. padding: 20px 50px 20px 70px;
  780. }
  781. .title-prices sub {
  782. font-size: 16px;
  783. padding-top: 40px;
  784. }
  785. .box-prices p {
  786. padding-top: 45px;
  787. }
  788. .box-prices a {
  789. margin: 35px 0;
  790. }
  791. .boxs-bloquotes {
  792. height: 370px;
  793. position: relative;
  794. }
  795. .bloquotes {
  796. display: flex;
  797. flex-direction: column;
  798. align-items: center;
  799. }
  800. .bloquotes img {
  801. width: 290px;
  802. height: 250px;
  803. margin: -20px 0 -30px;
  804. }
  805. .bloquotes blockquote {
  806. padding: 0 0 30px;
  807. max-width: 500px;
  808. font-size: 16px;
  809. }
  810. .bloquotes blockquote::before {
  811. top: -20px;
  812. left: -30px;
  813. }
  814. .bloquotes blockquote::after {
  815. top: 60px;
  816. right: -20px;
  817. }
  818. .bloquotes cite {
  819. margin-left: -450px;
  820. }
  821. .bloquotes p {
  822. margin-left: -355px;
  823. }
  824. .bloquotes cite::before {
  825. display: none;
  826. }
  827. .icon-contact li {
  828. margin-bottom: -10px;
  829. width: 100%;
  830. }
  831. .icon-contact {
  832. display: flex;
  833. flex-direction: column;
  834. }
  835. }
  836. @media (max-width: 890px) {
  837. .text-on-fone {
  838. max-width: 330px;
  839. }
  840. .six-content {
  841. min-height: 1900px;
  842. }
  843. .boxs-prices {
  844. display: flex;
  845. flex-direction: column;
  846. align-items: center;
  847. }
  848. .box-prices {
  849. max-width: 306px;
  850. margin: -40px 0 60px;
  851. }
  852. .box-prices h1 {
  853. padding: 20px 110px;
  854. }
  855. .box-prices p::after {
  856. content: "";
  857. width: 80px;
  858. height: 1px;
  859. background: #d7d7d7;
  860. display: block;
  861. position: relative;
  862. top: 20px;
  863. left: 30%;
  864. }
  865. .boxs-bloquotes {
  866. margin-top: 20px;
  867. }
  868. }
  869. @media (max-width: 750px) {
  870. .logo-desk {
  871. display: none;
  872. }
  873. .logo-mobile {
  874. display: block;
  875. display: flex;
  876. justify-content: center;
  877. }
  878. .menu__btn > span,
  879. .menu__btn > span::before,
  880. .menu__btn > span::after {
  881. display: block;
  882. position: absolute;
  883. width: 100%;
  884. height: 2px;
  885. background-color: #5b6ceb;
  886. transition: transform 0.2s;
  887. }
  888. .menu__btn > span::before {
  889. content: "";
  890. top: -8px;
  891. }
  892. .menu__btn > span::after {
  893. content: "";
  894. top: 8px;
  895. }
  896. .menu__box:not([not-menu]) {
  897. position: fixed;
  898. visibility: hidden;
  899. top: 0;
  900. left: -100%;
  901. width: 250px;
  902. height: 100%;
  903. padding: 70px 0;
  904. text-align: center;
  905. background-color: #d6d6da;
  906. z-index: 2;
  907. box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
  908. transition: all 0.5s;
  909. display: flex;
  910. flex-direction: column;
  911. }
  912. .menu__item {
  913. line-height: 3;
  914. color: #333;
  915. font-size: 25px;
  916. font-weight: 600;
  917. text-decoration: none;
  918. }
  919. #menu__toggle:checked ~ .menu__btn > span {
  920. transform: rotate(45deg);
  921. transition: transform 0.5s;
  922. }
  923. #menu__toggle:checked ~ .menu__btn > span::before {
  924. top: 0;
  925. transform: rotate(0);
  926. transition: transform 0.5s;
  927. }
  928. #menu__toggle:checked ~ .menu__btn > span::after {
  929. top: 0;
  930. transform: rotate(90deg);
  931. transition: transform 0.5s;
  932. }
  933. #menu__toggle:checked ~ .menu__box {
  934. visibility: visible;
  935. left: 0;
  936. }
  937. .active:after {
  938. width: 50px;
  939. left: 33%;
  940. }
  941. .menu-box :hover .link:after {
  942. width: 50px;
  943. left: 33%;
  944. }
  945. .menu-box :hover .link-active::after {
  946. width: 30px;
  947. left: 32%;
  948. }
  949. .first-content {
  950. padding: 0;
  951. }
  952. .form-text {
  953. padding: 50px 0 80px;
  954. display: flex;
  955. justify-content: center;
  956. align-items: center;
  957. flex-direction: column-reverse;
  958. }
  959. .form-left {
  960. width: 100%;
  961. display: flex;
  962. flex-direction: row;
  963. }
  964. .text-right {
  965. width: 100%;
  966. }
  967. .form {
  968. width: 230px;
  969. padding: 20px 30px 10px 20px;
  970. }
  971. .form > h2 {
  972. font-size: 24px;
  973. padding: 0 0 20px 4px;
  974. }
  975. .form > input,
  976. select {
  977. padding: 12px 10px;
  978. margin-bottom: 10px;
  979. }
  980. .form-button {
  981. margin: 10px 0 10px 95px;
  982. padding: 10px 0;
  983. }
  984. .text-on-fone {
  985. font-size: 38px;
  986. padding: 0 0 30px;
  987. margin-top: -20px;
  988. }
  989. .text-on-fone > h1 {
  990. font-size: 40px;
  991. }
  992. .block3-boxs {
  993. max-width: 570px;
  994. display: flex;
  995. align-items: center;
  996. justify-content: center;
  997. }
  998. .box-info > img {
  999. width: 120%;
  1000. border-radius: 10px 10px 0 0;
  1001. }
  1002. .box-text {
  1003. margin-left: 10px;
  1004. font-size: 14px;
  1005. }
  1006. .box-info {
  1007. padding: 0 54px 0 0;
  1008. border-radius: 10px 10px 0 0;
  1009. }
  1010. .box-text > h2 {
  1011. font-size: 20px;
  1012. }
  1013. .box-text > h6 {
  1014. font-size: 14px;
  1015. padding-bottom: 10px;
  1016. }
  1017. .gallery {
  1018. max-height: 1100px;
  1019. display: flex;
  1020. flex-wrap: wrap;
  1021. }
  1022. .gallery-img {
  1023. width: 50%;
  1024. }
  1025. .gallery-img > img {
  1026. width: 100%;
  1027. }
  1028. .yoga-gallery::after {
  1029. height: 100%;
  1030. }
  1031. .boxs-bloquotes {
  1032. height: 370px;
  1033. position: relative;
  1034. }
  1035. .bloquotes img {
  1036. width: 280px;
  1037. height: 240px;
  1038. }
  1039. .bloquotes blockquote {
  1040. max-width: 300px;
  1041. }
  1042. .bloquotes blockquote::after {
  1043. top: 90px;
  1044. }
  1045. .bloquotes cite {
  1046. margin-left: -250px;
  1047. }
  1048. .bloquotes p {
  1049. margin-left: -155px;
  1050. }
  1051. }
  1052. @media (max-width: 590px) {
  1053. .footer-decoration {
  1054. padding: 0;
  1055. min-height: 550px;
  1056. }
  1057. .decoration {
  1058. display: flex;
  1059. flex-direction: column;
  1060. }
  1061. .about,
  1062. .contacts {
  1063. width: 100%;
  1064. }
  1065. .about h1 {
  1066. padding-bottom: 0;
  1067. }
  1068. .about > p {
  1069. padding: 20px 0 30px;
  1070. }
  1071. .icon {
  1072. padding-top: 0;
  1073. }
  1074. .contacts {
  1075. margin: 50px 0 0;
  1076. padding-left: 0;
  1077. }
  1078. .contacts h1 {
  1079. padding-bottom: 20px;
  1080. }
  1081. .icon-contact li {
  1082. margin-bottom: -10px;
  1083. width: 100%;
  1084. }
  1085. .icon-contact {
  1086. display: flex;
  1087. flex-direction: column;
  1088. }
  1089. }
  1090. @media (max-width: 470px) {
  1091. .text-on-fone {
  1092. max-width: 250px;
  1093. font-size: 32px;
  1094. margin-top: -30px;
  1095. }
  1096. .text-on-fone > h1 {
  1097. font-size: 34px;
  1098. }
  1099. .block3-text {
  1100. max-width: 240px;
  1101. padding-top: 30px;
  1102. }
  1103. .box-info {
  1104. min-height: 500px;
  1105. padding: 0 0;
  1106. }
  1107. .box-info > img {
  1108. width: 100%;
  1109. }
  1110. .five-content {
  1111. max-height: 2420px;
  1112. }
  1113. .features-boxs {
  1114. margin-left: 0;
  1115. }
  1116. .slick-next {
  1117. right: -1px;
  1118. }
  1119. .slick-prev {
  1120. left: -16px;
  1121. }
  1122. .slick-prev::before,
  1123. .slick-next::before {
  1124. font-size: 35px;
  1125. }
  1126. .six-content {
  1127. min-height: 1900px;
  1128. }
  1129. .boxs-prices {
  1130. display: flex;
  1131. flex-direction: column;
  1132. align-items: center;
  1133. }
  1134. .box-prices {
  1135. max-width: 270px;
  1136. margin: -40px 0 60px;
  1137. }
  1138. .box-prices h1 {
  1139. padding: 20px 90px;
  1140. }
  1141. .title-prices sub {
  1142. font-size: 14px;
  1143. }
  1144. .boxs-bloquotes {
  1145. margin: 10px 0 0;
  1146. height: 390px;
  1147. position: relative;
  1148. }
  1149. .bloquotes img {
  1150. width: 260px;
  1151. height: 220px;
  1152. }
  1153. .bloquotes blockquote {
  1154. max-width: 220px;
  1155. }
  1156. .bloquotes blockquote::before {
  1157. top: -20px;
  1158. left: -20px;
  1159. }
  1160. .bloquotes blockquote::after {
  1161. top: 120px;
  1162. }
  1163. .bloquotes cite {
  1164. margin-left: -180px;
  1165. }
  1166. .bloquotes p {
  1167. margin-left: -85px;
  1168. }
  1169. .footer-decoration {
  1170. min-height: 550px;
  1171. }
  1172. .copyright {
  1173. padding: 30px 0;
  1174. }
  1175. .copyright > p {
  1176. font-size: 14px;
  1177. }
  1178. }