style.css 23 KB

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